[
  {
    "path": ".config/dotnet-tools.json",
    "content": "{\n  \"version\": 1,\n  \"isRoot\": true,\n  \"tools\": {\n    \"cake.tool\": {\n      \"version\": \"3.0.0\",\n      \"commands\": [\n        \"dotnet-cake\"\n      ]\n    }\n  }\n}"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/add-new-control.yml",
    "content": "name: Add New Control\ndescription: Suggest a new control for MAUIsland\nlabels: [\"proposal/open\", \"t/enhancement\"]\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        Thank you for your interest in .NET MAUI! We welcome any and all ideas for features or improvements that you might have. All we ask is to fill in this template with some detail. A detailed description, perhaps supported with some screenshots, mockups, and a (public) API design in pseudo-code, would be very much appreciated and will help get your proposal reviewed sooner.\n        \n        Keep in mind that .NET MAUI is a multi-platform framework. Consider how feasible it is to implement this feature across all the supported platforms.\n        \n        If you're not completely sure about a request yet, feel free to [open a discussion](https://github.com/dotnet/maui/discussions/new?category=ideas) first to discuss with the team and the community first.\n  - type: textarea\n    id: description\n    attributes:\n      label: Description\n      description: Please give us a detailed description of the feature that you envision. Focus on _what_ this feature does, over the _why_ you want this feature. What would be the end-result when implemented? Feel free to add any diagrams, (mocked up) screenshots, or other materials that support your story.\n      placeholder: I would love to have a button that I can make shiny. This is something that is supported on all the underlaying platforms, so this would just be exposing that on the .NET MAUI layer.\n    validations:\n      required: true\n  - type: textarea\n    id: usage\n    attributes:\n      label: Usage\n      description: Include a list of all API changes, additions, subtractions as would be required by your proposal. These APIs should be considered placeholders, so the naming is not as important as getting the concepts correct. If possible you should include some example (pseudo-)code of usage of your new API. This will not only help us understand better, but also help you think about how you want to use this feature as a developer.\n      placeholder: |\n        ```csharp\n        var button = new Button ();\n        button.MakeShiny = true; // new API\n        ```\n        \n        The MakeShiny API works even if the button is already visible.\n    validations:\n      required: true\n - type: dropdown\n    id: platforms\n    attributes:\n      label: What platforms will this control be available?\n      multiple: true\n      options:\n        - Android \n        - Windows\n        - MacOS\n        - IOS\n        - Tizen\n  - type: textarea\n    id: use-case\n    attributes:\n      label: Properties list\n      description: Provide a detailed example of where your proposal would be used and for what purpose. Focus on _why_ you want this feature instead of _what_ the feature does.\n      placeholder: In my app I have a situation where I would really want a shiny button to make it stand out from the rest of the plain and boring buttons.\n    validations:\n      required: true\n  - type: markdown\n    attributes:\n      value: |\n        By opening the issue you agree to follow this project's [Code of Conduct](https://github.com/dotnet/maui/blob/main/.github/CODE_OF_CONDUCT.md)\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug-report.yml",
    "content": "name: Bug Report\ndescription: File a bug report\ntitle: \"[Bug]: \"\nlabels: [\"bug\", \"triage\"]\nassignees:\n  - octocat\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        Thanks for taking the time to fill out this bug report!\n  - type: input\n    id: contact\n    attributes:\n      label: Contact Details\n      description: How can we get in touch with you if we need more info ?\n      placeholder: ex. email@example.com\n    validations:\n      required: false\n  - type: textarea\n    id: what-happened\n    attributes:\n      label: What happened?\n      description: Also tell us, what did you expect to happen?\n      placeholder: Tell us what you see!\n      value: \"A bug happened!\"\n    validations:\n      required: true\n  - type: dropdown\n    id: version\n    attributes:\n      label: Version\n      description: What version of MAUI are you running?\n      options:\n        - 6.0 (Default)\n        - 7.0\n        - 8.0\n        - 9.0\n    validations:\n      required: true\n  - type: dropdown\n    id: platforms\n    attributes:\n      label: What platforms are you seeing the problem on?\n      multiple: true\n      options:\n        - Android \n        - Windows\n        - MacOS\n        - IOS\n  - type: textarea\n    id: logs\n    attributes:\n      label: Relevant log output\n      description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.\n      render: shell\n  - type: checkboxes\n    id: terms\n    attributes:\n      label: Code of Conduct\n      description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)\n      options:\n        - label: I agree to respect and follow this project's rules \n          required: true\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature.yml",
    "content": "name: Feature Request\ndescription: Suggest an idea for .NET MAUI\nlabels: [\"proposal/open\", \"t/enhancement\"]\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        Thank you for your interest in .NET MAUI! We welcome any and all ideas for features or improvements that you might have. All we ask is to fill in this template with some detail. A detailed description, perhaps supported with some screenshots, mockups, and a (public) API design in pseudo-code, would be very much appreciated and will help get your proposal reviewed sooner.\n        \n        Keep in mind that .NET MAUI is a multi-platform framework. Consider how feasible it is to implement this feature across all the supported platforms.\n        \n        If you're not completely sure about a request yet, feel free to [open a discussion](https://github.com/dotnet/maui/discussions/new?category=ideas) first to discuss with the team and the community first.\n  - type: textarea\n    id: description\n    attributes:\n      label: Description\n      description: Please give us a detailed description of the feature that you envision. Focus on _what_ this feature does, over the _why_ you want this feature. What would be the end-result when implemented? Feel free to add any diagrams, (mocked up) screenshots, or other materials that support your story.\n      placeholder: I would love to have a button that I can make shiny. This is something that is supported on all the underlaying platforms, so this would just be exposing that on the .NET MAUI layer.\n    validations:\n      required: true\n  - type: textarea\n    id: api-changes\n    attributes:\n      label: Public API Changes \n      description: Include a list of all API changes, additions, subtractions as would be required by your proposal. These APIs should be considered placeholders, so the naming is not as important as getting the concepts correct. If possible you should include some example (pseudo-)code of usage of your new API. This will not only help us understand better, but also help you think about how you want to use this feature as a developer.\n      placeholder: |\n        ```csharp\n        var button = new Button ();\n        button.MakeShiny = true; // new API\n        ```\n        \n        The MakeShiny API works even if the button is already visible.\n    validations:\n      required: true\n  - type: textarea\n    id: use-case\n    attributes:\n      label: Intended Use-Case\n      description: Provide a detailed example of where your proposal would be used and for what purpose. Focus on _why_ you want this feature instead of _what_ the feature does.\n      placeholder: In my app I have a situation where I would really want a shiny button to make it stand out from the rest of the plain and boring buttons.\n    validations:\n      required: true\n  - type: markdown\n    attributes:\n      value: |\n        By opening the issue you agree to follow this project's [Code of Conduct](https://github.com/dotnet/maui/blob/main/.github/CODE_OF_CONDUCT.md)\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/showcase-submission.yml",
    "content": "name: Showcase Submission\ndescription: Submit your project to be showcased on MAUIsland.\ntitle: \"Showcase Submission: MAUIsland\"\nlabels:\n  - showcase\n  - submission\n\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        Thank you for submitting your project to be showcased! Please provide the following details so we can include your project on MAUIsland.\n\n  - type: input\n    id: repository_url\n    attributes:\n      label: \"Repository URL\"\n      description: \"Provide the URL of the GitHub repository for your project.\"\n      placeholder: \"https://github.com/username/repository-name\"\n    validations:\n      required: true\n\n  - type: checkboxes\n    id: project_technology\n    attributes:\n      label: \"What technology is this project using?\"\n      description: \"Select all technologies applicable to your project.\"\n      options:\n        - label: \".NET MAUI\"\n        - label: \"Uno Platform\"\n        - label: \"WinUI 3\"\n        - label: \"UWP\"\n        - label: \"WPF\"\n    validations:\n      required: true\n\n  - type: checkboxes\n    id: platform_support\n    attributes:\n      label: \"How many platforms does this project support?\"\n      description: \"Select all platforms your project supports.\"\n      options:\n        - label: Android\n        - label: iOS\n        - label: Windows\n        - label: MacOS\n        - label: Tizen\n    validations:\n      required: true\n\n  - type: textarea\n    id: screenshots\n    attributes:\n      label: \"Screenshots of the application\"\n      description: \"Provide links to screenshots of your application. You can upload them to your repository or a cloud storage service and share the links here.\"\n    validations:\n      required: true\n\n  - type: dropdown\n    id: device_frame\n    attributes:\n      label: \"Which device frame do you want to display your application on?\"\n      description: \"Select one or more device frames you would like to use.\"\n      multiple: true\n      options:\n        - Apple IPhone 15 Pro Max\n        - Google Pixel 5\n        - Google Pixel 6 Pro\n        - Apple IPhone 13 Mini\n        - Apple IPhone 15\n        - Samsung Galaxy S22 Ultra\n        - Samsung Galaxy S8\n    validations:\n      required: true\n\n  - type: checkboxes\n    id: terms\n    attributes:\n      label: Code of Conduct\n      description: \"By submitting this showcase, you agree to follow our [Code of Conduct](https://example.com).\"\n      options:\n        - label: I agree to respect and follow this project's rules\n    validations:\n      required: true\n\n  - type: markdown\n    attributes:\n      value: |\n        ## Public API Changes\n\n        None\n"
  },
  {
    "path": ".gitignore",
    "content": "# globs\nMakefile.in\n*.userprefs\n*.usertasks\nappsettings.Development.json\nsrc/appsettings.Development.json\nconfig.make\nconfig.status\naclocal.m4\ninstall-sh\nautom4te.cache/\n*.tar.gz\ntarballs/\ntest-results/\n/src/Presentations/Windows/Extensions/ProductionConfig.cs\n\ntools/\n\n# Mac bundle stuff\n*.dmg\n*.app\n\n# content below from: https://github.com/github/gitignore/blob/main/Global/macOS.gitignore\n# General\n.DS_Store\n.AppleDouble\n.LSOverride\n\n# Icon must end with two \\r\nIcon\n\n\n# Thumbnails\n._*\n\n# Files that might appear in the root of a volume\n.DocumentRevisions-V100\n.fseventsd\n.Spotlight-V100\n.TemporaryItems\n.Trashes\n.VolumeIcon.icns\n.com.apple.timemachine.donotpresent\n\n# Directories potentially created on remote AFP share\n.AppleDB\n.AppleDesktop\nNetwork Trash Folder\nTemporary Items\n.apdisk\n\n# content below from: https://github.com/github/gitignore/blob/main/Global/Windows.gitignore\n# Windows thumbnail cache files\nThumbs.db\nehthumbs.db\nehthumbs_vista.db\n\n# Dump file\n*.stackdump\n\n# Folder config file\n[Dd]esktop.ini\n\n# Recycle Bin used on file shares\n$RECYCLE.BIN/\n\n# Windows Installer files\n*.cab\n*.msi\n*.msix\n*.msm\n*.msp\n\n# Windows shortcuts\n*.lnk\n\n# content below from: https://github.com/github/gitignore/blob/master/VisualStudio.gitignore\n## Ignore Visual Studio temporary files, build results, and\n## files generated by popular Visual Studio add-ons.\n##\n## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore\n\n# User-specific files\n*.suo\n*.user\n*.userosscache\n*.sln.docstates\n\n# User-specific files (MonoDevelop/Xamarin Studio)\n*.userprefs\n\n# Build results\n[Dd]ebug/\n[Dd]ebugPublic/\n[Rr]elease/\n[Rr]eleases/\nx64/\nx86/\nbld/\n[Bb]in/\n[Oo]bj/\n[Ll]og/\n\n# Visual Studio 2015/2017 cache/options directory\n.vs/\n# Uncomment if you have tasks that create the project's static files in wwwroot\n#wwwroot/\n\n# Visual Studio 2017 auto generated files\nGenerated\\ Files/\n\n# MSTest test Results\n[Tt]est[Rr]esult*/\n[Bb]uild[Ll]og.*\n\n# NUNIT\n*.VisualState.xml\nTestResult.xml\n\n# Build Results of an ATL Project\n[Dd]ebugPS/\n[Rr]eleasePS/\ndlldata.c\n\n# Benchmark Results\nBenchmarkDotNet.Artifacts/\n\n# .NET Core\nproject.lock.json\nproject.fragment.lock.json\nartifacts/\n\n# StyleCop\nStyleCopReport.xml\n\n# Files built by Visual Studio\n*_i.c\n*_p.c\n*_h.h\n*.ilk\n*.meta\n*.obj\n*.iobj\n*.pch\n*.pdb\n*.ipdb\n*.pgc\n*.pgd\n*.rsp\n*.sbr\n*.tlb\n*.tli\n*.tlh\n*.tmp\n*.tmp_proj\n*_wpftmp.csproj\n*.log\n*.vspscc\n*.vssscc\n.builds\n*.pidb\n*.svclog\n*.scc\n\n# Chutzpah Test files\n_Chutzpah*\n\n# Visual C++ cache files\nipch/\n*.aps\n*.ncb\n*.opendb\n*.opensdf\n*.sdf\n*.cachefile\n*.VC.db\n*.VC.VC.opendb\n\n# Visual Studio profiler\n*.psess\n*.vsp\n*.vspx\n*.sap\n\n# Visual Studio Trace Files\n*.e2e\n\n# TFS 2012 Local Workspace\n$tf/\n\n# Guidance Automation Toolkit\n*.gpState\n\n# ReSharper is a .NET coding add-in\n_ReSharper*/\n*.[Rr]e[Ss]harper\n*.DotSettings.user\n\n# JustCode is a .NET coding add-in\n.JustCode\n\n# TeamCity is a build add-in\n_TeamCity*\n\n# DotCover is a Code Coverage Tool\n*.dotCover\n\n# AxoCover is a Code Coverage Tool\n.axoCover/*\n!.axoCover/settings.json\n\n# Visual Studio code coverage results\n*.coverage\n*.coveragexml\n\n# NCrunch\n_NCrunch_*\n.*crunch*.local.xml\nnCrunchTemp_*\n\n# MightyMoose\n*.mm.*\nAutoTest.Net/\n\n# Web workbench (sass)\n.sass-cache/\n\n# Installshield output folder\n[Ee]xpress/\n\n# DocProject is a documentation generator add-in\nDocProject/buildhelp/\nDocProject/Help/*.HxT\nDocProject/Help/*.HxC\nDocProject/Help/*.hhc\nDocProject/Help/*.hhk\nDocProject/Help/*.hhp\nDocProject/Help/Html2\nDocProject/Help/html\n\n# Click-Once directory\npublish/\n\n# Publish Web Output\n*.[Pp]ublish.xml\n*.azurePubxml\n# Note: Comment the next line if you want to checkin your web deploy settings,\n# but database connection strings (with potential passwords) will be unencrypted\n*.pubxml\n*.publishproj\n\n# Microsoft Azure Web App publish settings. Comment the next line if you want to\n# checkin your Azure Web App publish settings, but sensitive information contained\n# in these scripts will be unencrypted\nPublishScripts/\n\n# NuGet Packages\n*.nupkg\n# The packages folder can be ignored because of Package Restore\n**/[Pp]ackages/*\n# except build/, which is used as an MSBuild target.\n!**/[Pp]ackages/build/\n# Uncomment if necessary however generally it will be regenerated when needed\n#!**/[Pp]ackages/repositories.config\n# NuGet v3's project.json files produces more ignorable files\n*.nuget.props\n*.nuget.targets\n\n# Microsoft Azure Build Output\ncsx/\n*.build.csdef\n\n# Microsoft Azure Emulator\necf/\nrcf/\n\n# Windows Store app package directories and files\nAppPackages/\nBundleArtifacts/\nPackage.StoreAssociation.xml\n_pkginfo.txt\n*.appx\n\n# Visual Studio cache files\n# files ending in .cache can be ignored\n*.[Cc]ache\n# but keep track of directories ending in .cache\n!*.[Cc]ache/\n\n# Others\nClientBin/\n~$*\n*~\n*.dbmdl\n*.dbproj.schemaview\n*.jfm\n*.pfx\n*.publishsettings\norleans.codegen.cs\n\n# Including strong name files can present a security risk\n# (https://github.com/github/gitignore/pull/2483#issue-259490424)\n#*.snk\n\n# Since there are multiple workflows, uncomment next line to ignore bower_components\n# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)\n#bower_components/\n\n# RIA/Silverlight projects\nGenerated_Code/\n\n# Backup & report files from converting an old project file\n# to a newer Visual Studio version. Backup files are not needed,\n# because we have git ;-)\n_UpgradeReport_Files/\nBackup*/\nUpgradeLog*.XML\nUpgradeLog*.htm\nServiceFabricBackup/\n*.rptproj.bak\n\n# SQL Server files\n*.mdf\n*.ldf\n*.ndf\n\n# Business Intelligence projects\n*.rdl.data\n*.bim.layout\n*.bim_*.settings\n*.rptproj.rsuser\n\n# Microsoft Fakes\nFakesAssemblies/\n\n# GhostDoc plugin setting file\n*.GhostDoc.xml\n\n# Node.js Tools for Visual Studio\n.ntvs_analysis.dat\nnode_modules/\n\n# Visual Studio 6 build log\n*.plg\n\n# Visual Studio 6 workspace options file\n*.opt\n\n# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)\n*.vbw\n\n# Visual Studio LightSwitch build output\n**/*.HTMLClient/GeneratedArtifacts\n**/*.DesktopClient/GeneratedArtifacts\n**/*.DesktopClient/ModelManifest.xml\n**/*.Server/GeneratedArtifacts\n**/*.Server/ModelManifest.xml\n_Pvt_Extensions\n\n# Paket dependency manager\n.paket/paket.exe\npaket-files/\n\n# FAKE - F# Make\n.fake/\n\n# JetBrains Rider\n.idea/\n*.sln.iml\n\n# CodeRush personal settings\n.cr/personal\n\n# Python Tools for Visual Studio (PTVS)\n__pycache__/\n*.pyc\n\n# Cake - Uncomment if you are using it\n# tools/**\n# !tools/packages.config\n\n# Tabs Studio\n*.tss\n\n# Telerik's JustMock configuration file\n*.jmconfig\n\n# BizTalk build output\n*.btp.cs\n*.btm.cs\n*.odx.cs\n*.xsd.cs\n\n# OpenCover UI analysis results\nOpenCover/\n\n# Azure Stream Analytics local run output\nASALocalRun/\n\n# MSBuild Binary and Structured Log\n*.binlog\n\n# NVidia Nsight GPU debugger configuration file\n*.nvuser\n\n# MFractors (Xamarin productivity tool) working folder\n.mfractor/\n\n# Local History for Visual Studio\n.localhistory/\n\n.vs\n/src/appsettings.Development.json\n/src/Presentations/Windows/appsettings.Development.json\n/src/Presentations/Windows/Extensions/TaskHelpers.cs\n"
  },
  {
    "path": ".vscode/launch.json",
    "content": "{\n    // Use IntelliSense to learn about possible attributes.\n    // Hover to view descriptions of existing attributes.\n    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387\n    \"version\": \"0.2.0\",\n    \"configurations\": [\n        {\n            \"name\": \".NET MAUI\",\n            \"type\": \"maui\",\n            \"request\": \"launch\",\n            \"preLaunchTask\": \"maui: Build\"\n        },\n        {\n            \"name\": \".NET Meteor Debugger\",\n            \"type\": \"dotnet-meteor.debugger\",\n            \"request\": \"launch\",\n            \"preLaunchTask\": \"dotnet-meteor: Build\"\n        }\n    ]\n}"
  },
  {
    "path": ".vscode/settings.json",
    "content": "{\n  \"vscode_custom_css.imports\": [\n    \"file:///C:/Users/Strypper/.vscode/extensions/webrender.synthwave-x-fluoromachine-0.0.12/synthwave-x-fluoromachine.css\"\n    \"file:///C:/Users/Strypper/.vscode/extensions/thecodemonkey.synthwave-x-fluoromachine-epic-animations-1.4.13/epic-80s-transitions.css\"\n    ]\n}"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nWe as members, contributors, and leaders pledge to make participation in our\ncommunity a harassment-free experience for everyone, regardless of age, body\nsize, visible or invisible disability, ethnicity, sex characteristics, gender\nidentity and expression, level of experience, education, socio-economic status,\nnationality, personal appearance, race, religion, or sexual identity\nand orientation.\n\nWe pledge to act and interact in ways that contribute to an open, welcoming,\ndiverse, inclusive, and healthy community.\n\n## Our Standards\n\nExamples of behavior that contributes to a positive environment for our\ncommunity include:\n\n* Demonstrating empathy and kindness toward other people\n* Being respectful of differing opinions, viewpoints, and experiences\n* Giving and gracefully accepting constructive feedback\n* Accepting responsibility and apologizing to those affected by our mistakes,\n  and learning from the experience\n* Focusing on what is best not just for us as individuals, but for the\n  overall community\n\nExamples of unacceptable behavior include:\n\n* The use of sexualized language or imagery, and sexual attention or\n  advances of any kind\n* Trolling, insulting or derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or email\n  address, without their explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n  professional setting\n\n## Enforcement Responsibilities\n\nCommunity leaders are responsible for clarifying and enforcing our standards of\nacceptable behavior and will take appropriate and fair corrective action in\nresponse to any behavior that they deem inappropriate, threatening, offensive,\nor harmful.\n\nCommunity leaders have the right and responsibility to remove, edit, or reject\ncomments, commits, code, wiki edits, issues, and other contributions that are\nnot aligned to this Code of Conduct, and will communicate reasons for moderation\ndecisions when appropriate.\n\n## Scope\n\nThis Code of Conduct applies within all community spaces, and also applies when\nan individual is officially representing the community in public spaces.\nExamples of representing our community include using an official e-mail address,\nposting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported to the community leaders responsible for enforcement at\nocgrb.strypperjason115@gmail.com.\nAll complaints will be reviewed and investigated promptly and fairly.\n\nAll community leaders are obligated to respect the privacy and security of the\nreporter of any incident.\n\n## Enforcement Guidelines\n\nCommunity leaders will follow these Community Impact Guidelines in determining\nthe consequences for any action they deem in violation of this Code of Conduct:\n\n### 1. Correction\n\n**Community Impact**: Use of inappropriate language or other behavior deemed\nunprofessional or unwelcome in the community.\n\n**Consequence**: A private, written warning from community leaders, providing\nclarity around the nature of the violation and an explanation of why the\nbehavior was inappropriate. A public apology may be requested.\n\n### 2. Warning\n\n**Community Impact**: A violation through a single incident or series\nof actions.\n\n**Consequence**: A warning with consequences for continued behavior. No\ninteraction with the people involved, including unsolicited interaction with\nthose enforcing the Code of Conduct, for a specified period of time. This\nincludes avoiding interactions in community spaces as well as external channels\nlike social media. Violating these terms may lead to a temporary or\npermanent ban.\n\n### 3. Temporary Ban\n\n**Community Impact**: A serious violation of community standards, including\nsustained inappropriate behavior.\n\n**Consequence**: A temporary ban from any sort of interaction or public\ncommunication with the community for a specified period of time. No public or\nprivate interaction with the people involved, including unsolicited interaction\nwith those enforcing the Code of Conduct, is allowed during this period.\nViolating these terms may lead to a permanent ban.\n\n### 4. Permanent Ban\n\n**Community Impact**: Demonstrating a pattern of violation of community\nstandards, including sustained inappropriate behavior,  harassment of an\nindividual, or aggression toward or disparagement of classes of individuals.\n\n**Consequence**: A permanent ban from any sort of public interaction within\nthe community.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage],\nversion 2.0, available at\nhttps://www.contributor-covenant.org/version/2/0/code_of_conduct.html.\n\nCommunity Impact Guidelines were inspired by [Mozilla's code of conduct\nenforcement ladder](https://github.com/mozilla/diversity).\n\n[homepage]: https://www.contributor-covenant.org\n\nFor answers to common questions about this code of conduct, see the FAQ at\nhttps://www.contributor-covenant.org/faq. Translations are available at\nhttps://www.contributor-covenant.org/translations.\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2023 Strypper Vandel Jason\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# 🏝️ MAUIsland\n\n![](showcases/version_2.0/summary_slide.png)\n\nMAUIsland is an app that showcases all the .NET MAUI controls available for developers. It allows you to easily interact with them and see how they look and behave on different platforms. It also provides guidance, tips and tricks to help you use them effectively in your own apps. \n\n<p align=\"center\">\n  <img width=\"300\" align=\"center\" src=\"showcases/version_2.0/MAUIsland_1920x1080.png\">\n</p>\n<h1 align=\"center\">\n  MAUIsland\n</h1>\n<p align=\"center\">\n  Explore and interact. Stay up to date with the .NET MAUI Community.\n</p>\n<p align=\"center\">\n  <a href=\"https://www.microsoft.com/store/productId/9NLQ0J5P471L\" target=\"_blank\">\n    <img src=\"showcases/storeBadge.png\" width=\"200\" alt=\"Store link\" />\n  </a>\n</p>\n\n# Version 2.0 (Dragon version)\n1. Revamped Design 🎨: The application now features a sleek, acrylic + mica material design. The interface is smoother, with enhanced contrast and reduced distractions, offering users a more engaging experience.\n\n2. Performance Enhancements 🏎️: Significant improvements have been made in page navigation, resulting in a reduced memory footprint. Additionally, internet data is cached locally in a database, enhancing performance and enabling better offline support. The lazy loading of the code view expander contributes to faster initialization of pages.\n\n3. Expanded Community Toolkit 🔨: The Community Toolkit Gallery has been enriched with the addition of four new controls, nine converters, and three layouts, empowering developers with more tools to enhance their applications.\n\n4. GitHub Community Gallery 🤝: We've integrated six widely used GitHub nuggets that are commonly utilized with .NET MAUI, including LiveChart2, ZXing.Net.Maui, and more. This gallery not only provides access to these resources but also offers UI fixes to address issues like stretched clicking and hovering targets for a smoother user interaction.\n5. Explore [Showcases](https://github.com/Strypper/mauisland/blob/main/showcases/version_2.0/Contribute.md)\n\n# ⚠️ Create appsettings.Development.json before run App\n1. Click right MAUIsland in Solution Explorer\n2. Select Add -> New Item -> only JSON File\n3. Set Name: appsettings.Development.json\n4. Click Add and copy the format below (You can leave the key value empty if you don't have the syncfusion key, but this will lead to a crash if you try to view syncfusion controls)\nAdd the json settings from the issue:\n```json\n{\n  \"AppSettings\": {\n    \"SyncfusionKey\": \"Your_syncfustion_key\",\n    \"DiscordApplicationId\": \"Yout_discord_bot_application_id\"\n  }\n}\n```\n\n# 🚀 Features\n\n1. Browse through over 50 .NET MAUI controls organized by categories\n2. See live previews of each control on iOS, Android, Windows, and Mac\n3. Learn how to use each control with code snippets and documentation links\n4. Customize each control’s properties and styles\n5. Copy code snippets to the clipboard and use them in your app\n\n# ⬇️ Installation\nTo install .NET MAUI Control Gallery on your device or emulator/simulator:\n\n1. Clone or download this repository\n2. Open the solution file (.sln) in Visual Studio 2022 or later\n3. Select your target platform and device/emulator/simulator\n4. Create the appsettings.Development.json file this file will not contain any private key\n5. Build and run the app\n\nWe will publish our application on all platforms soon enough. Stay tuned!!!\n\n# ⁉ Support\n\nIf you need help with something or have an idea, feel free to start a [Discussion](https://github.com/CommunityToolkit/WindowsCommunityToolkit/discussions) or find us on [Discord](https://discord.gg/edgzveQ9KN). If you have detailed repro steps, open an [issue here instead](https://github.com/Strypper/mauisland/issues/new/choose).\n\n# 📄 Code of Conduct\n\nThis project has adopted the code of conduct defined by the [Contributor Covenant](http://contributor-covenant.org/)\nto clarify expected behavior in our community.\nFor more information see the [.NET Foundation Code of Conduct](CODE_OF_CONDUCT.md).\n\n# Meet the contributors\n<a href=\"https://github.com/Strypper/MAUIsland/graphs/contributors\">\n  <img src=\"https://contrib.rocks/image?repo=Strypper/MAUIsland\" />\n</a>\n\nMade with [contrib.rocks](https://contrib.rocks).\n"
  },
  {
    "path": "build.cake",
    "content": "#addin nuget:?package=Cake.FileHelpers&version=6.0.0\n\nvar target = Argument(\"target\", \"BuiltInControlPage\");\nvar group = Argument(\"group\", \"BuiltIn\");\nvar name = Argument(\"name\", \"AwesomeControl\");\nvar cardDetail = Argument(\"cardDetail\", \"CardDetail\");\nvar originalDocumentUrl = Argument(\"originalDocumentUrl\", \"DocumentLink\");\nvar configuration = Argument(\"configuration\", \"Release\");\n\n//////////////////////////////////////////////////////////////////////\n// TASKS\n//////////////////////////////////////////////////////////////////////\n\nconst string CONTROL_FODLER_PATH_TEMPLATE=\"./src/Features/Gallery/Pages/{0}/{1}\";\n\nTask(\"BuiltInControlPage\")\n    .Does(() =>\n{\n    var controlFolderPath = string.Format(CONTROL_FODLER_PATH_TEMPLATE, group, name);\n    Information(\"Control folder path: \" + controlFolderPath);\n    \n    if (DirectoryExists(controlFolderPath)) {\n        Warning(\"Control folder path exists\");\n        return;\n    }\n\n    CreateDirectory(controlFolderPath);\n\n    Information($\"\\n>> Generate >> {name}ControlInfo.cs\");\n    FileWriteText($\"{controlFolderPath}/{name}ControlInfo.cs\", $@\"namespace MAUIsland.Gallery.{group};\nclass {name}ControlInfo : IGalleryCardInfo \n{{\n    public string ControlName => nameof({name});\n    public string ControlRoute => typeof({name}Page).FullName;\n    public ImageSource ControlIcon => new FontImageSource()\n    {{\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    }};\n    public string ControlDetail => \"\"{cardDetail}\"\";\n    public string GitHubUrl => $\"\"https://github.com/Strypper/mauisland/tree/main/src/Features/Gallery/Pages/{group}/{{ControlName}}\"\";\n    public string DocumentUrl => $\"\"{originalDocumentUrl}\"\";\n    public string GroupName => ControlGroupInfo.{group}Controls;\n}}\");\n\n    Information($\"\\n>> Generate >> {name}Page.xaml\");\n    FileWriteText($\"{controlFolderPath}/{name}Page.xaml\", $@\"<?xml version=\"\"1.0\"\" encoding=\"\"utf-8\"\" ?>\n<app:BasePage \n    xmlns=\"\"http://schemas.microsoft.com/dotnet/2021/maui\"\"\n    xmlns:x=\"\"http://schemas.microsoft.com/winfx/2009/xaml\"\"\n    xmlns:app=\"\"clr-namespace:MAUIsland\"\"\n    Padding=\"\"10\"\"\n    x:Class=\"\"MAUIsland.{name}Page\"\"\n    x:DataType=\"\"app:{name}PageViewModel\"\"\n    Title=\"\"{name}\"\">\n\n    <app:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"\"{{x:Binding OpenUrlCommand}}\"\"\n            CommandParameter=\"\"{{x:Binding ControlInformation.GitHubUrl}}\"\"\n            IconImageSource=\"\"github.png\"\"\n            Text=\"\"Source code\"\" />\n        <ToolbarItem\n            Command=\"\"{{x:Binding OpenUrlCommand}}\"\"\n            CommandParameter=\"\"{{x:Binding ControlInformation.DocumentUrl}}\"\"\n            IconImageSource=\"\"microsoft.png\"\"\n            Text=\"\"Original Document\"\" />\n    </app:BasePage.ToolbarItems>\n    \n    <app:BasePage.Resources>\n\n        <x:String x:Key=\"\"PropertiesListHeader\"\">\n            {name} defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"\"PropertiesListFooter\"\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"\"PropertiesItemsSource\"\" Type=\"\"{{x:Type x:String}}\"\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"\"color:blue\"\">Color</strong>, of type <strong style=\"\"color:blue\"\">Color </strong>, value that defines the color of the ActivityIndicator.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"\"color:blue\"\">IsRunning</strong>, of type <strong style=\"\"color:blue\"\">bool</strong>,value that indicates whether the ActivityIndicator should be visible and animating, or hidden. The default value of this property is false, which indicates that the ActivityIndicator isn't visible.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </app:BasePage.Resources>\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"\"20\"\">\n            <Frame Style=\"\"{{x:StaticResource DocumentContentFrameStyle}}\"\">\n                <Label Text=\"\"{{x:Binding ControlInformation.ControlDetail}}\"\" />\n            </Frame>\n            <Frame Style=\"\"{{x:StaticResource DocumentContentFrameStyle}}\"\">\n                <CollectionView\n                    Footer=\"\"{{x:StaticResource PropertiesListFooter}}\"\"\n                    Header=\"\"{{x:StaticResource PropertiesListHeader}}\"\"\n                    ItemsSource=\"\"{{x:StaticResource PropertiesItemsSource}}\"\"\n                    Style=\"\"{{x:StaticResource PropertiesListStyle}}\"\" />\n            </Frame>\n        </VerticalStackLayout>\n    </ScrollView>\n</app:BasePage>\");\n\n    Information($\"\\n>> Generate >> {name}Page.xaml.cs\");\n    FileWriteText($\"{controlFolderPath}/{name}Page.xaml.cs\", $@\"namespace MAUIsland;\npublic partial class {name}Page : IGalleryPage\n{{\n    #region [CTor]\n    public {name}Page({name}PageViewModel vm)\n    {{\n        InitializeComponent();\n\n        BindingContext = vm;\n    }}\n    #endregion\n}}\");\n\n    Information($\"\\n>> Generate >> {name}PageViewModel.cs\");\n    FileWriteText($\"{controlFolderPath}/{name}PageViewModel.cs\", $@\"namespace MAUIsland;\npublic partial class {name}PageViewModel : NavigationAwareBaseViewModel\n{{\n    #region [CTor]\n    public {name}PageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {{\n    }}\n    #endregion\n\n    #region [Properties]\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation;\n    #endregion\n\n    #region [Overrides]\n    protected override void OnInit(IDictionary<string, object> query)\n    {{\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n    }}\n    #endregion\n}}\");\n});\n\n//////////////////////////////////////////////////////////////////////\n// EXECUTION\n//////////////////////////////////////////////////////////////////////\n\nRunTarget(target);\n"
  },
  {
    "path": "docs/pull_request_template.md",
    "content": "# COOL NEW PAGE !!!!\n### Page name: `<Name>Page`\n  \n## Contributors\n\n[//]: contributor-faces\n\n<a href=\"https://github.com/Strypper\"><img src=\"https://i.imgur.com/vc9FudE.jpg\" title=\"Strypper\" width=\"80\" height=\"80\"></a>\n\n[//]: contributor-faces\n  \n## Describe your changes\n\n## Have we discussed about this before ? (Please link the discussion link below)\n\n## Added <Name> page requirements as following:\n- [ ] <Name>Page.xaml\n  - [ ] Change the `x:Class` to project namespace standard (ex: `x:Class=\"MAUIsland.LabelPage\"`)?\n  - [ ] Include `xmlns:app=\"clr-namespace:MAUIsland\"`?\n  - [ ] Change `ContentPage` to `app:BasePage`?\n  - [ ] Hook the `x:DataType` to the <Page>ViewModel?\n  - [ ] Provide `Padding=\"10\"` to `app:BasePage`?\n  - [ ] Provide `ControlInfo` to `app:BasePage.Resources`?\n  - [ ] Provide `PropertiesListHeader` to `app:BasePage.Resources`?\n  - [ ] Provide `PropertiesListFooter` to `app:BasePage.Resources`?\n  - [ ] Provide `PropertyItemsSource` to `app:BasePage.Resources`?\n  - [ ] Provide a brief `Control Info` UI ?\n    ```xml\n       <Frame Style=\"{x:StaticResource DocumentContentFrameStyle}\">\n                <Label Text=\"{x:StaticResource ControlInfo}\" />\n       </Frame>\n    ```\n    - [ ] Provide `Properties List` UI ?\n    ```xml\n       <Frame Style=\"{x:StaticResource DocumentContentFrameStyle}\">\n                <CollectionView\n                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                    Header=\"{x:StaticResource PropertiesListHeader}\"\n                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n       </Frame>\n    ```\n- [ ] <Name>Page.xaml.cs\n  - [ ] Did you change the `namespace` to project namespace standard `namespace MAUIsland`?\n  - [ ] Did you remove inheritance `ContentPage`?\n  - [ ] Did you organize everything inside `region`?\n  - [ ] Did you change `<Page>ViewModel` into the constructor parmeter?\n  - [ ] Did you hook the page binding context to the page view model - `BindingContext = vm;` ?\n- [ ] <Name>PageViewModel.cs\n  - [ ] Did you inherit the `NavigationAwareBaseViewModel`?\n  - [ ] Did you organize everything inside `region`?\n  - [ ] Did you modify the constructor like the example we provide?\n    ```cs\n    #region [CTor]\n    public LabelPageViewModel(IAppNavigator appNavigator)\n                                    : base(appNavigator)\n    {\n\n    }\n    #endregion\n    ```\n\n## Register <Name> page route requirements as following:\n- [ ] Did you create now route constant ?\n- [ ] Did you register page route in AppShell.xaml.cs ?\n- [ ] If the page is one of applciation root route did you register it to AppShell.xaml ?\n  \n## Register <Name> page services: \n- [ ] Did you register the page with the view model in `RegisterPages` ?\n- [ ] Did you register all the created services `RegisterServices` ? \n"
  },
  {
    "path": "maui-island.sln",
    "content": "﻿\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio Version 17\nVisualStudioVersion = 17.0.31611.283\nMinimumVisualStudioVersion = 10.0.40219.1\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"Presentations\", \"Presentations\", \"{B39EE44A-0776-44E7-8B64-D8572E49B134}\"\nEndProject\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"Windows\", \"Windows\", \"{2FD579F3-6496-437C-956B-E6F62B2D2A5A}\"\nEndProject\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"Core\", \"Core\", \"{36CB9EBB-A677-4AF0-A0A9-BDEBDE60F123}\"\nEndProject\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"Features\", \"Features\", \"{73E66A66-7BCD-44FE-949C-BD42C274B840}\"\nEndProject\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"GitHubFeatures\", \"GitHubFeatures\", \"{23A84AFF-0047-4364-9351-E4521D52A26B}\"\nEndProject\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"Apple\", \"Apple\", \"{767B8BFD-B663-4A2E-85AB-323D672F5B4D}\"\nEndProject\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"Android\", \"Android\", \"{7CEB155B-884F-4995-867D-4CC9145EF87E}\"\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"MAUIsland.GitHubFeatures\", \"src\\Features\\GitHubFeatures\\MAUIsland.GitHubFeatures\\MAUIsland.GitHubFeatures.csproj\", \"{B138AC18-EC19-4368-AE0B-CDACD0911650}\"\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"MAUIsland.GitHubFeatures.IntegrationTests\", \"src\\Features\\GitHubFeatures\\MAUIsland.GitHubFeatures.IntegrationTests\\MAUIsland.GitHubFeatures.IntegrationTests.csproj\", \"{6F539157-0DE3-407A-8769-EB997EB7AE59}\"\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"MAUIsland\", \"src\\Presentations\\Windows\\MAUIsland.csproj\", \"{72B83E80-9D22-4A44-AB91-253A616A9D9C}\"\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"MAUIsland.Core\", \"src\\Core\\MAUIsland.Core\\MAUIsland.Core.csproj\", \"{A9F55C31-8BED-4021-8F1B-1F5C7D4B2265}\"\nEndProject\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"LocalDbFeatures\", \"LocalDbFeatures\", \"{44F9EA87-2C75-4685-B49F-8ECF3CE577CA}\"\nEndProject\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"GitHub\", \"GitHub\", \"{966A4C62-0966-4106-A407-A65F27A07986}\"\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"MAUIsland.Features.LocalDbFeatures.GitHub\", \"src\\Features\\LocalDbFeatures\\GitHub\\MAUIsland.Features.LocalDbFeatures.GitHub\\MAUIsland.Features.LocalDbFeatures.GitHub.csproj\", \"{9C9F69E9-00F8-459F-98CB-100F1A8B8FE4}\"\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"MAUIsland.Features.LocalDbFeatures\", \"src\\Features\\LocalDbFeatures\\MAUIsland.Features.LocalDbFeatures\\MAUIsland.Features.LocalDbFeatures.csproj\", \"{97DE63B5-31C0-4C62-843D-43FB6D23EBB1}\"\nEndProject\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"NewsFeatures\", \"NewsFeatures\", \"{E323C174-10BB-428C-B9D9-2DF7261FF505}\"\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"MAUIsland.NewsFeatures\", \"src\\Features\\NewsFeatures\\MAUIsland.NewsFeatures\\MAUIsland.NewsFeatures.csproj\", \"{55DC0378-71D9-4F9D-9593-DBF8C4E048D5}\"\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"MAUIsland.NewsFeatures.IntergrationTests\", \"src\\Features\\NewsFeatures\\MAUIsland.NewsFeatures.IntergrationTests\\MAUIsland.NewsFeatures.IntergrationTests.csproj\", \"{797B439F-A5E6-4CA4-8301-97F4B690D0B3}\"\nEndProject\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"NuGetFeatures\", \"NuGetFeatures\", \"{D069C6EA-9676-48DE-B16B-7A177A1FEDAB}\"\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"MAUIsland.NuGetFeatures\", \"src\\Features\\NuGetFeatures\\MAUIsland.NuGetFeatures\\MAUIsland.NuGetFeatures.csproj\", \"{9A141D5A-B1B5-445B-9FCA-A08BA821D339}\"\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"NuGetFeatures.IntegrationTests\", \"src\\Features\\NuGetFeatures\\NuGetFeatures.IntegrationTests\\NuGetFeatures.IntegrationTests.csproj\", \"{5EEA72E3-4279-4131-9754-144F9D535A72}\"\nEndProject\nGlobal\n\tGlobalSection(SolutionConfigurationPlatforms) = preSolution\n\t\tDebug|Any CPU = Debug|Any CPU\n\t\tDebug|x64 = Debug|x64\n\t\tRelease|Any CPU = Release|Any CPU\n\t\tRelease|x64 = Release|x64\n\tEndGlobalSection\n\tGlobalSection(ProjectConfigurationPlatforms) = postSolution\n\t\t{B138AC18-EC19-4368-AE0B-CDACD0911650}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{B138AC18-EC19-4368-AE0B-CDACD0911650}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{B138AC18-EC19-4368-AE0B-CDACD0911650}.Debug|x64.ActiveCfg = Debug|Any CPU\n\t\t{B138AC18-EC19-4368-AE0B-CDACD0911650}.Debug|x64.Build.0 = Debug|Any CPU\n\t\t{B138AC18-EC19-4368-AE0B-CDACD0911650}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{B138AC18-EC19-4368-AE0B-CDACD0911650}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{B138AC18-EC19-4368-AE0B-CDACD0911650}.Release|x64.ActiveCfg = Release|Any CPU\n\t\t{B138AC18-EC19-4368-AE0B-CDACD0911650}.Release|x64.Build.0 = Release|Any CPU\n\t\t{6F539157-0DE3-407A-8769-EB997EB7AE59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{6F539157-0DE3-407A-8769-EB997EB7AE59}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{6F539157-0DE3-407A-8769-EB997EB7AE59}.Debug|x64.ActiveCfg = Debug|Any CPU\n\t\t{6F539157-0DE3-407A-8769-EB997EB7AE59}.Debug|x64.Build.0 = Debug|Any CPU\n\t\t{6F539157-0DE3-407A-8769-EB997EB7AE59}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{6F539157-0DE3-407A-8769-EB997EB7AE59}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{6F539157-0DE3-407A-8769-EB997EB7AE59}.Release|x64.ActiveCfg = Release|Any CPU\n\t\t{6F539157-0DE3-407A-8769-EB997EB7AE59}.Release|x64.Build.0 = Release|Any CPU\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C}.Debug|Any CPU.Deploy.0 = Debug|Any CPU\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C}.Debug|x64.ActiveCfg = Debug|x64\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C}.Debug|x64.Build.0 = Debug|x64\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C}.Debug|x64.Deploy.0 = Debug|x64\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C}.Release|Any CPU.Deploy.0 = Release|Any CPU\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C}.Release|x64.ActiveCfg = Release|x64\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C}.Release|x64.Build.0 = Release|x64\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C}.Release|x64.Deploy.0 = Release|x64\n\t\t{A9F55C31-8BED-4021-8F1B-1F5C7D4B2265}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{A9F55C31-8BED-4021-8F1B-1F5C7D4B2265}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{A9F55C31-8BED-4021-8F1B-1F5C7D4B2265}.Debug|x64.ActiveCfg = Debug|Any CPU\n\t\t{A9F55C31-8BED-4021-8F1B-1F5C7D4B2265}.Debug|x64.Build.0 = Debug|Any CPU\n\t\t{A9F55C31-8BED-4021-8F1B-1F5C7D4B2265}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{A9F55C31-8BED-4021-8F1B-1F5C7D4B2265}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{A9F55C31-8BED-4021-8F1B-1F5C7D4B2265}.Release|x64.ActiveCfg = Release|Any CPU\n\t\t{A9F55C31-8BED-4021-8F1B-1F5C7D4B2265}.Release|x64.Build.0 = Release|Any CPU\n\t\t{9C9F69E9-00F8-459F-98CB-100F1A8B8FE4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{9C9F69E9-00F8-459F-98CB-100F1A8B8FE4}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{9C9F69E9-00F8-459F-98CB-100F1A8B8FE4}.Debug|x64.ActiveCfg = Debug|Any CPU\n\t\t{9C9F69E9-00F8-459F-98CB-100F1A8B8FE4}.Debug|x64.Build.0 = Debug|Any CPU\n\t\t{9C9F69E9-00F8-459F-98CB-100F1A8B8FE4}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{9C9F69E9-00F8-459F-98CB-100F1A8B8FE4}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{9C9F69E9-00F8-459F-98CB-100F1A8B8FE4}.Release|x64.ActiveCfg = Release|Any CPU\n\t\t{9C9F69E9-00F8-459F-98CB-100F1A8B8FE4}.Release|x64.Build.0 = Release|Any CPU\n\t\t{97DE63B5-31C0-4C62-843D-43FB6D23EBB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{97DE63B5-31C0-4C62-843D-43FB6D23EBB1}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{97DE63B5-31C0-4C62-843D-43FB6D23EBB1}.Debug|x64.ActiveCfg = Debug|Any CPU\n\t\t{97DE63B5-31C0-4C62-843D-43FB6D23EBB1}.Debug|x64.Build.0 = Debug|Any CPU\n\t\t{97DE63B5-31C0-4C62-843D-43FB6D23EBB1}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{97DE63B5-31C0-4C62-843D-43FB6D23EBB1}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{97DE63B5-31C0-4C62-843D-43FB6D23EBB1}.Release|x64.ActiveCfg = Release|Any CPU\n\t\t{97DE63B5-31C0-4C62-843D-43FB6D23EBB1}.Release|x64.Build.0 = Release|Any CPU\n\t\t{55DC0378-71D9-4F9D-9593-DBF8C4E048D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{55DC0378-71D9-4F9D-9593-DBF8C4E048D5}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{55DC0378-71D9-4F9D-9593-DBF8C4E048D5}.Debug|x64.ActiveCfg = Debug|Any CPU\n\t\t{55DC0378-71D9-4F9D-9593-DBF8C4E048D5}.Debug|x64.Build.0 = Debug|Any CPU\n\t\t{55DC0378-71D9-4F9D-9593-DBF8C4E048D5}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{55DC0378-71D9-4F9D-9593-DBF8C4E048D5}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{55DC0378-71D9-4F9D-9593-DBF8C4E048D5}.Release|x64.ActiveCfg = Release|Any CPU\n\t\t{55DC0378-71D9-4F9D-9593-DBF8C4E048D5}.Release|x64.Build.0 = Release|Any CPU\n\t\t{797B439F-A5E6-4CA4-8301-97F4B690D0B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{797B439F-A5E6-4CA4-8301-97F4B690D0B3}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{797B439F-A5E6-4CA4-8301-97F4B690D0B3}.Debug|x64.ActiveCfg = Debug|Any CPU\n\t\t{797B439F-A5E6-4CA4-8301-97F4B690D0B3}.Debug|x64.Build.0 = Debug|Any CPU\n\t\t{797B439F-A5E6-4CA4-8301-97F4B690D0B3}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{797B439F-A5E6-4CA4-8301-97F4B690D0B3}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{797B439F-A5E6-4CA4-8301-97F4B690D0B3}.Release|x64.ActiveCfg = Release|Any CPU\n\t\t{797B439F-A5E6-4CA4-8301-97F4B690D0B3}.Release|x64.Build.0 = Release|Any CPU\n\t\t{9A141D5A-B1B5-445B-9FCA-A08BA821D339}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{9A141D5A-B1B5-445B-9FCA-A08BA821D339}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{9A141D5A-B1B5-445B-9FCA-A08BA821D339}.Debug|x64.ActiveCfg = Debug|Any CPU\n\t\t{9A141D5A-B1B5-445B-9FCA-A08BA821D339}.Debug|x64.Build.0 = Debug|Any CPU\n\t\t{9A141D5A-B1B5-445B-9FCA-A08BA821D339}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{9A141D5A-B1B5-445B-9FCA-A08BA821D339}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{9A141D5A-B1B5-445B-9FCA-A08BA821D339}.Release|x64.ActiveCfg = Release|Any CPU\n\t\t{9A141D5A-B1B5-445B-9FCA-A08BA821D339}.Release|x64.Build.0 = Release|Any CPU\n\t\t{5EEA72E3-4279-4131-9754-144F9D535A72}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{5EEA72E3-4279-4131-9754-144F9D535A72}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{5EEA72E3-4279-4131-9754-144F9D535A72}.Debug|x64.ActiveCfg = Debug|Any CPU\n\t\t{5EEA72E3-4279-4131-9754-144F9D535A72}.Debug|x64.Build.0 = Debug|Any CPU\n\t\t{5EEA72E3-4279-4131-9754-144F9D535A72}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{5EEA72E3-4279-4131-9754-144F9D535A72}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{5EEA72E3-4279-4131-9754-144F9D535A72}.Release|x64.ActiveCfg = Release|Any CPU\n\t\t{5EEA72E3-4279-4131-9754-144F9D535A72}.Release|x64.Build.0 = Release|Any CPU\n\tEndGlobalSection\n\tGlobalSection(SolutionProperties) = preSolution\n\t\tHideSolutionNode = FALSE\n\tEndGlobalSection\n\tGlobalSection(NestedProjects) = preSolution\n\t\t{2FD579F3-6496-437C-956B-E6F62B2D2A5A} = {B39EE44A-0776-44E7-8B64-D8572E49B134}\n\t\t{23A84AFF-0047-4364-9351-E4521D52A26B} = {73E66A66-7BCD-44FE-949C-BD42C274B840}\n\t\t{767B8BFD-B663-4A2E-85AB-323D672F5B4D} = {B39EE44A-0776-44E7-8B64-D8572E49B134}\n\t\t{7CEB155B-884F-4995-867D-4CC9145EF87E} = {B39EE44A-0776-44E7-8B64-D8572E49B134}\n\t\t{B138AC18-EC19-4368-AE0B-CDACD0911650} = {23A84AFF-0047-4364-9351-E4521D52A26B}\n\t\t{6F539157-0DE3-407A-8769-EB997EB7AE59} = {23A84AFF-0047-4364-9351-E4521D52A26B}\n\t\t{72B83E80-9D22-4A44-AB91-253A616A9D9C} = {2FD579F3-6496-437C-956B-E6F62B2D2A5A}\n\t\t{A9F55C31-8BED-4021-8F1B-1F5C7D4B2265} = {36CB9EBB-A677-4AF0-A0A9-BDEBDE60F123}\n\t\t{44F9EA87-2C75-4685-B49F-8ECF3CE577CA} = {73E66A66-7BCD-44FE-949C-BD42C274B840}\n\t\t{966A4C62-0966-4106-A407-A65F27A07986} = {44F9EA87-2C75-4685-B49F-8ECF3CE577CA}\n\t\t{9C9F69E9-00F8-459F-98CB-100F1A8B8FE4} = {966A4C62-0966-4106-A407-A65F27A07986}\n\t\t{97DE63B5-31C0-4C62-843D-43FB6D23EBB1} = {44F9EA87-2C75-4685-B49F-8ECF3CE577CA}\n\t\t{E323C174-10BB-428C-B9D9-2DF7261FF505} = {73E66A66-7BCD-44FE-949C-BD42C274B840}\n\t\t{55DC0378-71D9-4F9D-9593-DBF8C4E048D5} = {E323C174-10BB-428C-B9D9-2DF7261FF505}\n\t\t{797B439F-A5E6-4CA4-8301-97F4B690D0B3} = {E323C174-10BB-428C-B9D9-2DF7261FF505}\n\t\t{D069C6EA-9676-48DE-B16B-7A177A1FEDAB} = {73E66A66-7BCD-44FE-949C-BD42C274B840}\n\t\t{9A141D5A-B1B5-445B-9FCA-A08BA821D339} = {D069C6EA-9676-48DE-B16B-7A177A1FEDAB}\n\t\t{5EEA72E3-4279-4131-9754-144F9D535A72} = {D069C6EA-9676-48DE-B16B-7A177A1FEDAB}\n\tEndGlobalSection\n\tGlobalSection(ExtensibilityGlobals) = postSolution\n\t\tSolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572}\n\tEndGlobalSection\n\tGlobalSection(MonoDevelopProperties) = preSolution\n\t\tPolicies = $0\n\t\t$0.DotNetNamingPolicy = $1\n\tEndGlobalSection\nEndGlobal\n"
  },
  {
    "path": "showcases/version_2.0/Contribute.md",
    "content": "\n# Welcome to the MAUIsland Community\n\n<p align=\"center\">\n  <img width=\"800\" align=\"center\" src=\"showcases_preview.png\">\n</p>\n\nHi Community,\n\nThe MAUIsland team is eager to learn new things from you! Your beautiful designs and clean code practices help us build a stronger community. To showcase your best efforts, we have introduced a new feature in MAUIsland called **\"Showcases.\"** This feature provides meaningful previews of your applications to our audience, helping you grow your network. Your applications will be displayed beautifully in selected device frames such as iPhone, Samsung, or Surface devices, and we'll reference your work using GitHub links.\n\n### Requirements for your app on our platform:\n1. **Open-source**: Our application cannot access private repositories, which means features like reading the repo title and the project .csproj file are unavailable. Additionally, users won't have further information about your source if it's private.\n2. **.NET Technologies Stack**: We currently accept Uno Platform, UWP, WPF, WinUI 2/3, .NET MAUI, and Avalonia. As a .NET community, we aim to keep our showcases relevant to .NET audiences, but we plan to expand our scope later.\n\nWe look forward to seeing your amazing work!\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Animations/SampleScaleAnimation.cs",
    "content": "﻿using CommunityToolkit.Maui.Animations;\n\nnamespace MAUIsland.Core;\n\nclass SampleScaleAnimation : BaseAnimation\n{\n    public override async Task Animate(VisualElement view, CancellationToken token)\n    {\n        await view.ScaleTo(1.2, Length, Easing).WaitAsync(token);\n        await view.ScaleTo(1, Length, Easing).WaitAsync(token);\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/AppSettings/AppSettings.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class AppSettings\n{\n    public string SyncfusionKey { get; set; }\n    public string DiscordApplicationId { get; set; }\n    public string GitHubAccessToken { get; set; }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Attributes/FieldCompareAttribute.cs",
    "content": "﻿using System.ComponentModel.DataAnnotations;\n\nnamespace MAUIsland.Core;\n\n[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]\npublic class FieldCompareAttribute : CompareAttribute\n{\n    public FieldCompareAttribute(string otherProperty) : base(otherProperty)\n    {\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Attributes/PasswordAttribute.cs",
    "content": "﻿using System;\nusing System.ComponentModel.DataAnnotations;\nusing System.Text.RegularExpressions;\n\nnamespace MAUIsland.Core;\n\npublic class PasswordAttribute : ValidationAttribute\n{\n    public bool IncludesUpper { get; set; }\n    public bool IncludesLower { get; set; }\n    public bool IncludesNumber { get; set; }\n    public bool IncludesSpecial { get; set; }\n    public uint MinimumLength { get; set; }\n\n    static readonly Regex UpperRegex = new Regex(\"[A-Z]+\", RegexOptions.None);\n    static readonly Regex LowerRegex = new Regex(\"[a-z]+\", RegexOptions.None);\n    static readonly Regex NumberRegex = new Regex(\"[0-9]+\", RegexOptions.None);\n    static readonly Regex SpecialRegex = new Regex(\"[^A-Z0-9]+\", RegexOptions.IgnoreCase);\n\n    public override bool IsValid(object value)\n    {\n        if (value is not string stringValue)\n        {\n            return base.IsValid(value);\n        }\n\n        if (string.IsNullOrWhiteSpace(stringValue)) return false;\n\n        if (MinimumLength > 0 && stringValue.Length < MinimumLength) return false;\n\n        if (IncludesLower && !LowerRegex.IsMatch(stringValue)) return false;\n\n        if (IncludesNumber && !LowerRegex.IsMatch(stringValue)) return false;\n\n        if (IncludesSpecial && !SpecialRegex.IsMatch(stringValue)) return false;\n\n        if (IncludesUpper && !UpperRegex.IsMatch(stringValue)) return false;\n\n        return true;\n    }\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Converters/AllTrueValueConverter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class AllTrueValueConverter : IMultiValueConverter\n{\n    public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)\n    {\n        return values.All(x => x is bool boolValue && boolValue);\n    }\n\n    public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Converters/BoolToOpacityValueConverter.cs",
    "content": "﻿using System.Collections;\n\nnamespace MAUIsland.Core;\n\npublic class BoolToOpacityValueConverter : IValueConverter\n{\n    private readonly bool inversed;\n\n    public BoolToOpacityValueConverter(bool inversed = false)\n    {\n        this.inversed = inversed;\n    }\n\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        var opacityWhenTrue = parameter is double opacity ? opacity : 1;\n        var boolean = value is bool b && b;\n\n        return inversed && boolean\n            || !inversed && !boolean\n            ? 0\n            : opacityWhenTrue;\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n\npublic class AllBoolsToOpacityValueConverter : BoolToOpacityValueConverter, IMultiValueConverter\n{\n    private readonly bool inversed;\n\n    public AllBoolsToOpacityValueConverter(bool inversed = false)\n    {\n        this.inversed = inversed;\n    }\n\n    public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)\n    {\n        return Convert(values.All(x => x is bool b && (inversed && !b || !inversed && b)), targetType, parameter, culture);\n    }\n\n    public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n\npublic class AnyFalseToOpacityValueConverter : BoolToOpacityValueConverter, IMultiValueConverter\n{\n    public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)\n    {\n        return Convert(values.Any(x => x is not bool b || !b), targetType, parameter, culture);\n    }\n\n    public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n\npublic class FirstItemValueConverter : IValueConverter, IMultiValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        if (value is IEnumerable items)\n        {\n            var enumerator = items.GetEnumerator();\n\n            if (enumerator.MoveNext())\n            {\n                return enumerator.Current;\n            }\n        }\n\n        return null;\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n\n    public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)\n    {\n        return values?.FirstOrDefault(x => x != null);\n    }\n\n    public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Converters/DateTimeToSimpleDateTimeStringConverter.cs",
    "content": "﻿\nnamespace MAUIsland.Core;\n\npublic class DateTimeToSimpleDateTimeStringConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        if (value is DateTime dateTime)\n            return dateTime.ToString(\"dd/MM/yyyy\");\n        \n        return null;\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Converters/HexToSolidColorBrushConverter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class HexToSolidColorBrushConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        var hex = value as String;\n\n        if (hex != null && !string.IsNullOrWhiteSpace(hex) && !string.IsNullOrEmpty(hex))\n        {\n            hex = hex.Replace(\"#\", string.Empty);\n            // from #RRGGBB string\n            var r = (byte)System.Convert.ToUInt32(hex.Substring(0, 2), 16);\n            var g = (byte)System.Convert.ToUInt32(hex.Substring(2, 2), 16);\n            var b = (byte)System.Convert.ToUInt32(hex.Substring(4, 2), 16);\n\n            return Color.FromRgb(r, g, b);\n        }\n        return null;\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Converters/ImageSourceToBoolConverter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class ImageSourceToBoolConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        var imageSource = (ImageSource)value;\n        return imageSource is null ? false : true;\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Converters/LineBreakModeEnumToStringConverter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class LineBreakModeEnumToStringConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n\n        if (value is int)\n        {\n            return (LineBreakMode)value;\n        }\n        return LineBreakMode.WordWrap;\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        if (value is LineBreakMode)\n        {\n            return (int)value;\n        }\n        return 0;\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Converters/RatioValueConverter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class RatioValueConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        if (value is double size && size > 0 && parameter is double ratio && ratio > 0)\n        {\n            return new GridLength(size * ratio, GridUnitType.Absolute);\n        }\n\n        return new GridLength(0, GridUnitType.Absolute);\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Converters/StringTernaryOperatorConverter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class StringTernaryOperatorConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        if (value is bool boolValue &&\n            parameter is string[] messages)\n        {\n            return boolValue ? messages[0] : messages[1];\n        }\n\n        return string.Empty;\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Converters/StringToColorConverter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class StringToColorConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        var stringValue = value as String;\n\n        if (stringValue != null && !string.IsNullOrWhiteSpace(stringValue) && !string.IsNullOrEmpty(stringValue))\n        {\n            var color = System.Drawing.Color.FromName(stringValue);\n            return Color.FromRgb(color.R, color.G, color.B);\n        }\n        return null;\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Extensions/TaskHelpers.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic static class TaskHelpers\n{\n    public static void FireAndForget(this Task task, bool configureAwait = false)\n    {\n        task.ConfigureAwait(configureAwait);\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/ContentViews/BrandIconContentView.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.BrandIconContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:skia=\"clr-namespace:SkiaSharp.Extended.UI.Controls;assembly=SkiaSharp.Extended.UI\"\n    xmlns:skiaConverters=\"clr-namespace:SkiaSharp.Extended.UI.Controls.Converters;assembly=SkiaSharp.Extended.UI\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\"\n    x:DataType=\"core:BrandIconContentView\">\n\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"OpenInNewWindowsIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_panel_separate_window_20_regular}\"\n            Color=\"{x:StaticResource White}\" />\n\n        <skiaConverters:SKLottieImageSourceConverter x:Key=\"SKLottieImageSourceConverter\" />\n\n        <core:ImageSourceToBoolConverter x:Key=\"ImageSourceToBoolConverter\" />\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"10\">\n        <ImageButton\n            Padding=\"4\"\n            BackgroundColor=\"Black\"\n            Clicked=\"Detail_Clicked\"\n            CornerRadius=\"4\"\n            HeightRequest=\"80\"\n            IsVisible=\"{x:Binding ComponentData.IconUrl,\n                                  Source={x:Reference root},\n                                  Converter={x:StaticResource ImageSourceToBoolConverter}}\"\n            Source=\"{x:Binding ComponentData.IconUrl,\n                               Source={x:Reference root},\n                               Mode=OneWay}\"\n            WidthRequest=\"80\">\n            <!--<FlyoutBase.ContextFlyout>\n                <MenuFlyout>\n                    <MenuFlyoutItem\n                        Clicked=\"DetailInNewWindow_Clicked\"\n                        IconImageSource=\"{x:StaticResource OpenNewWindowIcon}\"\n                        IsEnabled=\"False\"\n                        Text=\"Open in new window\" />\n                </MenuFlyout>\n            </FlyoutBase.ContextFlyout>-->\n        </ImageButton>\n        <!--\n            Source=\"{x:Binding ComponentData.LottieUrl,\n            Source={x:Reference root},\n            Mode=OneWay,\n            Converter={x:StaticResource SKLottieImageSourceConverter}}\"\n        -->\n        <Frame\n            Padding=\"5\"\n            BackgroundColor=\"Black\"\n            CornerRadius=\"4\"\n            IsVisible=\"{x:Binding ComponentData.LottieUrl,\n                                  Source={x:Reference root},\n                                  Converter={toolkit:IsStringNotNullOrEmptyConverter}}\"\n            MaximumHeightRequest=\"80\"\n            MaximumWidthRequest=\"80\">\n            <skia:SKLottieView\n                HeightRequest=\"68\"\n                HorizontalOptions=\"Center\"\n                RepeatCount=\"-1\"\n                SemanticProperties.Description=\"Cute dot net bot waving hi to you!\"\n                Source=\"dotnetbot.json\"\n                WidthRequest=\"68\">\n                <skia:SKLottieView.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"TapGestureRecognizer_Tapped\" />\n                </skia:SKLottieView.GestureRecognizers>\n                <!--<FlyoutBase.ContextFlyout>\n                <MenuFlyout>\n                    <MenuFlyoutItem\n                        Clicked=\"DetailInNewWindow_Clicked\"\n                        IconImageSource=\"{x:StaticResource OpenNewWindowIcon}\"\n                        IsEnabled=\"False\"\n                        Text=\"Open in new window\" />\n                </MenuFlyout>\n            </FlyoutBase.ContextFlyout>-->\n            </skia:SKLottieView>\n        </Frame>\n        <Label\n            FontSize=\"12\"\n            HorizontalOptions=\"Center\"\n            Text=\"{x:Binding ComponentData.Title,\n                             Source={x:Reference root},\n                             Mode=OneWay}\"\n            TextColor=\"{x:Static core:AppColors.White}\" />\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/ContentViews/BrandIconContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\nusing System.Windows.Input;\n\npublic partial class BrandIconContentView : ContentView\n{\n\n    #region [CTor]\n    public BrandIconContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [Delegates]\n    public delegate void DetailEventHandler(ControlGroupInfo control);\n\n    public delegate void DetailInNewWindowEventHandler(ControlGroupInfo control);\n    #endregion\n\n    #region [Events]\n    public event DetailEventHandler DetailClicked;\n\n    public event DetailInNewWindowEventHandler DetailInNewWindowClicked;\n    #endregion\n\n    #region [Bindable Properties]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ControlGroupInfo),\n        typeof(BrandIconContentView),\n        default(ControlGroupInfo)\n    );\n\n    public ICommand TapCommand => new Command<string>(async (url) => await Launcher.OpenAsync(url));\n    #endregion\n\n    #region [Properties]\n    public ControlGroupInfo ComponentData\n    {\n        get => (ControlGroupInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n\n    #region [Event Handlers]\n    private void Detail_Clicked(object sender, EventArgs e)\n    {\n        DetailClicked?.Invoke(ComponentData);\n    }\n\n    private void DetailInNewWindow_Clicked(object sender, EventArgs e)\n    {\n        DetailInNewWindowClicked?.Invoke(ComponentData);\n    }\n\n    private void TapGestureRecognizer_Tapped(object sender, TappedEventArgs e)\n    {\n        DetailClicked?.Invoke(ComponentData);\n    }\n\n    private void MenuFlyoutItem_Clicked(object sender, EventArgs e)\n    {\n        DetailInNewWindowClicked?.Invoke(ComponentData);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/ContentViews/ControlCardContentView.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.ControlCardContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:mct=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\"\n    x:DataType=\"core:ControlCardContentView\">\n\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"OpenInNewWindowsIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_panel_separate_window_20_regular}\"\n            Color=\"#242424\" />\n    </ContentView.Resources>\n\n    <Border\n        Padding=\"12\"\n        BackgroundColor=\"#323232\"\n        HeightRequest=\"290\"\n        Stroke=\"Black\"\n        StrokeShape=\"RoundRectangle 28,28,28,28\"\n        StrokeThickness=\"5\"\n        WidthRequest=\"374\">\n        <Grid\n            ColumnDefinitions=\"266, 50\"\n            ColumnSpacing=\"12\"\n            HorizontalOptions=\"Center\"\n            RowDefinitions=\"50, 134, 48\"\n            RowSpacing=\"12\"\n            VerticalOptions=\"Center\">\n            <VerticalStackLayout Grid.RowSpan=\"2\" Spacing=\"4\">\n                <Label\n                    Margin=\"10,0,0,0\"\n                    FontSize=\"18\"\n                    Text=\"{x:Binding ComponentData.ControlName,\n                                     Source={x:Reference root}}\"\n                    TextColor=\"{x:StaticResource White}\" />\n                <Frame\n                    Padding=\"10\"\n                    BackgroundColor=\"#1f1f1f\"\n                    CornerRadius=\"12\"\n                    HeightRequest=\"165\"\n                    WidthRequest=\"266\">\n                    <Label\n                        FontSize=\"14\"\n                        LineBreakMode=\"CharacterWrap\"\n                        LineHeight=\"1.55\"\n                        MaxLines=\"10\"\n                        Text=\"{x:Binding ComponentData.ControlDetail,\n                                         Source={x:Reference root}}\"\n                        TextColor=\"{x:Static core:AppColors.White}\"\n                        ToolTipProperties.Text=\"{x:Binding ComponentData.ControlDetail,\n                                                           Source={x:Reference root}}\" />\n                </Frame>\n            </VerticalStackLayout>\n            <Button\n                Grid.Row=\"2\"\n                BackgroundColor=\"#ac99ea\"\n                Clicked=\"Detail_Clicked\"\n                CornerRadius=\"12\"\n                FontSize=\"16\"\n                HorizontalOptions=\"Fill\"\n                Text=\"Detail\"\n                TextColor=\"#242424\"\n                VerticalOptions=\"Fill\">\n                <Button.Behaviors>\n                    <mct:AnimationBehavior EventName=\"Clicked\">\n                        <mct:AnimationBehavior.AnimationType>\n                            <core:SampleScaleAnimation Easing=\"{x:Static Easing.Linear}\" Length=\"100\" />\n                        </mct:AnimationBehavior.AnimationType>\n                    </mct:AnimationBehavior>\n                </Button.Behaviors>\n            </Button>\n            <Image\n                Grid.Column=\"1\"\n                HeightRequest=\"50\"\n                HorizontalOptions=\"Center\"\n                Source=\"{x:Binding ComponentData.ControlIcon,\n                                   Source={x:Reference root}}\"\n                VerticalOptions=\"Center\"\n                WidthRequest=\"50\" />\n            <VerticalStackLayout\n                Grid.Row=\"1\"\n                Grid.Column=\"1\"\n                Spacing=\"24\">\n                <ImageButton\n                    Padding=\"{x:OnPlatform WinUI=5,\n                                           Android=0,\n                                           iOS=2}\"\n                    BackgroundColor=\"Transparent\"\n                    Command=\"{x:Binding TapCommand,\n                                        Source={x:Reference root}}\"\n                    CommandParameter=\"{x:Binding ComponentData.GitHubUrl,\n                                                 Source={x:Reference root}}\"\n                    HeightRequest=\"32\"\n                    Source=\"github_logo.png\"\n                    ToolTipProperties.Text=\"Github: Source code\"\n                    WidthRequest=\"32\" />\n                <ImageButton\n                    Padding=\"{x:OnPlatform WinUI=5,\n                                           Android=0,\n                                           iOS=2}\"\n                    BackgroundColor=\"Transparent\"\n                    Command=\"{x:Binding TapCommand,\n                                        Source={x:Reference root}}\"\n                    CommandParameter=\"{x:Binding ComponentData.DocumentUrl,\n                                                 Source={x:Reference root}}\"\n                    HeightRequest=\"32\"\n                    Source=\"microsoft.png\"\n                    ToolTipProperties.Text=\"Microsoft Learn: Official document\"\n                    WidthRequest=\"32\" />\n            </VerticalStackLayout>\n            <ImageButton\n                Grid.Row=\"2\"\n                Grid.Column=\"1\"\n                Padding=\"{x:OnPlatform WinUI=8,\n                                       Android=8,\n                                       iOS=8}\"\n                BackgroundColor=\"#ac99ea\"\n                Clicked=\"DetailInNewWindow_Clicked\"\n                CornerRadius=\"12\"\n                IsEnabled=\"False\"\n                Source=\"{x:StaticResource OpenInNewWindowsIcon}\" />\n        </Grid>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/ContentViews/ControlCardContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\nusing System.Windows.Input;\n\npublic partial class ControlCardContentView : ContentView\n{\n\n    #region [ CTor ]\n    public ControlCardContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Delegates ]\n    public delegate void DetailEventHandler(IGalleryCardInfo control);\n\n    public delegate void DetailInNewWindowEventHandler(IGalleryCardInfo control);\n    #endregion\n\n    #region [ Event Handlers ]\n    public event DetailEventHandler DetailClicked;\n\n    public event DetailInNewWindowEventHandler DetailInNewWindowClicked;\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(IGalleryCardInfo),\n        typeof(ControlCardContentView),\n        default(IGalleryCardInfo)\n    );\n\n    public ICommand TapCommand => new Command<string>(async (url) => await Launcher.OpenAsync(url));\n    #endregion\n\n    #region [ Properties ]\n    public IGalleryCardInfo ComponentData\n    {\n        get => (IGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n    private void Detail_Clicked(object sender, EventArgs e)\n    {\n        DetailClicked?.Invoke(ComponentData);\n    }\n\n    private void DetailInNewWindow_Clicked(object sender, EventArgs e)\n    {\n        DetailInNewWindowClicked?.Invoke(ComponentData);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/ContentViews/MaterialUICardContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.MaterialUICardContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\">\n    <ContentView.Resources>\n        <Style\n            x:Key=\"MaterialUICardStyle\"\n            BaseResourceKey=\"FilledCardStyle\"\n            TargetType=\"mdc:Card\">\n            <Setter Property=\"HeightRequest\" Value=\"200\" />\n            <Setter Property=\"WidthRequest\" Value=\"370\" />\n        </Style>\n\n        <Style x:Key=\"GridContainerStyle\" TargetType=\"Grid\">\n            <Setter Property=\"RowDefinitions\">\n                <Setter.Value>\n                    <RowDefinitionCollection>\n                        <RowDefinition Height=\"40\" />\n                        <RowDefinition Height=\"70\" />\n                        <RowDefinition Height=\"60\" />\n                    </RowDefinitionCollection>\n                </Setter.Value>\n            </Setter>\n        </Style>\n\n\n        <Style x:Key=\"MaterialUICardTitleStyle\" TargetType=\"Label\">\n            <Setter Property=\"Margin\" Value=\"10,10,0,0\" />\n            <Setter Property=\"FontAttributes\" Value=\"Bold\" />\n            <Setter Property=\"FontSize\" Value=\"20\" />\n            <Setter Property=\"HorizontalOptions\" Value=\"Start\" />\n            <Setter Property=\"VerticalOptions\" Value=\"Start\" />\n            <Setter Property=\"Text\" Value=\"{x:Binding ComponentData.ControlName, Source={x:Reference root}}\" />\n        </Style>\n\n        <Style x:Key=\"ControlIconStyle\" TargetType=\"mdc:IconButton\">\n            <Setter Property=\"HorizontalOptions\" Value=\"End\" />\n            <Setter Property=\"IconData\" Value=\"{x:Binding ComponentData.MaterialIcon, Source={x:Reference root}}\" />\n        </Style>\n\n        <Style x:Key=\"ControlDetailStyle\" TargetType=\"Label\">\n            <Setter Property=\"Grid.Row\" Value=\"1\" />\n            <Setter Property=\"Margin\" Value=\"10,5,0,0\" />\n            <Setter Property=\"HorizontalOptions\" Value=\"Start\" />\n            <Setter Property=\"MaximumWidthRequest\" Value=\"330\" />\n            <Setter Property=\"Text\" Value=\"{Binding ComponentData.ControlDetail, Source={x:Reference root}}\" />\n            <Setter Property=\"VerticalOptions\" Value=\"Start\" />\n        </Style>\n\n        <Style x:Key=\"NavigationButtonsContainerStyle\" TargetType=\"HorizontalStackLayout\">\n            <Setter Property=\"Grid.Row\" Value=\"2\" />\n            <Setter Property=\"Margin\" Value=\"10\" />\n            <Setter Property=\"Spacing\" Value=\"2\" />\n        </Style>\n\n        <Style\n            x:Key=\"DetailButtonStyle\"\n            BaseResourceKey=\"OutlinedButtonStyle\"\n            TargetType=\"mdc:Button\">\n            <Setter Property=\"Text\" Value=\"Detail\" />\n        </Style>\n\n        <Style\n            x:Key=\"DocumentReferenceButtonStyle\"\n            BaseResourceKey=\"TextButtonStyle\"\n            TargetType=\"mdc:Button\">\n            <Setter Property=\"Command\" Value=\"{Binding TapCommand, Source={x:Reference root}}\" />\n            <Setter Property=\"CommandParameter\" Value=\"{Binding ComponentData.DocumentUrl, Source={x:Reference root}}\" />\n            <Setter Property=\"Text\" Value=\"Original Document\" />\n        </Style>\n\n\n    </ContentView.Resources>\n\n    <mdc:Card Style=\"{x:StaticResource MaterialUICardStyle}\">\n        <Grid Style=\"{x:StaticResource GridContainerStyle}\">\n            <Label Style=\"{x:StaticResource MaterialUICardTitleStyle}\" />\n            <mdc:IconButton Style=\"{x:StaticResource ControlIconStyle}\" />\n            <Label Style=\"{x:StaticResource ControlDetailStyle}\" />\n            <HorizontalStackLayout Style=\"{x:StaticResource NavigationButtonsContainerStyle}\">\n                <mdc:Button Clicked=\"Detail_Clicked\" Style=\"{x:StaticResource DetailButtonStyle}\" />\n                <mdc:Button Style=\"{x:StaticResource DocumentReferenceButtonStyle}\" />\n            </HorizontalStackLayout>\n            <mdc:IconButton\n                HorizontalOptions=\"End\"\n                IconData=\"{x:Binding ComponentData.MaterialIcon,\n                                     Source={x:Reference root}}\"\n                VerticalOptions=\"Start\" />\n        </Grid>\n    </mdc:Card>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/ContentViews/MaterialUICardContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class MaterialUICardContentView : ContentView\n{\n    #region [ CTor ]\n\n    public MaterialUICardContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Delegates ]\n    public delegate void DetailEventHandler(IMaterialUIGalleryCardInfo control);\n\n    public delegate void DetailInNewWindowEventHandler(IMaterialUIGalleryCardInfo control);\n    #endregion\n\n    #region [ Event Handlers ]\n    public event DetailEventHandler DetailClicked;\n\n    public event DetailInNewWindowEventHandler DetailInNewWindowClicked;\n    #endregion\n\n    #region [ Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n                    nameof(ComponentData),\n                    typeof(IMaterialUIGalleryCardInfo),\n                    typeof(MaterialUICardContentView),\n                    default(IMaterialUIGalleryCardInfo)\n                );\n\n    public IMaterialUIGalleryCardInfo ComponentData\n    {\n        get => (IMaterialUIGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void Detail_Clicked(object sender, TouchEventArgs e)\n    {\n        DetailClicked?.Invoke(ComponentData);\n    }\n\n    private void DetailInNewWindow_Clicked(object sender, EventArgs e)\n    {\n        DetailInNewWindowClicked?.Invoke(ComponentData);\n    }\n\n    public ICommand TapCommand => new Command<string>(async (url) => await Launcher.OpenAsync(url));\n    #endregion\n\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/ContentViews/SyncfusionCardContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.SyncfusionCardContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\">\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"OpenInNewWindowsIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_panel_separate_window_20_regular}\"\n            Color=\"{x:StaticResource White}\" />\n    </ContentView.Resources>\n\n    <Frame\n        Padding=\"0\"\n        BackgroundColor=\"#323232\"\n        CornerRadius=\"2\"\n        HasShadow=\"True\"\n        WidthRequest=\"340\">\n        <Grid>\n            <Ellipse\n                Margin=\"-150,-150,0,0\"\n                Fill=\"#ff8900\"\n                HeightRequest=\"250\"\n                HorizontalOptions=\"Start\"\n                VerticalOptions=\"Start\"\n                WidthRequest=\"270\" />\n            <Grid\n                Margin=\"10\"\n                ColumnDefinitions=\"30,280\"\n                ColumnSpacing=\"10\">\n                <Image\n                    Margin=\"0,5,0,0\"\n                    HeightRequest=\"30\"\n                    Source=\"{x:Binding ComponentData.ControlIcon,\n                                       Source={x:Reference root}}\"\n                    VerticalOptions=\"Start\"\n                    WidthRequest=\"30\" />\n\n\n                <VerticalStackLayout\n                    Grid.Column=\"1\"\n                    HorizontalOptions=\"Fill\"\n                    Spacing=\"10\"\n                    VerticalOptions=\"Center\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Subtitle\"\n                        Text=\"{x:Binding ComponentData.ControlName,\n                                         Source={x:Reference root}}\"\n                        TextColor=\"{x:StaticResource White}\" />\n                    <Label\n                        FontSize=\"Body\"\n                        HeightRequest=\"70\"\n                        MaxLines=\"3\"\n                        Text=\"{x:Binding ComponentData.ControlDetail,\n                                         Source={x:Reference root}}\"\n                        TextColor=\"{x:StaticResource White}\"\n                        ToolTipProperties.Text=\"{x:Binding ComponentData.ControlDetail,\n                                                           Source={x:Reference root}}\" />\n                    <Grid ColumnDefinitions=\"*,5, 50\">\n                        <Button\n                            BackgroundColor=\"#ff8900\"\n                            Clicked=\"Detail_Clicked\"\n                            CornerRadius=\"2\"\n                            FontAttributes=\"Bold\"\n                            Text=\"Detail\"\n                            TextColor=\"{x:StaticResource White}\" />\n\n                        <ImageButton\n                            Grid.Column=\"2\"\n                            BackgroundColor=\"#ff8900\"\n                            Clicked=\"DetailInNewWindow_Clicked\"\n                            CornerRadius=\"2\"\n                            Source=\"{x:StaticResource OpenInNewWindowsIcon}\" />\n                    </Grid>\n                </VerticalStackLayout>\n            </Grid>\n            <VerticalStackLayout HorizontalOptions=\"Start\" VerticalOptions=\"End\">\n                <ImageButton\n                    Padding=\"{x:OnPlatform WinUI=10,\n                                           Android=10,\n                                           iOS=5}\"\n                    BackgroundColor=\"Transparent\"\n                    Command=\"{x:Binding TapCommand,\n                                        Source={x:Reference root}}\"\n                    CommandParameter=\"{x:Binding ComponentData.GitHubUrl,\n                                                 Source={x:Reference root}}\"\n                    HeightRequest=\"50\"\n                    Source=\"github_logo.png\"\n                    ToolTipProperties.Text=\"Github: Source code\"\n                    WidthRequest=\"50\" />\n                <ImageButton\n                    Padding=\"{x:OnPlatform WinUI=10,\n                                           Android=10,\n                                           iOS=5}\"\n                    BackgroundColor=\"Transparent\"\n                    Command=\"{x:Binding TapCommand,\n                                        Source={x:Reference root}}\"\n                    CommandParameter=\"{x:Binding ComponentData.DocumentUrl,\n                                                 Source={x:Reference root}}\"\n                    HeightRequest=\"50\"\n                    Source=\"syncfusionlogo.png\"\n                    ToolTipProperties.Text=\"Microsoft Learn: Official document\"\n                    WidthRequest=\"50\" />\n            </VerticalStackLayout>\n        </Grid>\n    </Frame>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/ContentViews/SyncfusionCardContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SyncfusionCardContentView : ContentView\n{\n    #region [CTor]\n    public SyncfusionCardContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [Delegates]\n    public delegate void DetailEventHandler(IGalleryCardInfo control);\n\n    public delegate void DetailInNewWindowEventHandler(IGalleryCardInfo control);\n    #endregion\n\n    #region [Event Handlers]\n    public event DetailEventHandler DetailClicked;\n\n    public event DetailInNewWindowEventHandler DetailInNewWindowClicked;\n    #endregion\n\n    #region [Bindable Properties]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(IGalleryCardInfo),\n        typeof(ControlCardContentView),\n        default(IGalleryCardInfo)\n    );\n\n    public ICommand TapCommand => new Command<string>(async (url) => await Launcher.OpenAsync(url));\n    #endregion\n\n    #region [Properties]\n    public IGalleryCardInfo ComponentData\n    {\n        get => (IGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n\n    #region [Event Handlers]\n    private void Detail_Clicked(object sender, EventArgs e)\n    {\n        DetailClicked?.Invoke(ComponentData);\n    }\n\n    private void DetailInNewWindow_Clicked(object sender, EventArgs e)\n    {\n        DetailInNewWindowClicked?.Invoke(ComponentData);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Core/IBuiltInGalleryCardInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic interface IBuiltInGalleryCardInfo : IGalleryCardInfo\n{\n    string GitHubAuthorIssueName { get; }\n\n    string GitHubRepositoryIssueName { get; }\n\n    List<string> GitHubIssueLabels { get; }\n\n    BuiltInGalleryCardStatus Status { get; }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Core/ICommunityToolkitGalleryCardInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic interface ICommunityToolkitGalleryCardInfo : IGalleryCardInfo\n{\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Core/IGalleryCardInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic interface IGalleryCardInfo\n{\n    ImageSource ControlIcon { get; }\n    string ControlName { get; }\n    string ControlDetail { get; }\n    string ControlRoute { get; }\n    string GitHubUrl { get; }\n    string DocumentUrl { get; }\n    string GroupName { get; }\n    GalleryCardType CardType { get; }\n    GalleryCardStatus CardStatus { get; }\n    DateTime LastUpdate { get; }\n    List<string> DoList { get; }\n    List<string> DontList { get; }\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Core/IGalleryPage.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic interface IGalleryPage\n{\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Core/IGithubGalleryCardInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic interface IGithubGalleryCardInfo : IGalleryCardInfo\n{\n    string RepositoryName { get; }\n    string AuthorName { get; }\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Core/IMaterialUIGalleryCardInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic interface IMaterialUIGalleryCardInfo : IGalleryCardInfo\n{\n    string MaterialIcon { get; }\n    List<PlatformInfo> SupportedPlatformsInfo { get; }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/DataTemplateSelectors/BrandCardTemplateSelector.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class BrandCardTemplateSelector : DataTemplateSelector\n{\n    public DataTemplate BuiltInCardTemplate { get; set; }\n    public DataTemplate GithubCardTemplate { get; set; }\n    public DataTemplate MaterialUICardTemplate { get; set; }\n    public DataTemplate SyncfustionCardTemplate { get; set; }\n    protected override DataTemplate OnSelectTemplate(object item, BindableObject container)\n    {\n        var controlGroup = ((IGalleryCardInfo)item).GroupName;\n        switch (controlGroup)\n        {\n            case ControlGroupInfo.SyncfusionControls:\n                return SyncfustionCardTemplate;\n            case ControlGroupInfo.GitHubCommunity:\n                return GithubCardTemplate;\n            case ControlGroupInfo.MaterialComponent:\n                return MaterialUICardTemplate;\n            default:\n                return BuiltInCardTemplate;\n        }\n    }\n\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Enums/BuiltInGalleryCardStatus.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic enum BuiltInGalleryCardStatus\n{\n    All, Stable, Buggy, ExtremelyBuggy, Experimental, Deprecated, Unverified\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Enums/ControlGroupInfoImportantLevel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic enum ControlGroupInfoImportantLevel\n{\n    Info, Warning, Error\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Enums/GalleryCardStatus.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic enum GalleryCardStatus\n{\n    Completed, NotCompleted\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Enums/GalleryCardType.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic enum GalleryCardType\n{\n    Control, Converter, Layout, Behavior, Extension, Helper, Other\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Models/ControlGroupInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class ControlGroupInfo : BaseModel\n{\n    [ObservableProperty]\n    string name;\n\n    [ObservableProperty]\n    string author;\n\n    [ObservableProperty]\n    string description;\n\n    [ObservableProperty]\n    string title;\n\n    [ObservableProperty]\n    string version;\n\n    [ObservableProperty]\n    string providerUrl;\n\n    [ObservableProperty]\n    ImageSource iconUrl;\n\n    [ObservableProperty]\n    ImageSource banner;\n\n    [ObservableProperty]\n    string lottieUrl;\n\n    [ObservableProperty]\n    bool isVisibile = true;\n\n    [ObservableProperty]\n    Color brandColor;\n\n    [ObservableProperty]\n    Color buttonTextColor;\n\n    [ObservableProperty]\n    ControlGroupInfoImportant? important;\n\n    [ObservableProperty]\n    string microsoftStoreLink;\n\n    public const string BuiltInControls = nameof(BuiltInControls);\n    public const string SyncfusionControls = nameof(SyncfusionControls);\n    public const string DevExpressControls = nameof(DevExpressControls);\n    public const string CommunityToolkit = nameof(CommunityToolkit);\n    public const string GitHubCommunity = nameof(GitHubCommunity);\n    public const string MaterialComponent = nameof(MaterialComponent);\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Models/ControlGroupInfoImportant.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class ControlGroupInfoImportant : BaseModel\n{\n    [ObservableProperty]\n    string content;\n\n    [ObservableProperty]\n    ImageSource? attachImage;\n\n    [ObservableProperty]\n    ControlGroupInfoImportantLevel level;\n\n    [ObservableProperty]\n    string additionalLink;\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Models/ControlIssueModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class ControlIssueModel : BaseModel\n{\n    [ObservableProperty]\n    long issueId;\n\n    [ObservableProperty]\n    string title;\n\n    [ObservableProperty]\n    string avatarUrl;\n\n    [ObservableProperty]\n    string issueLinkUrl;\n\n    [ObservableProperty]\n    string mileStone;\n\n    [ObservableProperty]\n    string ownerName;\n\n    [ObservableProperty]\n    DateTime createdDate;\n\n    [ObservableProperty]\n    DateTime lastUpdated;\n\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Models/PlatformInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class PlatformInfo : BaseModel\n{\n    [ObservableProperty]\n    string name;\n    [ObservableProperty]\n    string logo;\n    [ObservableProperty]\n    string tooltip;\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/BaseBuiltInPageControlViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class BaseBuiltInPageControlViewModel : NavigationAwareBaseViewModel\n{\n    #region [ Fields ]\n\n    protected DiscordRpcClient DiscordRpcClient { get; }\n    protected IGitHubService GitHubService { get; }\n    protected IGitHubIssueLocalDbService GitHubIssueLocalDbService { get; }\n    #endregion\n\n    #region [ CTor ]\n\n    public BaseBuiltInPageControlViewModel(IAppNavigator appNavigator,\n                                           IGitHubService gitHubService,\n                                           DiscordRpcClient discordRpcClient,\n                                           IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                               : base(appNavigator)\n    {\n        GitHubService = gitHubService;\n        DiscordRpcClient = discordRpcClient;\n        GitHubIssueLocalDbService = gitHubIssueLocalDbService;\n\n        // Subscribe to the Pushed event\n        Shell.Current.Navigated += OnShellNavigated;\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string emptyViewText = \"No issues found for this control\";\n\n    [ObservableProperty]\n    string gitHubAPIRateLimit = \"https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api?apiVersion=2022-11-28\";\n\n    [ObservableProperty]\n    bool isBusy;\n\n    [ObservableProperty]\n    IBuiltInGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    ObservableCollection<ControlIssueModel> controlIssues = default!;\n\n    [ObservableProperty]\n    ControlIssueModel selectedControlIssue = default!;\n\n    #endregion\n\n    #region [ Methods ]\n\n    public async Task RefreshControlIssues(bool forced,\n                                           string controlName,\n                                           string gitHubAuthorName,\n                                           string gitHubrepositoryName,\n                                           IEnumerable<string> labels)\n    {\n        if (IsBusy)\n            return;\n\n        IsBusy = true;\n\n        var now = DateTime.UtcNow;\n\n        // First: sync from local db.\n        // TODO: how to get control name?\n        var allLocalDbIssues = await GetIssueByControlNameFromLocalDb(controlName);\n\n        // If localdb version is not null & not outdated => use local version.\n        if (allLocalDbIssues != null && allLocalDbIssues.Any() && !allLocalDbIssues.Any(x => (now - x.LastUpdated).TotalHours > 1))\n        {\n            if (ControlIssues is null || forced)\n            {\n                ControlIssues = new(allLocalDbIssues.Select(x => new ControlIssueModel()\n                {\n                    IssueId = x.IssueId,\n                    Title = x.Title,\n                    IssueLinkUrl = x.IssueLinkUrl,\n                    MileStone = x.MileStone,\n                    OwnerName = x.OwnerName,\n                    AvatarUrl = x.UserAvatarUrl,\n                    CreatedDate = x.CreatedDate,\n                    LastUpdated = x.LastUpdated\n                }));\n            }\n            IsBusy = false;\n\n            // Done.\n            return;\n        }\n\n        // If localdb does not have issue info, or info outdated => sync from GitHub & save.\n        var result = await GitHubService.GetGitHubIssuesByLabels(gitHubAuthorName,\n                                                                 gitHubrepositoryName,\n                                                                 labels);\n\n\n        if (result.IsT0) // Check if result is ServiceSuccess\n        {\n            var issues = result.AsT0.AttachedData as IEnumerable<GitHubIssueModel>;\n\n            // Save to localdb.\n            foreach (var issue in issues)\n            {\n                await UpdateLocalIssue(issue, controlName);\n            }\n\n            IsBusy = false;\n\n            if (ControlIssues is null || forced)\n            {\n                ControlIssues = new(issues.Select(x => new ControlIssueModel()\n                {\n                    IssueId = x.Id,\n                    Title = x.Title,\n                    IssueLinkUrl = x.HtmlUrl,\n                    MileStone = x.Milestone is null ? \"No mile stone\" : x.Milestone.Title,\n                    OwnerName = x.User.Login,\n                    AvatarUrl = x.User.AvatarUrl,\n                    CreatedDate = x.CreatedAt.DateTime,\n                    LastUpdated = x.UpdatedAt is null ? x.CreatedAt.DateTime : x.UpdatedAt.Value.DateTime\n                }));\n            }\n        }\n        else\n        {\n            IsBusy = false;\n\n            var error = result.AsT1;\n            EmptyViewText = error.ErrorDetail;\n            await AppNavigator.ShowSnackbarAsync(error.ErrorDetail,\n                                                 async () =>\n                                                 {\n                                                     await AppNavigator.OpenUrlAsync(GitHubAPIRateLimit);\n                                                 },\n                                                 \"Visit GitHub API Rate Limits Policies\");\n        }\n    }\n\n    public async Task<IEnumerable<GitHubIssueLocalDbModel>> GetIssueByControlNameFromLocalDb(string controlName)\n    {\n        try\n        {\n            var now = DateTime.UtcNow;\n\n            var result = await GitHubIssueLocalDbService.GetByControlNameAsync(controlName);\n            return result is not null ?\n                        result\n                        :\n                        new List<GitHubIssueLocalDbModel>().AsEnumerable();\n        }\n        catch (Exception e)\n        {\n            await AppNavigator.ShowSnackbarAsync(e.Message, null, null);\n            return new List<GitHubIssueLocalDbModel>().AsEnumerable();\n        }\n    }\n\n    public async Task UpdateLocalIssue(GitHubIssueModel issue, string controlName)\n    {\n        try\n        {\n            var now = DateTime.UtcNow;\n\n            var localIssue = await GitHubIssueLocalDbService.GetByIssueUrlAsync(issue.Url);\n\n            if (localIssue is null)\n            {\n                await GitHubIssueLocalDbService.AddAsync(new()\n                {\n                    IssueId = issue.Id,\n                    Title = issue.Title,\n                    IssueLinkUrl = issue.HtmlUrl,\n                    ControlName = controlName,\n                    MileStone = issue.Milestone?.Title,\n                    OwnerName = issue.User?.Login,\n                    UserAvatarUrl = issue.User?.AvatarUrl,\n                    CreatedDate = issue.CreatedAt.DateTime,\n                    LastUpdated = now\n                });\n                return;\n            }\n\n            // Update fields: milestone (TODO: what else?).\n            localIssue.MileStone = issue.Milestone?.Title;\n            localIssue.LastUpdated = now;\n\n            await GitHubIssueLocalDbService.UpdateAsync(localIssue);\n        }\n        catch (Exception e)\n        {\n            await AppNavigator.ShowSnackbarAsync(e.Message, null, null);\n        }\n    }\n\n    public void SetControlInformation(object controlInfo)\n    {\n        ControlInformation = (IBuiltInGalleryCardInfo)controlInfo;\n    }\n\n    private void OnShellNavigated(object sender, ShellNavigatedEventArgs e)\n    {\n        string mauislandLogo = \"https://raw.githubusercontent.com/Strypper/mauisland/main/src/Presentations/Windows/Resources/Images/logos/mauisland_logo.png\";\n        string builtinGalleryLogo = \"https://i.imgur.com/Sr8N6Vm.png\";\n        string storeLink = \"https://www.microsoft.com/store/productId/9NLQ0J5P471L\";\n        string sourceCodeLink = \"https://github.com/Strypper/mauisland\";\n\n        if (ControlInformation is null)\n            return;\n\n        DiscordRpcClient.SetPresence(new RichPresence()\n        {\n            Buttons = new DiscordRPC.Button[]\n            {\n                new() { Label = \"Get the app 🚀\", Url = storeLink },\n                new() { Label = \"Source code 🧑🏽‍💻\", Url = sourceCodeLink },\n            },\n            Details = \"Exploring built-in gallery\",\n            State = $\"Viewing {ControlInformation.ControlName}\",\n            Assets = new Assets()\n            {\n                LargeImageKey = mauislandLogo,\n                LargeImageText = \"MAUIsland\",\n                SmallImageKey = builtinGalleryLogo\n            }\n        });\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/ActivityIndicator/ActivityIndicatorControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class ActivityIndicatorControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(ActivityIndicator);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"ActivityIndicator displays an animation to show that the application is engaged in a lengthy activity. Unlike ProgressBar, ActivityIndicator gives no indication of progress.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Stable;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-activityindicator\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/ActivityIndicator/ActivityIndicatorPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class ActivityIndicatorPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public ActivityIndicatorPageViewModel(IAppNavigator appNavigator,\n                                          IGitHubService gitHubService,\n                                          DiscordRpcClient discordRpcClient,\n                                          IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                            : base(appNavigator,\n                                                    gitHubService,\n                                                    discordRpcClient,\n                                                    gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string groupOfActivityIndicators =\n    \"<HorizontalStackLayout HorizontalOptions=\\\"Start\\\" Spacing=\\\"10\\\">\\r\\n\" +\n    \"    <ActivityIndicator IsRunning=\\\"True\\\" />\\r\\n\" +\n    \"\\r\\n\" +\n    \"    <ActivityIndicator IsRunning=\\\"True\\\" Color=\\\"Green\\\" />\\r\\n\" +\n    \"\\r\\n\" +\n    \"    <ActivityIndicator IsRunning=\\\"True\\\" Color=\\\"Red\\\" />\\r\\n\" +\n    \"\\r\\n\" +\n    \"    <ActivityIndicator IsRunning=\\\"true\\\" Color=\\\"Aqua\\\" />\\r\\n\" +\n    \"</HorizontalStackLayout>\";\n\n\n    [ObservableProperty]\n    string bindingActivityIndicators =\n    \"<VerticalStackLayout Spacing=\\\"5\\\">\\r\\n\" +\n    \"    <HorizontalStackLayout Spacing=\\\"10\\\">\\r\\n\" +\n    \"        <Picker\\r\\n\" +\n    \"            x:Name=\\\"ActivityIndicatorColorPicker\\\"\\r\\n\" +\n    \"            Title=\\\"Choose Color\\\"\\r\\n\" +\n    \"            BackgroundColor=\\\"#512bd4\\\"\\r\\n\" +\n    \"            ItemsSource=\\\"{x:StaticResource ActivityIndicatorColorResource}\\\"\\r\\n\" +\n    \"            VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n    \"        <Switch\\r\\n\" +\n    \"            x:Name=\\\"ActivityIndicatorSwitch\\\"\\r\\n\" +\n    \"            IsToggled=\\\"True\\\"\\r\\n\" +\n    \"            VerticalOptions=\\\"End\\\" />\\r\\n\" +\n    \"    </HorizontalStackLayout>\\r\\n\" +\n    \"    <ActivityIndicator\\r\\n\" +\n    \"        HorizontalOptions=\\\"Start\\\"\\r\\n\" +\n    \"        IsRunning=\\\"{x:Binding Source={x:Reference ActivityIndicatorSwitch},\\r\\n\" +\n    \"                              Path=IsToggled}\\\"\\r\\n\" +\n    \"        Color=\\\"{x:Binding Source={x:Reference ActivityIndicatorColorPicker},\\r\\n\" +\n    \"                          Path=SelectedItem,\\r\\n\" +\n    \"                          Converter={x:StaticResource StringToColorConverter}}\\\" />\\r\\n\" +\n    \"    <core:SourceCodeExpander Code=\\\"{x:Binding BindingActivityIndicators}\\\" />\\r\\n\" +\n    \"</VerticalStackLayout>\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/BlazorWebView/BlazorWebViewControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class BlazorWebViewControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => \"BlazorWebView\";\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_globe_star_20_regular\n    };\n    public string ControlDetail => \"The .NET Multi-platform App UI (.NET MAUI) BlazorWebView is a control that enables you to host a Blazor web app in your .NET MAUI app. These apps, known as Blazor Hybrid apps, enable a Blazor web app to be integrated with platform features and UI controls. The BlazorWebView control can be added to any page of a .NET MAUI app, and pointed to the root of the Blazor app. The Razor components run natively in the .NET process and render web UI to an embedded web view control. In .NET MAUI, Blazor Hybrid apps can run on all the platforms supported by .NET MAUI.\";\n    public string GitHubUrl => \"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Stable;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-blazor\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/BlazorWebView/BlazorWebViewPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class BlazorWebViewPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ CTor ]\n    public BlazorWebViewPageViewModel(IAppNavigator appNavigator,\n                                      IGitHubService gitHubService,\n                                      DiscordRpcClient discordRpcClient,\n                                      IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                            : base(appNavigator,\n                                                    gitHubService,\n                                                    discordRpcClient,\n                                                    gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    int counter;\n\n    [ObservableProperty]\n    ObservableCollection<string> navigationPageName = new()\n    {\n        \"Main Page\",\n        \"Counter\",\n        \"Weather Page\"\n    };\n\n    [ObservableProperty]\n    string blazorWebViewStartPath = \"/blazor-web-view/\";\n\n    [ObservableProperty]\n    string csprojChanges = \"<Project Sdk=\\\"Microsoft.NET.Sdk.Razor\\\">\";\n\n    [ObservableProperty]\n    string blazorWebViewXamlCode = \"<ContentPage xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n             xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n             xmlns:local=\\\"clr-namespace:MyBlazorApp\\\"\\r\\n             x:Class=\\\"MyBlazorApp.MainPage\\\">\\r\\n\\r\\n    <BlazorWebView HostPage=\\\"wwwroot/index.html\\\">\\r\\n        <BlazorWebView.RootComponents>\\r\\n            <RootComponent Selector=\\\"#app\\\" ComponentType=\\\"{x:Type local:Main}\\\" />\\r\\n        </BlazorWebView.RootComponents>\\r\\n    </BlazorWebView>\\r\\n\\r\\n</ContentPage>\";\n\n    [ObservableProperty]\n    string blazorWebViewConfig = \"public static class MauiProgram\\r\\n{\\r\\n    public static MauiApp CreateMauiApp()\\r\\n    {\\r\\n        var builder = MauiApp.CreateBuilder();\\r\\n        builder\\r\\n            .UseMauiApp<App>()\\r\\n            .ConfigureFonts(fonts =>\\r\\n            {\\r\\n                fonts.AddFont(\\\"OpenSans-Regular.ttf\\\", \\\"OpenSansRegular\\\");\\r\\n            });\\r\\n\\r\\n        builder.Services.AddMauiBlazorWebView();\\r\\n#if DEBUG\\r\\n        builder.Services.AddBlazorWebViewDeveloperTools();\\r\\n#endif\\r\\n        // Register any app services on the IServiceCollection object\\r\\n        // e.g. builder.Services.AddSingleton<WeatherForecastService>();\\r\\n\\r\\n        return builder.Build();\\r\\n    }\\r\\n}\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    public void CounterButton()\n    {\n        this.Counter++;\n    }\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    Task NavigatePageAsync(string route)\n        => AppNavigator.NavigateAsync(route);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Border/BorderControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\nclass BorderControlInfo : IBuiltInGalleryCardInfo\n{\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_checkbox_indeterminate_24_regular\n    };\n    public string ControlName => nameof(Border);\n    public string ControlDetail => $\"Border is a container control that draws a border, background, or both, around another control. A Border can only contain one child object. If you want to put a border around multiple objects, wrap them in a container object such as a layout.\";\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Stable;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => GalleryCardStatus.Completed;\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-border\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Border/BorderPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class BorderPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ CTor ]\n    public BorderPageViewModel(IAppNavigator appNavigator,\n                               IGitHubService gitHubService,\n                               DiscordRpcClient discordRpcClient,\n                               IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    bool isEnable = true;\n\n    [ObservableProperty]\n    string roundedRectangleXamlCode =\n        \"StrokeShape=\\\"RoundRectangle 40,0,0,40\\\"\";\n\n    [ObservableProperty]\n    string roundedRectangle2XamlCode =\n        \"<Border.StrokeShape>\\r\\n\" +\n        \"    <RoundRectangle CornerRadius=\\\"40,0,0,40\\\" />\\r\\n\" +\n        \"</Border.StrokeShape>\";\n\n    [ObservableProperty]\n    string createBorderXamlCode =\n        \"<Border Stroke=\\\"#C49B33\\\"\\r\\n\" +\n        \"        StrokeThickness=\\\"4\\\"\\r\\n\" +\n        \"        StrokeShape=\\\"RoundRectangle 40,0,0,40\\\"\\r\\n\" +\n        \"        Background=\\\"#2B0B98\\\"\\r\\n\" +\n        \"        Padding=\\\"16,8\\\"\\r\\n\" +\n        \"        HorizontalOptions=\\\"Center\\\">\\r\\n\" +\n        \"    <Label Text=\\\".NET MAUI\\\"\\r\\n\" +\n        \"           TextColor=\\\"White\\\"\\r\\n\" +\n        \"           FontSize=\\\"18\\\"\\r\\n\" +\n        \"           FontAttributes=\\\"Bold\\\" />\\r\\n\" +\n        \"</Border>\";\n\n    [ObservableProperty]\n    string createBorder2XamlCode =\n        \"<Border Stroke=\\\"#C49B33\\\"\\r\\n\" +\n        \"        StrokeThickness=\\\"4\\\"\\r\\n\" +\n        \"        Background=\\\"#2B0B98\\\"\\r\\n\" +\n        \"        Padding=\\\"16,8\\\"\\r\\n\" +\n        \"        HorizontalOptions=\\\"Center\\\">\\r\\n\" +\n        \"    <Border.StrokeShape>\\r\\n\" +\n        \"        <RoundRectangle CornerRadius=\\\"40,0,0,40\\\" />\\r\\n\" +\n        \"    </Border.StrokeShape>\\r\\n\" +\n        \"    <Label Text=\\\".NET MAUI\\\"\\r\\n\" +\n        \"           TextColor=\\\"White\\\"\\r\\n\" +\n        \"           FontSize=\\\"18\\\"\\r\\n\" +\n        \"           FontAttributes=\\\"Bold\\\" />\\r\\n\" +\n        \"</Border>\";\n\n    [ObservableProperty]\n    string createBorder3CSharpCode =\n        \"using Microsoft.Maui.Controls.Shapes;\\r\\n\" +\n        \"using GradientStop = Microsoft.Maui.Controls.GradientStop;\\r\\n\" +\n        \"...\\r\\n\" +\n        \"\\r\\n\" +\n        \"Border border = new Border\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    Stroke = Color.FromArgb(\\\"#C49B33\\\"),\\r\\n\" +\n        \"    Background = Color.FromArgb(\\\"#2B0B98\\\"),\\r\\n\" +\n        \"    StrokeThickness = 4,\\r\\n\" +\n        \"    Padding = new Thickness(16, 8),\\r\\n\" +\n        \"    HorizontalOptions = LayoutOptions.Center,\\r\\n\" +\n        \"    StrokeShape = new RoundRectangle\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        CornerRadius = new CornerRadius(40, 0, 0, 40)\\r\\n\" +\n        \"    },\\r\\n\" +\n        \"    Content = new Label\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        Text = \\\".NET MAUI\\\",\\r\\n\" +\n        \"        TextColor = Colors.White,\\r\\n\" +\n        \"        FontSize = 18,\\r\\n\" +\n        \"        FontAttributes = FontAttributes.Bold\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"};\";\n\n    [ObservableProperty]\n    string createBorder4XamlCode =\n        \"<Border StrokeThickness=\\\"4\\\"\\r\\n\" +\n        \"        StrokeShape=\\\"RoundRectangle 40,0,0,40\\\"\\r\\n\" +\n        \"        Background=\\\"#2B0B98\\\"\\r\\n\" +\n        \"        Padding=\\\"16,8\\\"\\r\\n\" +\n        \"        HorizontalOptions=\\\"Center\\\">\\r\\n\" +\n        \"    <Border.Stroke>\\r\\n\" +\n        \"        <LinearGradientBrush EndPoint=\\\"0,1\\\">\\r\\n\" +\n        \"            <GradientStop Color=\\\"Orange\\\"\\r\\n\" +\n        \"                          Offset=\\\"0.1\\\" />\\r\\n\" +\n        \"            <GradientStop Color=\\\"Brown\\\"\\r\\n\" +\n        \"                          Offset=\\\"1.0\\\" />\\r\\n\" +\n        \"        </LinearGradientBrush>\\r\\n\" +\n        \"    </Border.Stroke>\\r\\n\" +\n        \"    <Label Text=\\\".NET MAUI\\\"\\r\\n\" +\n        \"           TextColor=\\\"White\\\"\\r\\n\" +\n        \"           FontSize=\\\"18\\\"\\r\\n\" +\n        \"           FontAttributes=\\\"Bold\\\" />\\r\\n\" +\n        \"</Border>\";\n\n    [ObservableProperty]\n    string createBorder4CSharpCode =\n        \"using Microsoft.Maui.Controls.Shapes;\\r\\n\" +\n        \"using GradientStop = Microsoft.Maui.Controls.GradientStop;\\r\\n\" +\n        \"...\\r\\n\" +\n        \"\\r\\n\" +\n        \"Border gradientBorder = new Border\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    StrokeThickness = 4,\\r\\n\" +\n        \"    Background = Color.FromArgb(\\\"#2B0B98\\\"),\\r\\n\" +\n        \"    Padding = new Thickness(16, 8),\\r\\n\" +\n        \"    HorizontalOptions = LayoutOptions.Center,\\r\\n\" +\n        \"    StrokeShape = new RoundRectangle\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        CornerRadius = new CornerRadius(40, 0, 0, 40)\\r\\n\" +\n        \"    },\\r\\n\" +\n        \"    Stroke = new LinearGradientBrush\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        EndPoint = new Point(0, 1),\\r\\n\" +\n        \"        GradientStops = new GradientStopCollection\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            new GradientStop { Color = Colors.Orange, Offset = 0.1f },\\r\\n\" +\n        \"            new GradientStop { Color = Colors.Brown, Offset = 1.0f }\\r\\n\" +\n        \"        },\\r\\n\" +\n        \"    },\\r\\n\" +\n        \"    Content = new Label\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        Text = \\\".NET MAUI\\\",\\r\\n\" +\n        \"        TextColor = Colors.White,\\r\\n\" +\n        \"        FontSize = 18,\\r\\n\" +\n        \"        FontAttributes = FontAttributes.Bold\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"};\";\n\n    [ObservableProperty]\n    string buttonWithImageXamlCode =\n        \"<Frame>\\r\\n\" +\n        \"    <Frame.Resources>\\r\\n\" +\n        \"        <FontImageSource x:Key=\\\"HomeIcon\\\"\\r\\n\" +\n        \"                         Color=\\\"{x:StaticResource Primary }\\\"\\r\\n\" +\n        \"                         FontFamily=\\\"{x:Static core:FontNames.FluentSystemIconsRegular}\\\"\\r\\n\" +\n        \"                         Glyph=\\\"{Static core:FluentUIIcon.Ic_fluent_home_20_regular}\\\"/>\\r\\n\" +\n        \"\\r\\n\" +\n        \"        <FontImageSource x:Key=\\\"DownloadIcon\\\"\\r\\n\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n\n\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n\n    [RelayCommand]\n    async Task CopyToClipboardAsync(string text)\n    {\n        await Clipboard.Default.SetTextAsync(text);\n        await AppNavigator.ShowSnackbarAsync(\"Code copied to clipboard\", null, null);\n    }\n    #endregion\n\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Button/ButtonControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class ButtonControlInfo : IBuiltInGalleryCardInfo\n{\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_add_circle_32_regular\n    };\n    public string ControlName => nameof(Button);\n    public string ControlDetail => $\"{ControlName} displays text and responds to a tap or click that directs the app to carry out a task. A {ControlName} usually displays a short text string indicating a command, but it can also display a bitmap image, or a combination of text and an image. When the {ControlName} is pressed with a finger or clicked with a mouse it initiates that command.\";\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Buggy;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-button\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Button/ButtonPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class ButtonPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public ButtonPageViewModel(IAppNavigator appNavigator,\n                               IGitHubService gitHubService,\n                               DiscordRpcClient discordRpcClient,\n                               IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    bool isEnable;\n\n    [ObservableProperty]\n    string standardButtonXamlCode =\n    \"<Button Text=\\\"Standard XAML Button\\\"\\r\\n\" +\n    \"        VerticalOptions=\\\"Center\\\"\\r\\n\" +\n    \"        HorizontalOptions=\\\"Start\\\"\\r\\n\" +\n    \"        IsEnabled=\\\"{x:Binding IsEnable}\\\"/>\";\n\n    [ObservableProperty]\n    string rotationButtonXamlCode =\n    \"<Button Text=\\\"MAUI Button Test\\\"\\r\\n\" +\n    \"        VerticalOptions=\\\"Center\\\"\\r\\n\" +\n    \"        HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n    \"        BorderColor=\\\"Black\\\"\\r\\n\" +\n    \"        BorderWidth=\\\"2\\\"\\r\\n\" +\n    \"        BackgroundColor=\\\"Red\\\"\\r\\n\" +\n    \"        CharacterSpacing=\\\"4\\\"\\r\\n\" +\n    \"        WidthRequest=\\\"190\\\"\\r\\n\" +\n    \"        HeightRequest=\\\"70\\\"\\r\\n\" +\n    \"        FontSize=\\\"18\\\"\\r\\n\" +\n    \"        FontAttributes=\\\"Bold\\\"\\r\\n\" +\n    \"        LineBreakMode=\\\"WordWrap\\\"\\r\\n\" +\n    \"        TextColor=\\\"White\\\"\\r\\n\" +\n    \"        CornerRadius=\\\"30\\\"\\r\\n\" +\n    \"        RotationX=\\\"10\\\"\\r\\n\" +\n    \"        RotationY=\\\"30\\\"/>\";\n\n    [ObservableProperty]\n    string buttonsChangedBackgroundGroupXamlCode =\n    \"<HorizontalStackLayout Spacing=\\\"10\\\">\\r\\n\" +\n    \"    <Button Text=\\\"Green\\\"\\r\\n\" +\n    \"            TextColor=\\\"{x:StaticResource White}\\\"\\r\\n\" +\n    \"            BackgroundColor=\\\"Green\\\"/>\\r\\n\" +\n    \"\\r\\n\" +\n    \"    <Button Text=\\\"Red\\\"\\r\\n\" +\n    \"            TextColor=\\\"{x:StaticResource White}\\\"\\r\\n\" +\n    \"            BackgroundColor=\\\"Red\\\"/>\\r\\n\" +\n    \"\\r\\n\" +\n    \"    <Button Text=\\\"Application Primary Color\\\"\\r\\n\" +\n    \"            TextColor=\\\"{x:StaticResource White}\\\"\\r\\n\" +\n    \"            BackgroundColor=\\\"{x:StaticResource Primary}\\\"/>\\r\\n\" +\n    \"\\r\\n\" +\n    \"    <!--This button will be Cyan when in dark mode and Blue when light mode-->\\r\\n\" +\n    \"    <Button Text=\\\"Dark or Light mode color\\\"\\r\\n\" +\n    \"            TextColor=\\\"{x:StaticResource Black}\\\"\\r\\n\" +\n    \"            BackgroundColor=\\\"{x:AppThemeBinding Dark={x:StaticResource Cyan300Accent}, \\r\\n\" +\n    \"                                                    Light={x:StaticResource Blue300Accent}}\\\"/>\\r\\n\" +\n    \"</HorizontalStackLayout>\";\n\n    [ObservableProperty]\n    string buttonWithImageXamlCode =\n    \"<Frame>\\r\\n\" +\n    \"    <Frame.Resources>\\r\\n\" +\n    \"        <FontImageSource x:Key=\\\"HomeIcon\\\"\\r\\n\" +\n    \"                         Color=\\\"{x:StaticResource Primary }\\\"\\r\\n\" +\n    \"                         FontFamily=\\\"{x:Static core:FontNames.FluentSystemIconsRegular}\\\"\\r\\n\" +\n    \"                         Glyph=\\\"{Static core:FluentUIIcon.Ic_fluent_home_20_regular}\\\"/>\\r\\n\" +\n    \"\\r\\n\" +\n    \"        <FontImageSource x:Key=\\\"DownloadIcon\\\"\\r\\n\" +\n    \"                         Color=\\\"{x:StaticResource Primary }\\\"\\r\\n\" +\n    \"                         FontFamily=\\\"{x:Static core:FontNames.FluentSystemIconsRegular}\\\"\\r\\n\" +\n    \"                         Glyph=\\\"{Static core:FluentUIIcon.Ic_fluent_arrow_download_20_regular}\\\"/>\\r\\n\" +\n    \"    </Frame.Resources>\\r\\n\" +\n    \"\\r\\n\" +\n    \"    <HorizontalStackLayout Spacing=\\\"10\\\">\\r\\n\" +\n    \"        <Button Text=\\\"Home\\\"\\r\\n\" +\n    \"                ImageSource=\\\"{x:StaticResource HomeIcon}\\\"/>\\r\\n\" +\n    \"\\r\\n\" +\n    \"        <Button Text=\\\"Download\\\"\\r\\n\" +\n    \"                ImageSource=\\\"{x:StaticResource DownloadIcon}\\\"/>\\r\\n\" +\n    \"    </HorizontalStackLayout>\\r\\n\" +\n    \"</Frame>\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CarouselView/CarouselViewControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\nclass CarouselViewControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(CarouselView);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_app_recent_24_regular\n    };\n    public string ControlDetail => \"CarouselView will display its items in a horizontal orientation. A single item will be displayed on screen, with swipe gestures resulting in forwards and backwards navigation through the collection of items. \";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Buggy;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area/collectionview 📃\", \"area/gestures\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CarouselView/CarouselViewPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class CarouselViewPageViewModel : BaseBuiltInPageControlViewModel\n{\n\n    #region [ CTor ]\n    public CarouselViewPageViewModel(IAppNavigator appNavigator,\n                                       IGitHubService gitHubService,\n                                       DiscordRpcClient discordRpcClient,\n                                       IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                        : base(appNavigator,\n                                                gitHubService,\n                                                discordRpcClient,\n                                                gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    int commandCurrentSelectedItemPositionSpan = 0;\n\n    [ObservableProperty]\n    string commandCurrentSelectedItemSpan;\n\n    [ObservableProperty]\n    CarouselItem commandCurrentSelectedItem;\n\n    [ObservableProperty]\n    ObservableCollection<CarouselItem> items;\n\n    [ObservableProperty]\n    ObservableCollection<CarouselItem> itemEmptyList;\n\n    [ObservableProperty]\n    string xamlCarouselViewBasic =\n        \"<CarouselView ItemTemplate=\\\"{x:StaticResource NormalDataTemplate}\\\"\\r\\n\" +\n        \"              ItemsSource=\\\"{x:Binding Items}\\\" />\";\n\n    [ObservableProperty]\n    string xamlCarouselViewBasicDataTemplate =\n        \"<ContentPage x:Class=\\\"MAUIsland.EditorPage\\\"\\r\\n\" +\n        \"             xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"             xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"             xmlns:app=\\\"clr-namespace:MAUIsland\\\"\\r\\n\" +\n        \"             xmlns:core=\\\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\\\"\\r\\n\" +\n        \"             x:DataType=\\\"app:EditorPageViewModel\\\">\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <ResourceDictionary>\\r\\n\" +\n        \"           <DataTemplate x:Key=\\\"NormalDataTemplate\\\"\\r\\n\" +\n        \"                         x:DataType=\\\"app:CarouselItem\\\">\\r\\n\" +\n        \"               <StackLayout>\\r\\n\" +\n        \"                   <Frame BorderColor=\\\"DarkGray\\\"\\r\\n\" +\n        \"                          CornerRadius=\\\"5\\\"\\r\\n\" +\n        \"                          HasShadow=\\\"True\\\"\\r\\n\" +\n        \"                          HeightRequest=\\\"300\\\"\\r\\n\" +\n        \"                          HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                          VerticalOptions=\\\"Center\\\">\\r\\n\" +\n        \"                       <StackLayout>\\r\\n\" +\n        \"                           <Label FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                                  FontSize=\\\"20\\\"\\r\\n\" +\n        \"                                  HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                                  Text=\\\"{Binding Title}\\\"\\r\\n\" +\n        \"                                  VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"                           <Image Aspect=\\\"AspectFill\\\"\\r\\n\" +\n        \"                                  HeightRequest=\\\"150\\\"\\r\\n\" +\n        \"                                  HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                                  Source=\\\"microsoft.png\\\"\\r\\n\" +\n        \"                                  WidthRequest=\\\"150\\\" />\\r\\n\" +\n        \"                           <Label HorizontalOptions=\\\"Center\\\"\\r\\n \" +\n        \"                                  Text=\\\"{Binding Content}\\\" />\\r\\n\" +\n        \"                       </StackLayout>\\r\\n\" +\n        \"                   </Frame>\\r\\n\" +\n        \"               </StackLayout>\\r\\n\" +\n        \"           </DataTemplate>\\r\\n\" +\n        \"       </ResourceDictionary>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpCarouselViewBasicViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"ObservableCollection<CarouselItem> items;\";\n\n    [ObservableProperty]\n    string cSharpCarouselItemModel =\n        \"public class CarouselItem\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    public string Id { get; set; }\\r\\n\" +\n        \"    public string Title { get; set; }\\r\\n\" +\n        \"    public string ImageUrl { get; set; }\\r\\n\" +\n        \"    public string Content { get; set; }\\r\\n\" +\n        \"    public bool IsFavorite { get; set; }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlCarouselViewDataTemplateSelector =\n        \"<CarouselView x:Name=\\\"TemplateSelectorCarouselView\\\" \\r\\n\" +\n        \"              ItemsSource=\\\"{x:Binding Items}\\\" \\r\\n\" +\n        \"              ItemTemplate=\\\"{x:StaticResource CarouselViewItemDataTemplateSelector}\\\"\\r\\n\" +\n        \"              Loop=\\\"False\\\"/>\";\n\n    [ObservableProperty]\n    string cSharpCarouselViewDataTemplateSelector =\n        \"public class CarouselViewItemDataTemplateSelector : DataTemplateSelector\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    public DataTemplate HighlightedTemplate { get; set; }\\r\\n\" +\n        \"    public DataTemplate NormalTemplate { get; set; }\\r\\n\\r\\n\" +\n        \"    protected override DataTemplate OnSelectTemplate(object item, BindableObject container)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        var selectedItem = (CarouselItem)item;\\r\\n\" +\n        \"        return selectedItem.Id.Equals(\\\"1\\\") ? HighlightedTemplate : NormalTemplate;\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlCarouselViewDataTemplateSelectorSetup =\n        \"<ContentPage x:Class=\\\"MAUIsland.EditorPage\\\"\\r\\n\" +\n        \"             xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"             xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"             xmlns:app=\\\"clr-namespace:MAUIsland\\\"\\r\\n\" +\n        \"             xmlns:core=\\\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\\\"\\r\\n\" +\n        \"             x:DataType=\\\"app:EditorPageViewModel\\\">\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <ResourceDictionary>\\r\\n\" +\n        \"           <DataTemplate x:Key=\\\"NormalDataTemplate\\\"\\r\\n\" +\n        \"                         x:DataType=\\\"app:CarouselItem\\\">\\r\\n\" +\n        \"               <StackLayout>\\r\\n\" +\n        \"                   <Frame BorderColor=\\\"DarkGray\\\"\\r\\n\" +\n        \"                          CornerRadius=\\\"5\\\"\\r\\n\" +\n        \"                          HasShadow=\\\"True\\\"\\r\\n\" +\n        \"                          HeightRequest=\\\"300\\\"\\r\\n\" +\n        \"                          HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                          VerticalOptions=\\\"Center\\\">\\r\\n\" +\n        \"                       <StackLayout>\\r\\n\" +\n        \"                           <Label FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                                  FontSize=\\\"20\\\"\\r\\n\" +\n        \"                                  HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                                  VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"                                  Text=\\\"{Binding Title}\\\"\\r\\n\" +\n        \"                           <Image Aspect=\\\"AspectFill\\\"\\r\\n\" +\n        \"                                  HeightRequest=\\\"150\\\"\\r\\n\" +\n        \"                                  HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                                  Source=\\\"microsoft.png\\\"\\r\\n\" +\n        \"                                  WidthRequest=\\\"150\\\" />\\r\\n\" +\n        \"                           <Label HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                                  Text=\\\"{Binding Content}\\\" />\\r\\n\" +\n        \"                       </StackLayout>\\r\\n\" +\n        \"                   </Frame>\\r\\n\" +\n        \"               </StackLayout>\\r\\n        \" +\n        \"           </DataTemplate>\\r\\n\\r\\n\" +\n        \"           <DataTemplate x:Key=\\\"HighlightedDataTemplate\\\"\\r\\n\" +\n        \"                         x:DataType=\\\"app:CarouselItem\\\">\\r\\n\" +\n        \"               <StackLayout>\\r\\n\" +\n        \"                   <Frame Margin=\\\"20\\\"\\r\\n\" +\n        \"                          BackgroundColor=\\\"GreenYellow\\\"\\r\\n\" +\n        \"                          BorderColor=\\\"Black\\\"\\r\\n\" +\n        \"                          CornerRadius=\\\"5\\\"\\r\\n\" +\n        \"                          HasShadow=\\\"True\\\"\\r\\n\" +\n        \"                          HeightRequest=\\\"300\\\"\\r\\n\" +\n        \"                          HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                          VerticalOptions=\\\"Center\\\">\\r\\n\" +\n        \"                       <StackLayout>\\r\\n\" +\n        \"                           <Label FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                                  FontSize=\\\"20\\\"\\r\\n\" +\n        \"                                  HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                                  Text=\\\"{Binding Title}\\\"\\r\\n\" +\n        \"                                  VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"                           <Image Aspect=\\\"AspectFill\\\"\\r\\n\" +\n        \"                                  HeightRequest=\\\"150\\\"\\r\\n\" +\n        \"                                  HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                                  Source=\\\"microsoft.png\\\"\\r\\n\" +\n        \"                                  WidthRequest=\\\"150\\\" />\\r\\n\" +\n        \"                           <Label HorizontalOptions=\\\"Center\\\" \\r\\n\" +\n        \"                                  Text=\\\"{Binding Content}\\\" />\\r\\n\" +\n        \"                       </StackLayout>\\r\\n\" +\n        \"                   </Frame>\\r\\n\" +\n        \"               </StackLayout>\\r\\n\" +\n        \"           </DataTemplate>\\r\\n\\r\\n\" +\n        \"           <app:CarouselViewItemDataTemplateSelector x:Key=\\\"CarouselViewItemDataTemplateSelector\\\"\\r\\n\" +\n        \"                                                     HighlightedTemplate =\\\"{x:StaticResource HighlightedDataTemplate}\\\"\\r\\n\" +\n        \"                                                     NormalTemplate =\\\"{x:StaticResource NormalDataTemplate}\\\"\\r\\n/>\" +\n        \"       </ResourceDictionary>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpCarouselViewDataTemplateSelectorViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"ObservableCollection<CarouselItem> items;\";\n\n    [ObservableProperty]\n    string xamlCarouselViewIndicatorView =\n        \"<CarouselView IndicatorView=\\\"IndicatorView\\\"\\r\\n\" +\n        \"              ItemsSource=\\\"{x:Binding Items}\\\" \\r\\n\" +\n        \"              ItemTemplate=\\\"{x:StaticResource NormalDataTemplate}\\\"/>\\r\\n\" +\n        \"<IndicatorView x:Name=\\\"IndicatorView\\\"\\r\\n\" +\n        \"               IndicatorColor=\\\"LightGray\\\"\\r\\n\" +\n        \"               SelectedIndicatorColor=\\\"Aqua\\\"\\r\\n\" +\n        \"               HorizontalOptions=\\\"Center\\\" />\";\n\n    [ObservableProperty]\n    string xamlCarouselViewSwipeView =\n        \"<CarouselView ItemsSource=\\\"{x:Binding Items}\\\" \\r\\n\" +\n        \"              ItemTemplate=\\\"{x:StaticResource CarouselSwipeViewItemTemplate}\\\"/>\";\n\n    [ObservableProperty]\n    string xamlCarouselViewSwipeViewDataTemplate =\n        \"<ContentPage x:Class=\\\"MAUIsland.EditorPage\\\"\\r\\n\" +\n        \"             xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"             xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"             xmlns:app=\\\"clr-namespace:MAUIsland\\\"\\r\\n\" +\n        \"             xmlns:core=\\\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\\\"\\r\\n\" +\n        \"             x:DataType=\\\"app:EditorPageViewModel\\\">\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <ResourceDictionary>\\r\\n\" +\n        \"           <DataTemplate x:Key=\\\"CarouselSwipeViewItemTemplate\\\">\\r\\n\" +\n        \"               <StackLayout>\\r\\n                \" +\n        \"                   <Frame Margin=\\\"20\\\"\\r\\n\" +\n        \"                          HeightRequest=\\\"300\\\"\\r\\n\" +\n        \"                          HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                          VerticalOptions=\\\"CenterAndExpand\\\" >\\r\\n\" +\n        \"                       <SwipeView>\\r\\n\" +\n        \"                           <SwipeView.TopItems>\\r\\n\" +\n        \"                               <SwipeItems>\\r\\n\" +\n        \"                                   <SwipeItem Text=\\\"Favorite\\\"\\r\\n\" +\n        \"                                              IconImageSource=\\\"{x:Static core:FluentUIIcon.Ic_fluent_heart_24_regular}\\\"\\r\\n\" +\n        \"                                              BackgroundColor=\\\"LightGreen\\\"\\r\\n\" +\n        \"                                              Command=\\\"{x:Binding Path=BindingContext.SwipeViewFavoriteCommand, Source={x:RelativeSource AncestorType={x:Type ContentPage}}}\\\"\\r\\n\" +\n        \"                                              CommandParameter=\\\"{Binding}\\\" />\\r\\n\" +\n        \"                               </SwipeItems>\\r\\n\" +\n        \"                           </SwipeView.TopItems>\\r\\n\" +\n        \"                           <SwipeView.BottomItems>\\r\\n\" +\n        \"                               <SwipeItems>\\r\\n\" +\n        \"                                   <SwipeItem Text=\\\"Delete\\\"\\r\\n\" +\n        \"                                              BackgroundColor=\\\"LightPink\\\"\\r\\n\" +\n        \"                                              IconImageSource=\\\"{x:Static core:FluentUIIcon.Ic_fluent_delete_24_regular}\\\"\\r\\n\" +\n        \"                                              Command=\\\"{x:Binding Path=BindingContext.SwipeViewDeleteCommand, Source={x:RelativeSource AncestorType={x:Type ContentPage}}}\\\"\\r\\n\" +\n        \"                                              CommandParameter=\\\"{Binding}\\\"/>\\r\\n\" +\n        \"                               </SwipeItems>\\r\\n\" +\n        \"                           </SwipeView.BottomItems>\\r\\n\" +\n        \"                           <StackLayout x:DataType=\\\"app:CarouselItem\\\">\\r\\n\" +\n        \"                               <Label FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                                      FontSize=\\\"20\\\"\\r\\n\" +\n        \"                                      HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                                      Text=\\\"{Binding Title}\\\"\\r\\n\" +\n        \"                                      VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"                               <Image Aspect=\\\"AspectFill\\\"\\r\\n\" +\n        \"                                      HeightRequest=\\\"150\\\"\\r\\n\" +\n        \"                                      HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                                      Source=\\\"microsoft.png\\\"\\r\\n\" +\n        \"                                      WidthRequest=\\\"150\\\" />\\r\\n\" +\n        \"                               <Label HorizontalOptions=\\\"Center\\\" \\r\\n\" +\n        \"                                      Text=\\\"{Binding Content}\\\" />\\r\\n\" +\n        \"                           </StackLayout>\\r\\n\" +\n        \"                       </SwipeView>\\r\\n\" +\n        \"                   </Frame>\\r\\n\" +\n        \"               </StackLayout>\\r\\n\" +\n        \"           </DataTemplate\\r\\n>\" +\n        \"       </ResourceDictionary>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlCarouselViewRefreshView =\n        \"<RefreshView IsRefreshing=\\\"{Binding IsRefreshing}\\\"\\r\\n\" +\n        \"             Command=\\\"{Binding RefreshCommand}\\\">\\r\\n\" +\n        \"   <CarouselView ItemsSource=\\\"{x:Binding Items}\\\" \\r\\n\" +\n        \"                 ItemTemplate=\\\"{x:StaticResource NormalDataTemplate}\\\"/>\\r\\n\" +\n        \"</RefreshView>\";\n\n    [ObservableProperty]\n    string cSharpCarouselViewRefreshViewViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"bool isRefreshing;\\r\\n\\r\\n\" +\n        \"[RelayCommand]\\r\\n\" +\n        \"void Refresh()\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     IsRefreshing = true;\\r\\n\\r\\n\" +\n        \"     LoadDataAsync(true);\\r\\n\\r\\n\" +\n        \"     IsRefreshing = false;\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlCarouselViewHorizontalLayout =\n        \"<CarouselView ItemsSource=\\\"{x:Binding Items}\\\" \\r\\n\" +\n        \"              ItemTemplate=\\\"{x:StaticResource NormalDataTemplate}\\\"\\r\\n\" +\n        \"              HorizontalOptions=\\\"FillAndExpand\\\">\\r\\n\" +\n        \"   <CarouselView.ItemsLayout>\\r\\n\" +\n        \"       <LinearItemsLayout Orientation=\\\"Horizontal\\\"/>\\r\\n\" +\n        \"   </CarouselView.ItemsLayout>\\r\\n\" +\n        \"</CarouselView>\";\n\n    [ObservableProperty]\n    string xamlCarouselViewRightToLeftLayout =\n        \"<CarouselView ItemsSource=\\\"{x:Binding Items}\\\" \\r\\n\" +\n        \"              ItemTemplate=\\\"{x:StaticResource NormalDataTemplate}\\\"\\r\\n\" +\n        \"              HorizontalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"              FlowDirection=\\\"RightToLeft\\\"/>\";\n\n    [ObservableProperty]\n    string xamlCarouselViewItemChangingEvent =\n        \"<Label>\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"This is the Current Item Content that you selected: \\\"/>\\r\\n\" +\n        \"           <Span x:Name=\\\"ItemChangingEventHandlerLabelSpan\\\"/>\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\\r\\n\" +\n        \"<Label>\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"And its Position: \\\"/>\\r\\n\" +\n        \"           <Span x:Name=\\\"PositionItemChangingEventHandlerLabelSpan\\\"/>\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\\r\\n\" +\n        \"<CarouselView Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"              ItemsSource=\\\"{x:Binding Items}\\\" \\r\\n\" +\n        \"              ItemTemplate=\\\"{x:StaticResource NormalDataTemplate}\\\"\\r\\n\" +\n        \"              CurrentItemChanged=\\\"CarouselViewCurrentItemChanged\\\"\\r\\n\" +\n        \"              VerticalOptions=\\\"Center\\\"/>\";\n\n    [ObservableProperty]\n    string cSharpCarouselViewItemChangingEventCodeBehind =\n        \"private void CarouselViewCurrentItemChanged(object sender, CurrentItemChangedEventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    var carouselItem = (CarouselItem)e.CurrentItem;\\r\\n\" +\n        \"    var carouselView = (CarouselView)sender;\\r\\n\" +\n        \"    ItemChangingEventHandlerLabelSpan.Text = carouselItem.Content;\\r\\n\" +\n        \"    PositionItemChangingEventHandlerLabelSpan.Text = carouselView.Position.ToString();\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlCarouselViewItemChangingCommand =\n        \"<Label>\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"This is the Current Item Content that you selected: \\\"/>\\r\\n\" +\n        \"           <Span Text=\\\"{x:Binding CommandCurrentSelectedItemSpan}\\\"/>\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\\r\\n\" +\n        \"<Label>\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"And its Position: \\\"/>\\r\\n\" +\n        \"           <Span Text=\\\"{x:Binding CommandCurrentSelectedItemPositionSpan}\\\"/>\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\\r\\n\" +\n        \"<CarouselView x:Name=\\\"CarouselViewCommandItemChanging\\\" Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"              ItemsSource=\\\"{x:Binding Items}\\\" \\r\\n\" +\n        \"              ItemTemplate=\\\"{x:StaticResource NormalDataTemplate}\\\"\\r\\n\" +\n        \"              CurrentItem=\\\"{x:Binding CommandCurrentSelectedItem}\\\"\\r\\n\" +\n        \"              CurrentItemChangedCommand=\\\"{x:Binding CarouselViewCurrentItemChangedCommand}\\\"\\r\\n\" +\n        \"              CurrentItemChangedCommandParameter=\\\"{x:Binding Path=CurrentItem.Content, Source={x:Reference CarouselViewCommandItemChanging}}\\\"\\r\\n\" +\n        \"              Position=\\\"{x:Binding CommandCurrentSelectedItemPositionSpan, Mode=TwoWay}\\\"\\r\\n\" +\n        \"              VerticalOptions=\\\"Center\\\"/>\";\n\n    [ObservableProperty]\n    string cSharpCarouselViewItemChangingCommandViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"int commandCurrentSelectedItemPositionSpan = 0;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"string commandCurrentSelectedItemSpan;\\r\\n\\r\\n\" +\n        \"[RelayCommand]\\r\\n\" +\n        \"void CarouselViewCurrentItemChanged(string value)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     CommandCurrentSelectedItemSpan = value;\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlCarouselViewEmptyView =\n        \"<CarouselView ItemsSource=\\\"{x:Binding ItemEmptyList}\\\" \\r\\n\" +\n        \"              ItemTemplate=\\\"{x:StaticResource NormalDataTemplate}\\\"\\r\\n\" +\n        \"              EmptyView=\\\"Nothing to show here !!!.\\\"/>\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    void SwipeViewFavorite(CarouselItem carouselItem)\n        => carouselItem.IsFavorite = !carouselItem.IsFavorite;\n\n    [RelayCommand]\n    void SwipeViewDelete(CarouselItem carouselItem)\n    {\n        if (Items.Contains(carouselItem))\n            Items.Remove(carouselItem);\n    }\n\n    [RelayCommand]\n    void CarouselViewCurrentItemChanged(string value)\n    {\n        CommandCurrentSelectedItemSpan = value;\n    }\n    #endregion\n\n    #region [ Methods ]\n    private async Task LoadDataAsync(bool forced)\n    {\n        var items = new List<CarouselItem>()\n        {\n            new()\n            {\n                Id = \"1\",\n                Title = \"CarouselView Item\",\n                Content = \"Number 1\"\n\n            },\n\n            new()\n            {\n                Id = \"2\",\n                Title = \"CarouselView Item\",\n                Content = \"Number 2\"\n\n            },\n\n            new()\n            {\n                Id = \"3\",\n                Title = \"CarouselView Item\",\n                Content = \"Number 3\"\n\n            },\n\n            new()\n            {\n                Id = \"4\",\n                Title = \"CarouselView Item\",\n                Content = \"Number 4\"\n\n            },\n\n            new()\n            {\n                Id = \"5\",\n                Title = \"CarouselView Item\",\n                Content = \"Number 5\"\n\n            }\n        };\n\n        if (forced || Items is null || ItemEmptyList is null)\n        {\n            Items = new();\n            ItemEmptyList = new();\n        }\n\n        foreach (var item in items)\n        {\n            Items.Add(item);\n        }\n\n        CommandCurrentSelectedItem = Items.First();\n    }\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        await LoadDataAsync(true);\n\n        if (ControlInformation is null)\n            return;\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CarouselView/Models/CarouselItem.cs",
    "content": "﻿namespace MAUIsland.Core;\npublic class CarouselItem\n{\n    public string Id { get; set; }\n    public string Title { get; set; }\n    public string ImageUrl { get; set; }\n    public string Content { get; set; }\n    public bool IsFavorite { get; set; }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CarouselView/TemplateSelector/CarouselViewItemDataTemplateSelector.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class CarouselViewItemDataTemplateSelector : DataTemplateSelector\n{\n    public DataTemplate HighlightedTemplate { get; set; }\n    public DataTemplate NormalTemplate { get; set; }\n\n    protected override DataTemplate OnSelectTemplate(object item, BindableObject container)\n    {\n        var selectedItem = (CarouselItem)item;\n        return selectedItem.Id.Equals(\"1\") ? HighlightedTemplate : NormalTemplate;\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Checkbox/CheckBoxControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class CheckBoxControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(CheckBox);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_checkbox_checked_24_regular\n    };\n    public string ControlDetail => \"CheckBox is a type of button that can either be checked or empty. When a checkbox is checked, it's considered to be on. When a checkbox is empty, it's considered to be off.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Stable;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-checkbox\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Checkbox/CheckBoxPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class CheckBoxPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public CheckBoxPageViewModel(IAppNavigator appNavigator,\n                                 IGitHubService gitHubService,\n                                 DiscordRpcClient discordRpcClient,\n                                 IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                    : base(appNavigator,\n                                            gitHubService,\n                                            discordRpcClient,\n                                            gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    bool isChecked;\n\n    [ObservableProperty]\n    Color currentColor = new Color(242, 241, 241, 255);\n\n    [ObservableProperty]\n    string standardCheckBoxXamlCode = \"<CheckBox />\";\n\n    [ObservableProperty]\n    string checkBoxWithColorXamlCode = \"<CheckBox Color=\\\"#FFFFFF\\\"/>\";\n\n    [ObservableProperty]\n    string checkBoxTrueByDefaultXamlCode = \"<CheckBox IsChecked=\\\"True\\\"/>\";\n\n    [ObservableProperty]\n    string checkBoxWithBindingXamlCode =\n    \"<CheckBox IsChecked=\\\"{Binding IsChecked, Mode=TwoWay}\\\" \" +\n               \"Color=\\\"{Binding CurrentColor, Mode=OneWay}\\\"/>\";\n\n    [ObservableProperty]\n    string checkBoxWithLabelXamlCode =\n    \"<HorizontalStackLayout HorizontalOptions=\\\"Start\\\" VerticalOptions=\\\"Center\\\">\\n\" +\n    \"    <Label\\n\" +\n    \"        FontAttributes=\\\"Bold\\\"\\n\" +\n    \"        FontSize=\\\"Default\\\"\\n\" +\n    \"        Text=\\\"CheckBox 1\\\" />\\n\" +\n    \"    <CheckBox x:Name=\\\"checkBox1\\\" />\\n\" +\n    \"</HorizontalStackLayout>\";\n\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/CollectionViewControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\nclass CollectionViewControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(CollectionView);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_apps_list_detail_24_regular,\n    };\n    public string ControlDetail => \"CollectionView is a view for presenting lists of data using different layout specifications. It aims to provide a more flexible, and performant alternative to ListView.\\r\\n\\r\\nThe following screenshot shows a CollectionView that uses a two-column vertical grid and allows multiple selections: \";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.ExtremelyBuggy;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-collectionview\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/CollectionViewPageViewModel.cs",
    "content": "﻿using CommunityToolkit.Maui.Core.Extensions;\nusing DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\nusing System.ComponentModel;\nusing System.Runtime.CompilerServices;\n\nnamespace MAUIsland.Core;\n\npublic partial class CollectionViewPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    private readonly IControlsService MauiControlsService;\n    private readonly IMrIncreadibleMemeService MemeService;\n    #endregion\n\n    #region [ CTor ]\n    public CollectionViewPageViewModel(IAppNavigator appNavigator,\n                                       IGitHubService gitHubService,\n                                       DiscordRpcClient discordRpcClient,\n                                       IControlsService mauiControlsService,\n                                       IMrIncreadibleMemeService memeService,\n                                       IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                            : base(appNavigator,\n                                                   gitHubService,\n                                                   discordRpcClient,\n                                                   gitHubIssueLocalDbService)\n    {\n        this.MauiControlsService = mauiControlsService;\n        this.MemeService = memeService;\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string currentSingleSelectedItemLabel = string.Empty;\n\n    [ObservableProperty]\n    string previousSingleSelectedItemLabel = string.Empty;\n\n    [ObservableProperty]\n    string currentMultipleSelectedItemLabel = string.Empty;\n\n    [ObservableProperty]\n    string previousMultipleSelectedItemLabel = string.Empty;\n\n    [ObservableProperty]\n    string currentMultipleSelectedListItemLabel = string.Empty;\n\n    [ObservableProperty]\n    bool isRefreshing;\n\n    [ObservableProperty]\n    string selectedFilterPickerItem;\n\n    [ObservableProperty]\n    ObservableCollection<string> filterPickerItems;\n\n    [ObservableProperty]\n    IGalleryCardInfo singleSelectedControlInformation;\n\n    [ObservableProperty]\n    IEnumerable<object> multipleSelectedControlInformationList = new List<object>();\n\n    [ObservableProperty]\n    ObservableCollection<MrIncreadible> mrIncreadibles;\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> controlGroupList;\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> controlGroupListForRefreshExample;\n\n    [ObservableProperty]\n    int spanningNumber = 1;\n\n    [ObservableProperty]\n    string cSharpBasicCollectionModel =\n        \"public interface IGalleryCardInfo\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    ImageSource ControlIcon { get; }\\r\\n\" +\n        \"    string ControlName { get; }\\r\\n\" +\n        \"    string ControlDetail { get; }\\r\\n\" +\n        \"    GalleryCardType CardType { get; }\\r\\n\" +\n        \"    GalleryCardStatus CardStatus { get; }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cSharpBasicCollectionViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"ObservableCollection<IGalleryCardInfo> controlGroupList;; // How data is loaded up to you\";\n\n    [ObservableProperty]\n    string xamlBasicCollectionViewTemplate =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <DataTemplate x:Key=\\\"ControllInfoCollectionTemplate\\\" \\r\\n\" +\n        \"                   x:DataType=\\\"app:IGalleryCardInfo\\\">\\r\\n\" +\n        \"           <Border Padding=\\\"5\\\"\\r\\n\" +\n        \"                   BackgroundColor=\\\"{x:Static core:AppColors.BlackGrey}\\\">\\r\\n\" +\n        \"               <Border.StrokeShape>\\r\\n\" +\n        \"                   <RoundRectangle CornerRadius=\\\"5\\\" />\\r\\n\" +\n        \"               </Border.StrokeShape>\\r\\n\" +\n        \"               <Grid ColumnDefinitions=\\\"0.2*, 0.2*, 0.6*\\\" \\r\\n\" +\n        \"                     HeightRequest=\\\"40\\\">\\r\\n\" +\n        \"                   <Image Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"                          Source=\\\"{x:Binding ControlIcon}\\\"\\r\\n\" +\n        \"                          VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                   <Label Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"                          FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                          LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n        \"                          FontSize=\\\"14\\\"\\r\\n\" +\n        \"                          Text=\\\"{x:Binding ControlName}\\\"\\r\\n\" +\n        \"                          VerticalTextAlignment=\\\"Center\\\"/>\\r\\n\" +\n        \"                   <Label Grid.Column=\\\"2\\\"\\r\\n\" +\n        \"                          FontAttributes=\\\"Italic\\\"\\r\\n\" +\n        \"                          LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n        \"                          FontSize=\\\"12\\\"\\r\\n\" +\n        \"                          VerticalTextAlignment=\\\"Center\\\"\\r\\n\" +\n        \"                          Text=\\\"{x:Binding ControlDetail}\\\"/>\\r\\n\" +\n        \"               </Grid>\\r\\n\" +\n        \"           </Border>\\r\\n\" +\n        \"       </DataTemplate>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlBasicCollectionView =\n        \"<CollectionView ItemTemplate=\\\"{x:StaticResource ControllInfoCollectionTemplate}\\\"\\r\\n\" +\n        \"                ItemsSource=\\\"{x:Binding ControlGroupList}\\\"\\r\\n\" +\n        \"                HeightRequest=\\\"400\\\"/>\\r\\n\" +\n        \"<!-- You can make it Scroll by set HeightRequest if it is a Vertical CollectionView and WidthRequest if it is a Horizontal CollectionView -->\";\n\n    [ObservableProperty]\n    string cSharpSwipeCollectionModel =\n        \"public class MrIncreadible\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    public double Age { get; set; }\\r\\n\" +\n        \"    public string Title { get; set; }\\r\\n\" +\n        \"    public ImageSource Image { get; set; }\\r\\n\" +\n        \"    public bool IsFavorite { get; set; }\" +\n        \"\\r\\n}\";\n\n    [ObservableProperty]\n    string xamlSwipeCollectionViewTemplate =\n        \"<ContentPage>\\r\\n\" +\n        \"    <ContentPage.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"MrIncreadibleCollectionTemplateWithSwipe\\\">\\r\\n\" +\n        \"            <SwipeView Margin=\\\"5\\\" WidthRequest=\\\"400\\\">\\r\\n\" +\n        \"                <SwipeView.LeftItems>\\r\\n\" +\n        \"                    <SwipeItems>\\r\\n\" +\n        \"                        <SwipeItem BackgroundColor=\\\"{x:Static core:AppColors.Green}\\\" \\r\\n\" +\n        \"                                   Command=\\\"{x:Binding CollectionSwipeViewFavoriteCommand}\\\"\\r\\n\" +\n        \"                                   CommandParameter=\\\"{x:Binding}\\\"\\r\\n\" +\n        \"                                   IconImageSource=\\\"{x:Static core:FluentUIIcon.Ic_fluent_heart_24_regular}\\\"\\r\\n\" +\n        \"                                   Text=\\\"Favorite\\\" />\\r\\n\" +\n        \"                        <SwipeItem BackgroundColor=\\\"{x:Static core:AppColors.LightBlue}\\\"\\r\\n\" +\n        \"                                   Command=\\\"{x:Binding CollectionSwipeViewDeleteCommand}\\\"\\r\\n\" +\n        \"                                   CommandParameter=\\\"{x:Binding}\\\"\\r\\n\" +\n        \"                                   IconImageSource=\\\"{x:Static core:FluentUIIcon.Ic_fluent_delete_24_regular}\\\"\\r\\n\" +\n        \"                                   Text=\\\"Delete\\\" />\\r\\n\" +\n        \"                    </SwipeItems>\\r\\n\" +\n        \"                </SwipeView.LeftItems>\\r\\n\" +\n        \"                <Frame Style=\\\"{x:StaticResource DocumentContentFrameStyle}\\\">\\r\\n\" +\n        \"                    <Grid x:DataType=\\\"app:MrIncreadible\\\"\\r\\n\" +\n        \"                          ColumnDefinitions=\\\"0.1*, 0.2*, 0.6*\\\">\\r\\n\" +\n        \"                        <Label Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"                               FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                               Text=\\\"{x:Binding Age}\\\"\\r\\n\" +\n        \"                               VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                        <toolkit:AvatarView Grid.Column=\\\"1\\\" \\r\\n\" +\n        \"                                            HeightRequest=\\\"50\\\"\\r\\n\" +\n        \"                                            WidthRequest=\\\"50\\\"\\r\\n\" +\n        \"                                            ImageSource=\\\"{x:Binding Image, Mode=OneWay}\\\"\\r\\n\" +\n        \"                                            Text=\\\"{x:Binding Age, Mode=OneWay}\\\"/>\\r\\n\" +\n        \"                        <Label Grid.Column=\\\"2\\\"\\r\\n\" +\n        \"                               FontAttributes=\\\"Italic\\\"\\r\\n\" +\n        \"                               Text=\\\"{x:Binding Title}\\\"\\r\\n\" +\n        \"                               VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                    </Grid>\\r\\n\" +\n        \"                </Frame>\\r\\n\" +\n        \"            </SwipeView>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlSwipeCollectionView =\n        \"<CollectionView ItemsSource=\\\"{x:Binding MrIncreadibles}\\\"\\r\\n\" +\n        \"                ItemTemplate=\\\"{x:StaticResource MrIncreadibleCollectionTemplateWithSwipe}\\\"\\r\\n\" +\n        \"                HeightRequest=\\\"400\\\"/>\";\n\n    [ObservableProperty]\n    string cSharpSwipeCollectionViewViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"ObservableCollection<MrIncreadible> mrIncreadibles;\\r\\n\" +\n        \"[RelayCommand]\\r\\n\" +\n        \"void CollectionSwipeViewDelete(MrIncreadible mrIncreadible)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    if (MrIncreadibles.Contains(mrIncreadible))\\r\\n\" +\n        \"       MrIncreadibles.Remove(mrIncreadible);\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"[RelayCommand]\\r\\n\" +\n        \"void CollectionSwipeViewFavorite(MrIncreadible mrIncreadible)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    mrIncreadible.IsFavorite = !mrIncreadible.IsFavorite;\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cSharpRefreshCollectionViewViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"bool isRefreshing;\\r\\n\\r\\n\" +\n        \"[RelayCommand]\\r\\n\" +\n        \"void Refresh()\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    IsRefreshing = true;\\r\\n\\r\\n\" +\n        \"    LoadDataAsync();// Load anything you want\\r\\n\\r\\n\" +\n        \"    IsRefreshing = false;\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlRefreshCollectionView =\n        \"<RefreshView x:Name=\\\"RefreshView\\\"\\r\\n\" +\n        \"             IsRefreshing=\\\"{Binding IsRefreshing}\\\"\\r\\n\" +\n        \"             Command=\\\"{Binding RefreshCommand}\\\"\\r\\n\" +\n        \"             HeightRequest=\\\"400\\\">\\r\\n\" +\n        \"   <CollectionView ItemsSource=\\\"{x:Binding ControlGroupList}\\\"\\r\\n\" +\n        \"                   ItemTemplate=\\\"{x:StaticResource ControllInfoCollectionTemplate}\\\"/>\\r\\n\" +\n        \"</RefreshView>\";\n\n    [ObservableProperty]\n    string xamlVerticalListCollectionView =\n        \"<CollectionView ItemsSource=\\\"{x:Binding MrIncreadibles}\\\"\\r\\n\" +\n        \"                ItemTemplate=\\\"{x:StaticResource MrIncreadibleItemVerticalTemplate}\\\"\\r\\n\" +\n        \"                ItemsLayout=\\\"VerticalList\\\"\\r\\n\" +\n        \"                HeightRequest=\\\"400\\\"/>\";\n\n    [ObservableProperty]\n    string xamlVerticalListCollectionViewTemplate =\n        \"<ContentPage>\\r\\n\" +\n        \"    <ContentPage.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"MrIncreadibleItemVerticalTemplate\\\" \\r\\n\" +\n        \"                      x:DataType=\\\"app:MrIncreadible\\\">\\r\\n\" +\n        \"            <Frame Style=\\\"{x:StaticResource DocumentContentFrameStyle}\\\"\\r\\n\" +\n        \"                   Margin=\\\"5\\\">\\r\\n\" +\n        \"                <Grid x:DataType=\\\"app:MrIncreadible\\\"\\r\\n\" +\n        \"                      ColumnDefinitions=\\\"0.1*, 0.2*, 0.7*\\\"\\r\\n\" +\n        \"                      ColumnSpacing=\\\"2\\\">\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding Age}\\\"\\r\\n\" +\n        \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                    <toolkit:AvatarView Grid.Column=\\\"1\\\" \\r\\n\" +\n        \"                                        HeightRequest=\\\"40\\\"\\r\\n\" +\n        \"                                        WidthRequest=\\\"40\\\"\\r\\n\" +\n        \"                                        ImageSource=\\\"{x:Binding Image, Mode=OneWay}\\\"/>\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"2\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Italic\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding Title}\\\"\\r\\n\" +\n        \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                </Grid>\\r\\n\" +\n        \"            </Frame>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlHorizontalListCollectionView =\n        \"<CollectionView ItemsSource=\\\"{x:Binding MrIncreadibles}\\\"\\r\\n\" +\n        \"                ItemTemplate=\\\"{x:StaticResource MrIncreadibleItemHorizontalTemplate}\\\"\\r\\n\" +\n        \"                ItemsLayout=\\\"HorizontalList\\\"/>\";\n\n    [ObservableProperty]\n    string xamlHorizontalListCollectionViewTemplate =\n        \"<ContentPage>\\r\\n\" +\n        \"    <ContentPage.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"MrIncreadibleItemHorizontalTemplate\\\" \\r\\n\" +\n        \"                      x:DataType=\\\"app:MrIncreadible\\\">\\r\\n\" +\n        \"            <Frame Style=\\\"{x:StaticResource DocumentContentFrameStyle}\\\"\\r\\n\" +\n        \"                   Margin=\\\"5\\\" WidthRequest=\\\"300\\\">\\r\\n\" +\n        \"                <Grid x:DataType=\\\"app:MrIncreadible\\\"\\r\\n\" +\n        \"                      ColumnDefinitions=\\\"0.2*, 0.2*, 0.6*\\\"\\r\\n\" +\n        \"                      ColumnSpacing=\\\"2\\\">\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding Age}\\\"\\r\\n\" +\n        \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                    <toolkit:AvatarView Grid.Column=\\\"1\\\" \\r\\n\" +\n        \"                                        HeightRequest=\\\"50\\\"\\r\\n\" +\n        \"                                        WidthRequest=\\\"50\\\"\\r\\n\" +\n        \"                                        ImageSource=\\\"{x:Binding Image, Mode=OneWay}\\\"/>\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"2\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Italic\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding Title}\\\"\\r\\n\" +\n        \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                </Grid>\\r\\n\" +\n        \"            </Frame>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlVerticalGridCollectionView =\n        \"<!-- Adding HorizontalOptions=\\\"CenterAndExpand\\\" can help the Span in ItemsLayout to do it job -->\\r\\n\" +\n        \"<CollectionView ItemsSource=\\\"{x:Binding MrIncreadibles}\\\"\\r\\n\" +\n        \"                ItemTemplate=\\\"{x:StaticResource MrIncreadibleItemVerticalSpan2Template}\\\"\\r\\n\" +\n        \"                ItemsLayout=\\\"VerticalGrid, 2\\\"\\r\\n\" +\n        \"                HorizontalOptions=\\\"CenterAndExpand\\\"\\r\\n\" +\n        \"                HeightRequest=\\\"400\\\"/>\";\n\n    [ObservableProperty]\n    string xamlVerticalGridCollectionViewTemplate =\n        \"<ContentPage>\\r\\n\" +\n        \"    <ContentPage.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"MrIncreadibleItemVerticalSpan2Template\\\" \\r\\n\" +\n        \"                      x:DataType=\\\"app:MrIncreadible\\\">\\r\\n\" +\n        \"            <Frame Style=\\\"{x:StaticResource DocumentContentFrameStyle}\\\"\\r\\n\" +\n        \"                   Margin=\\\"5\\\">\\r\\n\" +\n        \"                <Grid x:DataType=\\\"app:MrIncreadible\\\"\\r\\n\" +\n        \"                      ColumnDefinitions=\\\"0.1*, 0.2*, 0.7*\\\"\\r\\n\" +\n        \"                      WidthRequest=\\\"200\\\"\\r\\n\" +\n        \"                      ColumnSpacing=\\\"2\\\"\\r\\n\" +\n        \"                      Padding=\\\"10\\\"\\r\\n\" +\n        \"                      Margin=\\\"5\\\">\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding Age}\\\"\\r\\n\" +\n        \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                    <toolkit:AvatarView Grid.Column=\\\"1\\\" \\r\\n\" +\n        \"                                        HeightRequest=\\\"40\\\"\\r\\n\" +\n        \"                                        WidthRequest=\\\"40\\\"\\r\\n\" +\n        \"                                        ImageSource=\\\"{x:Binding Image, Mode=OneWay}\\\"/>\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"2\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Italic\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding Title}\\\"\\r\\n\" +\n        \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                </Grid>\\r\\n\" +\n        \"            </Frame>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlHeaderFooterCollectionView =\n        \"<CollectionView ItemsSource=\\\"{x:Binding MrIncreadibles}\\\"\\r\\n\" +\n        \"                ItemTemplate=\\\"{x:StaticResource MrIncreadibleItemTemplate}\\\"\\r\\n\" +\n        \"                Header=\\\"{x:StaticResource CollectionViewHeader}\\\"\\r\\n\" +\n        \"                Footer=\\\"{x:StaticResource CollectionViewFooter}\\\"\\r\\n\" +\n        \"                HeightRequest=\\\"400\\\"\\r\\n\" +\n        \"                HorizontalOptions=\\\"StartAndExpand\\\"/>\";\n\n    [ObservableProperty]\n    string xamlHeaderFooterCollectionViewTemplate =\n        \"<ContentPage>\\r\\n\" +\n        \"    <ContentPage.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"MrIncreadibleItemTemplate\\\" \\r\\n\" +\n        \"                      x:DataType=\\\"app:MrIncreadible\\\">\\r\\n\" +\n        \"            <Frame Style=\\\"{x:StaticResource DocumentContentFrameStyle}\\\"\\r\\n\" +\n        \"                   Margin=\\\"5\\\" WidthRequest=\\\"400\\\">\\r\\n\" +\n        \"                <Grid x:DataType=\\\"app:MrIncreadible\\\"\\r\\n\" +\n        \"                      ColumnDefinitions=\\\"0.1*, 0.2*, 0.8*\\\"\\r\\n\" +\n        \"                      ColumnSpacing=\\\"5\\\">\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding Age}\\\"\\r\\n\" +\n        \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                    <toolkit:AvatarView Grid.Column=\\\"1\\\" \\r\\n\" +\n        \"                                        HeightRequest=\\\"50\\\"\\r\\n\" +\n        \"                                        WidthRequest=\\\"50\\\"\\r\\n\" +\n        \"                                        ImageSource=\\\"{x:Binding Image, Mode=OneWay}\\\"/>\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"2\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Italic\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding Title}\\\"\\r\\n\" +\n        \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                </Grid>\\r\\n\" +\n        \"            </Frame>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlHeaderFooterCollectionViewSource =\n        \"<ContentPage>\\r\\n\" +\n        \"    <ContentPage.Resources>\\r\\n\" +\n        \"        <x:String x:Key=\\\"CollectionViewHeader\\\">\\r\\n\" +\n        \"            What types of women do you like?\\r\\n\" +\n        \"        </x:String>\\r\\n\\r\\n\" +\n        \"        <x:String x:Key=\\\"CollectionViewFooter\\\">\\r\\n\" +\n        \"            Hope you like what you choose !!!\\r\\n\" +\n        \"        </x:String>\\r\\n\" +\n        \"    </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlReverseCollectionView =\n        \"<CollectionView ItemsSource=\\\"{x:Binding MrIncreadibles}\\\"\\r\\n\" +\n        \"                ItemTemplate=\\\"{x:StaticResource MrIncreadibleItemTemplate}\\\"\\r\\n\" +\n        \"                FlowDirection=\\\"RightToLeft\\\"\\r\\n\" +\n        \"                HeightRequest=\\\"400\\\"/>\";\n\n    [ObservableProperty]\n    string xamlLayoutsChangeNormalCollectionViewTemplate =\n        \"<ContentPage>\\r\\n\" +\n        \"    <ContentPage.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"ControllInfoCollectionTemplate\\\" \\r\\n\" +\n        \"                      x:DataType=\\\"app:IGalleryCardInfo\\\">\\r\\n\" +\n        \"            <Border Padding=\\\"5\\\"\\r\\n\" +\n        \"                    BackgroundColor=\\\"{x:Static core:AppColors.BlackGrey}\\\">\\r\\n\" +\n        \"                <Border.StrokeShape>\\r\\n\" +\n        \"                    <RoundRectangle CornerRadius=\\\"5\\\" />\\r\\n\" +\n        \"                </Border.StrokeShape>\\r\\n\" +\n        \"                <Grid ColumnDefinitions=\\\"0.2*, 0.2*, 0.6*\\\" \\r\\n\" +\n        \"                      HeightRequest=\\\"40\\\">\\r\\n\" +\n        \"                    <Image Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"                           Source=\\\"{x:Binding ControlIcon}\\\"\\r\\n\" +\n        \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                           LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n        \"                           FontSize=\\\"14\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding ControlName}\\\"\\r\\n\" +\n        \"                           VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                           Style=\\\"{x:StaticResource ReverseTheme}\\\"/>\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"2\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Italic\\\"\\r\\n\" +\n        \"                           LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n        \"                           FontSize=\\\"12\\\"\\r\\n\" +\n        \"                           VerticalTextAlignment=\\\"Center\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding ControlDetail}\\\"\\r\\n\" +\n        \"                           Style=\\\"{x:StaticResource ReverseTheme}\\\"/>\\r\\n\" +\n        \"                </Grid>\\r\\n\" +\n        \"            </Border>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlLayoutsChangeCollectionViewTemplate =\n         \"<ContentPage>\\r\\n\" +\n         \"    <ContentPage.Resources>\\r\\n\" +\n         \"        <DataTemplate x:Key=\\\"ControllInfoCollectionTwoItemRowTemplate\\\" \\r\\n\" +\n         \"                      x:DataType=\\\"app:IGalleryCardInfo\\\">\\r\\n\" +\n         \"            <Border Padding=\\\"5\\\"\\r\\n\" +\n         \"                    BackgroundColor=\\\"{x:Static core:AppColors.BlackGrey}\\\">\\r\\n\" +\n         \"                <Border.StrokeShape>\\r\\n\" +\n         \"                    <RoundRectangle CornerRadius=\\\"5\\\" />\\r\\n\" +\n         \"                </Border.StrokeShape>\\r\\n\" +\n         \"                <Grid ColumnDefinitions=\\\"0.2*, 0.8*\\\"\\r\\n\" +\n         \"                      RowDefinitions=\\\"0.3*, 0.7*\\\"\\r\\n\" +\n         \"                      HeightRequest=\\\"100\\\">\\r\\n\" +\n         \"                    <Image Grid.Column=\\\"0\\\"\\r\\n\" +\n         \"                           Grid.Row=\\\"0\\\"\\r\\n\" +\n         \"                           Source=\\\"{x:Binding ControlIcon}\\\"\\r\\n\" +\n         \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n         \"                    <Label Grid.Column=\\\"1\\\"\\r\\n\" +\n         \"                           Grid.Row=\\\"0\\\"\\r\\n\" +\n         \"                           FontAttributes=\\\"Bold\\\"\\r\\n\" +\n         \"                           LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n         \"                           FontSize=\\\"14\\\"\\r\\n\" +\n         \"                           VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n         \"                           HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n         \"                           Text=\\\"{x:Binding ControlName}\\\"\\r\\n\" +\n         \"                           Style=\\\"{x:StaticResource ReverseTheme}\\\"/>\\r\\n\" +\n         \"                    <Border Padding=\\\"2\\\"\\r\\n\" +\n         \"                            Grid.Column=\\\"0\\\"\\r\\n\" +\n         \"                            Grid.Row=\\\"1\\\"\\r\\n\" +\n         \"                            Grid.ColumnSpan=\\\"2\\\"\\r\\n\" +\n         \"                            BackgroundColor=\\\"{x:Static core:AppColors.BlackGrey}\\\">\\r\\n\" +\n         \"                        <Border.StrokeShape>\\r\\n\" +\n         \"                            <RoundRectangle CornerRadius=\\\"5\\\" />\\r\\n\" +\n         \"                        </Border.StrokeShape>\\r\\n\" +\n         \"                        <Label FontAttributes=\\\"Italic\\\"\\r\\n\" +\n         \"                               FontSize=\\\"12\\\"\\r\\n\" +\n         \"                               Background=\\\"{x:Static core:AppColors.BlackGrey}\\\"\\r\\n\" +\n         \"                               Text=\\\"{x:Binding ControlDetail}\\\"\\r\\n\" +\n         \"                               Style=\\\"{x:StaticResource ReverseTheme}\\\"/>\\r\\n\" +\n         \"                    </Border>\\r\\n\" +\n         \"                </Grid>\\r\\n\" +\n         \"            </Border>\\r\\n\" +\n         \"        </DataTemplate>\\r\\n\\r\\n\" +\n         \"        <DataTemplate x:Key=\\\"ControllInfoCollectionThreeItemRowTemplate\\\" \\r\\n\" +\n         \"                      x:DataType=\\\"app:IGalleryCardInfo\\\">\\r\\n\" +\n         \"            <Border Padding=\\\"5\\\"\\r\\n\" +\n         \"                    BackgroundColor=\\\"{x:Static core:AppColors.BlackGrey}\\\">\\r\\n\" +\n         \"                <Border.StrokeShape>\\r\\n\" +\n         \"                    <RoundRectangle CornerRadius=\\\"5\\\" />\\r\\n\" +\n         \"                </Border.StrokeShape>\\r\\n\" +\n         \"                <Grid ColumnDefinitions=\\\"0.2*, 0.8*\\\" \\r\\n\" +\n         \"                      HeightRequest=\\\"60\\\">\\r\\n\" +\n         \"                    <Image Grid.Column=\\\"0\\\"\\r\\n\" +\n         \"                           Source=\\\"{x:Binding ControlIcon}\\\"\\r\\n\" +\n         \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n         \"                    <Label Grid.Column=\\\"1\\\"\\r\\n\" +\n         \"                           FontAttributes=\\\"Bold\\\"\\r\\n\" +\n         \"                           LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n         \"                           FontSize=\\\"14\\\"\\r\\n\" +\n         \"                           VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n         \"                           HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n         \"                           Text=\\\"{x:Binding ControlName}\\\"\\r\\n\" +\n         \"                           Style=\\\"{x:StaticResource ReverseTheme}\\\"/>\\r\\n\" +\n         \"                </Grid>\\r\\n\" +\n         \"            </Border>\\r\\n\" +\n         \"        </DataTemplate>\\r\\n\\r\\n\" +\n         \"        <DataTemplate x:Key=\\\"ControllInfoCollectionFourItemRowTemplate\\\" \\r\\n\" +\n         \"                      x:DataType=\\\"app:IGalleryCardInfo\\\">\\r\\n\" +\n         \"            <Border Padding=\\\"5\\\"\\r\\n\" +\n         \"                    BackgroundColor=\\\"{x:Static core:AppColors.BlackGrey}\\\">\\r\\n\" +\n         \"                <Border.StrokeShape>\\r\\n\" +\n         \"                    <RoundRectangle CornerRadius=\\\"5\\\" />\\r\\n\" +\n         \"                </Border.StrokeShape>\\r\\n\" +\n         \"                <Grid RowDefinitions=\\\"0.4*, 0.6*\\\" \\r\\n\" +\n         \"                      HeightRequest=\\\"60\\\">\\r\\n\" +\n         \"                    <Image Grid.Row=\\\"0\\\"\\r\\n\" +\n         \"                           Source=\\\"{x:Binding ControlIcon}\\\"\\r\\n\" +\n         \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n         \"                    <Label Grid.Row=\\\"1\\\"\\r\\n\" +\n         \"                           FontAttributes=\\\"Bold\\\"\\r\\n\" +\n         \"                           LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n         \"                           FontSize=\\\"14\\\"\\r\\n\" +\n         \"                           VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n         \"                           HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n         \"                           Text=\\\"{x:Binding ControlName}\\\"\\r\\n\" +\n         \"                           Style=\\\"{x:StaticResource ReverseTheme}\\\"/>\\r\\n\" +\n         \"                </Grid>\\r\\n\" +\n         \"            </Border>\\r\\n\" +\n         \"        </DataTemplate>\\r\\n\" +\n         \"    </ContentPage.Resources>\\r\\n\" +\n         \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlLayoutsChangingCollectionView =\n        \"<HorizontalStackLayout VerticalOptions=\\\"Center\\\" \\r\\n\" +\n        \"                       Spacing=\\\"5\\\">\\r\\n\" +\n        \"   <Label VerticalOptions=\\\"Center\\\">\\r\\n\" +\n        \"       <Label.FormattedText>\\r\\n\" +\n        \"           <FormattedString>\\r\\n\" +\n        \"               <Span Text=\\\"Number of Span: \\\"/>\\r\\n\" +\n        \"               <Span Text=\\\"{x:Binding SpanningNumber, Mode=OneWay}\\\" FontAttributes=\\\"Bold\\\" />\\r\\n\" +\n        \"           </FormattedString>\\r\\n\" +\n        \"       </Label.FormattedText>\\r\\n\" +\n        \"   </Label>\\r\\n\" +\n        \"   <Stepper Minimum=\\\"1\\\" \\r\\n\" +\n        \"            Maximum=\\\"4\\\" \\r\\n\" +\n        \"            Value=\\\"{x:Binding SpanningNumber, Mode=TwoWay}\\\"\\r\\n\" +\n        \"            Background=\\\"Black\\\"\\r\\n\" +\n        \"            VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"</HorizontalStackLayout>\\r\\n\" +\n        \"<!-- Adding HorizontalOptions=\\\"CenterAndExpand\\\" can help the Span in ItemsLayout to do it job -->\\r\\n\" +\n        \"<CollectionView x:Name=\\\"CollectionViewSpanningChange\\\"\\r\\n\" +\n        \"                ItemTemplate=\\\"{x:StaticResource ControllInfoCollectionTemplate}\\\"\\r\\n\" +\n        \"                ItemsSource=\\\"{x:Binding ControlGroupList, Mode=OneWay}\\\"\\r\\n\" +\n        \"                HorizontalOptions=\\\"CenterAndExpand\\\"\\r\\n\" +\n        \"                HeightRequest=\\\"400\\\">\\r\\n\" +\n        \"   <CollectionView.ItemsLayout>\\r\\n\" +\n        \"       <GridItemsLayout Orientation=\\\"Vertical\\\"\\r\\n\" +\n        \"                        Span=\\\"{x:Binding SpanningNumber, Mode=TwoWay}\\\"\\r\\n\" +\n        \"                        HorizontalItemSpacing=\\\"5\\\"\\r\\n\" +\n        \"                        VerticalItemSpacing=\\\"5\\\"/>\\r\\n\" +\n        \"   </CollectionView.ItemsLayout>\\r\\n\" +\n        \"</CollectionView>\";\n\n    [ObservableProperty]\n    string cSharpLayoutsChangingCollectionViewCodeBehind =\n        \"#region [ Service ]\\r\\n\" +\n        \"protected readonly CollectionViewPageViewModel ViewModel;\\r\\n\" +\n        \"#endregion\\r\\n\\r\\n\" +\n        \"#region [ CTor ]\\r\\n\" +\n        \"public CollectionViewPage(CollectionViewPageViewModel vm)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    InitializeComponent();\\r\\n\\r\\n\" +\n        \"    BindingContext = ViewModel = vm;\\r\\n\" +\n        \"}\\r\\n\" +\n        \"#endregion\\r\\n\\r\\n\" +\n        \"#region [ Override ]\\r\\n\" +\n        \"protected override void OnAppearing()\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    base.OnAppearing();\\r\\n\" +\n        \"    ViewModel.SpanningNumberChanged += ViewModelSpanningNumberPropertyChanged;\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"protected override void OnDisappearing()\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    base.OnDisappearing();\\r\\n\" +\n        \"    ViewModel.SpanningNumberChanged -= ViewModelSpanningNumberPropertyChanged;\\r\\n\" +\n        \"}\\r\\n\" +\n        \"#endregion\\r\\n\\r\\n\" +\n        \"#region [ Event Handler ]\\r\\n\" +\n        \"private void ViewModelSpanningNumberPropertyChanged(object sender, PropertyChangedEventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    if (e.PropertyName == \\\"SpanningNumber\\\")\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        switch (ViewModel.SpanningNumber)\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            case 1:\\r\\n\" +\n        \"                 CollectionViewSpanningChange.ItemTemplate = (DataTemplate)Resources[\\\"ControllInfoCollectionTemplate\\\"];\\r\\n\" +\n        \"                 break;\\r\\n\" +\n        \"            case 2:\\r\\n\" +\n        \"                 CollectionViewSpanningChange.ItemTemplate = (DataTemplate)Resources[\\\"ControllInfoCollectionTwoItemRowTemplate\\\"];\\r\\n\" +\n        \"                 break;\\r\\n\" +\n        \"            case 3:\\r\\n\" +\n        \"                 CollectionViewSpanningChange.ItemTemplate = (DataTemplate)Resources[\\\"ControllInfoCollectionThreeItemRowTemplate\\\"];\\r\\n\" +\n        \"                 break;\\r\\n\" +\n        \"            case 4:\\r\\n\" +\n        \"                 CollectionViewSpanningChange.ItemTemplate = (DataTemplate)Resources[\\\"ControllInfoCollectionFourItemRowTemplate\\\"];\\r\\n\" +\n        \"                 break;\\r\\n\" +\n        \"        }\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\\r\\n\" +\n        \"#endregion\";\n\n    [ObservableProperty]\n    string cSharpLayoutsChangingCollectionViewViewModel =\n        \"#region [ Properties ]\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"int spanningNumber = 1;\\r\\n\" +\n        \"#endregion\\r\\n\\r\\n\" +\n        \"#region [ Event ]\\r\\n\" +\n        \"public event PropertyChangedEventHandler SpanningNumberChanged;\\r\\n\\r\\n\" +\n        \"protected virtual void OnSpanningNumberChangedEvent([CallerMemberName] string propertyName = null)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    SpanningNumberChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"#endregion\\r\\n\\r\\n\" +\n        \"#region [ Methods ]\\r\\n\" +\n        \"partial void OnSpanningNumberChanged(int value)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    OnSpanningNumberChangedEvent(nameof(SpanningNumber));\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"#endregion\";\n\n    [ObservableProperty]\n    string xamlSingleSelectionCollectionView =\n        \"<Label>\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"Current selected item: \\\" />\\r\\n\" +\n        \"           <Span Text=\\\"{x:Binding CurrentSingleSelectedItemLabel}\\\"\\r\\n\" +\n        \"                 TextDecorations=\\\"Underline\\\" />\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\\r\\n\" +\n        \"<Label>\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"Previous selected item: \\\" />\\r\\n\" +\n        \"           <Span Text=\\\"{x:Binding PreviousSingleSelectedItemLabel}\\\"\\r\\n\" +\n        \"                 TextDecorations=\\\"Underline\\\" />\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\\r\\n\" +\n        \"<CollectionView ItemTemplate=\\\"{x:StaticResource ControllInfoCollectionFourItemRowTemplate}\\\"\\r\\n\" +\n        \"                ItemsLayout=\\\"VerticalGrid, 4\\\"\\r\\n\" +\n        \"                ItemsSource=\\\"{x:Binding ControlGroupList}\\\"\\r\\n\" +\n        \"                SelectedItem=\\\"{x:Binding SingleSelectedControlInformation}\\\"\\r\\n\" +\n        \"                SelectionChangedCommand=\\\"{x:Binding SingleSelectCollectionViewCommand}\\\"\\r\\n\" +\n        \"                HorizontalOptions=\\\"CenterAndExpand\\\"\\r\\n\" +\n        \"                SelectionMode=\\\"Single\\\"\\r\\n\" +\n        \"                HeightRequest=\\\"400\\\"/>\";\n\n    [ObservableProperty]\n    string xamlSingleSelectionCollectionViewTemplate =\n        \"<ContentPage>\\r\\n\" +\n        \"    <ContentPage.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"ControllInfoCollectionFourItemRowTemplate\\\" \\r\\n\" +\n        \"                      x:DataType=\\\"app:IGalleryCardInfo\\\">\\r\\n\" +\n        \"            <Border Padding=\\\"5\\\"\\r\\n\" +\n        \"                    BackgroundColor=\\\"{x:Static core:AppColors.BlackGrey}\\\">\\r\\n\" +\n        \"                <Border.StrokeShape>\\r\\n\" +\n        \"                    <RoundRectangle CornerRadius=\\\"5\\\" />\\r\\n\" +\n        \"                </Border.StrokeShape>\\r\\n\" +\n        \"                <Grid RowDefinitions=\\\"0.4*, 0.6*\\\" \\r\\n\" +\n        \"                      HeightRequest=\\\"60\\\">\\r\\n\" +\n        \"                    <Image Grid.Row=\\\"0\\\"\\r\\n\" +\n        \"                           Source=\\\"{x:Binding ControlIcon}\\\"\\r\\n\" +\n        \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                    <Label Grid.Row=\\\"1\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                           LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n        \"                           FontSize=\\\"14\\\"\\r\\n\" +\n        \"                           VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                           HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding ControlName}\\\"\\r\\n\" +\n        \"                           Style=\\\"{x:StaticResource ReverseTheme}\\\"/>\\r\\n\" +\n        \"                </Grid>\\r\\n\" +\n        \"            </Border>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpSingleSelectionCollectionViewViewModel =\n        \"#region [ Properties ]\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"string currentSingleSelectedItemLabel = string.Empty;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"string previousSingleSelectedItemLabel = string.Empty;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"IGalleryCardInfo singleSelectedControlInformation;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"ObservableCollection<IGalleryCardInfo> controlGroupList;\\r\\n\\r\\n\" +\n        \"#endregion\\r\\n\" +\n        \"[RelayCommand]\\r\\n\" +\n        \"void SingleSelectCollectionView()\\r\\n\\r\\n\" +\n        \"#region [ Relay Commands ]\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    if (CurrentSingleSelectedItemLabel is not null)\\r\\n\" +\n        \"       PreviousSingleSelectedItemLabel = CurrentSingleSelectedItemLabel;\\r\\n\" +\n        \"    CurrentSingleSelectedItemLabel = SingleSelectedControlInformation.ControlName;\\r\\n\" +\n        \"}\\r\\n\" +\n        \"#endregion\";\n\n    [ObservableProperty]\n    string xamlMultipleSelectionCollectionView =\n        \"<Label LineBreakMode=\\\"HeadTruncation\\\">\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"Selected items: \\\" />\\r\\n\" +\n        \"           <Span Text=\\\"{x:Binding CurrentMultipleSelectedListItemLabel}\\\"\\r\\n\" +\n        \"                 TextDecorations=\\\"Underline\\\" />\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\\r\\n\" +\n        \"<Label>\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"Current selected item: \\\" />\\r\\n\" +\n        \"           <Span Text=\\\"{x:Binding CurrentMultipleSelectedItemLabel}\\\"\\r\\n\" +\n        \"                 TextDecorations=\\\"Underline\\\" />\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\\r\\n\" +\n        \"<Label>\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"Previous selected item: \\\" />\\r\\n\" +\n        \"           <Span Text=\\\"{x:Binding PreviousMultipleSelectedItemLabel}\\\"\\r\\n\" +\n        \"                 TextDecorations=\\\"Underline\\\" />\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\\r\\n\" +\n        \"<CollectionView ItemTemplate=\\\"{x:StaticResource ControllInfoCollectionFourItemRowTemplate}\\\"\\r\\n\" +\n        \"                ItemsLayout=\\\"VerticalGrid, 4\\\"\\r\\n\" +\n        \"                ItemsSource=\\\"{x:Binding ControlGroupList}\\\"\\r\\n\" +\n        \"                SelectedItems=\\\"{x:Binding MultipleSelectedControlInformationList, Mode=TwoWay}\\\"\\r\\n\" +\n        \"                SelectionChangedCommand=\\\"{x:Binding MultipleSelectCollectionViewCommand}\\\"\\r\\n\" +\n        \"                HorizontalOptions=\\\"CenterAndExpand\\\"\\r\\n\" +\n        \"                SelectionMode=\\\"Multiple\\\"\\r\\n\" +\n        \"                HeightRequest=\\\"400\\\"/>\";\n\n    [ObservableProperty]\n    string xamlMultipleSelectionCollectionViewTemplate =\n        \"<ContentPage>\\r\\n\" +\n        \"    <ContentPage.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"ControllInfoCollectionFourItemRowTemplate\\\" \\r\\n\" +\n        \"              x:DataType=\\\"app:IGalleryCardInfo\\\">\\r\\n\" +\n        \"            <Border Padding=\\\"5\\\"\\r\\n\" +\n        \"                    BackgroundColor=\\\"{x:Static core:AppColors.BlackGrey}\\\">\\r\\n\" +\n        \"                <Border.StrokeShape>\\r\\n\" +\n        \"                    <RoundRectangle CornerRadius=\\\"5\\\" />\\r\\n\" +\n        \"                </Border.StrokeShape>\\r\\n\" +\n        \"                <Grid RowDefinitions=\\\"0.4*, 0.6*\\\" \\r\\n\" +\n        \"                       HeightRequest=\\\"60\\\">\\r\\n\" +\n        \"                    <Image Grid.Row=\\\"0\\\"\\r\\n\" +\n        \"                  Source=\\\"{x:Binding ControlIcon}\\\"\\r\\n\" +\n        \"                  VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                    <Label Grid.Row=\\\"1\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                           LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n        \"                           FontSize=\\\"14\\\"\\r\\n\" +\n        \"                           VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                           HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding ControlName}\\\"\\r\\n\" +\n        \"                           Style=\\\"{x:StaticResource ReverseTheme}\\\"/>\\r\\n\" +\n        \"                </Grid>\\r\\n\" +\n        \"            </Border>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpMultipleSelectionCollectionViewViewModel =\n        \"#region [ Properties ]\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"string currentMultipleSelectedItemLabel = string.Empty;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"string previousMultipleSelectedItemLabel = string.Empty;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"string currentMultipleSelectedListItemLabel = string.Empty;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"IEnumerable<object> multipleSelectedControlInformationList = new List<object>();\\r\\n\\r\\n\" +\n        \"#endregion\\r\\n\" +\n        \"[RelayCommand]\\r\\n\" +\n        \"void MultipleSelectCollectionView()\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     if (CurrentMultipleSelectedItemLabel is not null)\\r\\n\" +\n        \"       PreviousMultipleSelectedItemLabel = CurrentMultipleSelectedItemLabel;\\r\\n\" +\n        \"     if (MultipleSelectedControlInformationList is not null)\\r\\n\" +\n        \"     {\\r\\n\" +\n        \"         ObservableCollection<IGalleryCardInfo> itemList = new();\\r\\n\" +\n        \"         foreach (var item in MultipleSelectedControlInformationList)\\r\\n\" +\n        \"         {\\r\\n\" +\n        \"             if (item is IGalleryCardInfo galleryCardInfo)\\r\\n\" +\n        \"             {\\r\\n\" +\n        \"                 itemList.Add(galleryCardInfo);\\r\\n\" +\n        \"             }\\r\\n\" +\n        \"         }\\r\\n\" +\n        \"         CurrentMultipleSelectedListItemLabel = string.Join(\\\", \\\", itemList.Select(item => item.ControlName.ToString()));\\r\\n\\r\\n\" +\n        \"         if (MultipleSelectedControlInformationList.Count() != 0)\\r\\n\" +\n        \"         {\\r\\n\" +\n        \"             CurrentMultipleSelectedItemLabel = itemList.Last().ControlName;\\r\\n\" +\n        \"         }\\r\\n\" +\n        \"     }\\r\\n\" +\n        \"}\\r\\n\" +\n        \"#endregion\";\n\n    [ObservableProperty]\n    string cSharpTemplateSelectorCollectionViewEventHandler =\n        \"void OnFilterItemChanged(object sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    var picker = (Picker)sender;\\r\\n\" +\n        \"    var selectedFilter = picker.SelectedItem.ToString();\\r\\n\\r\\n\" +\n        \"    var collectionView = CollectionViewItemLayoutChanged;\\r\\n\" +\n        \"    var itemsSource = ViewModel.ControlGroupList;\\r\\n\\r\\n\" +\n        \"    var filteredItems = new ObservableCollection<IGalleryCardInfo>(itemsSource.Where(x => x.CardType.ToString() == selectedFilter));\\r\\n\\r\\n\" +\n        \"    var itemsToSelect = itemsSource.Where(x => x.CardType.ToString() == selectedFilter).ToList();\\r\\n\\r\\n\" +\n        \"    collectionView.SelectedItems.Clear();\\r\\n\" +\n        \"    foreach (var item in itemsToSelect)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        collectionView.SelectedItems.Add(item);\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    // Refresh the CollectionView\\r\\n\" +\n        \"    collectionView.ItemsSource = null;\\r\\n\" +\n        \"    collectionView.ItemsSource = itemsSource;\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cSharpTemplateSelector =\n        \"public class TemplateSelector : DataTemplateSelector\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    #region [ Properties ]\\r\\n\" +\n        \"    public DataTemplate NormalTemplate { get; set; }\\r\\n\" +\n        \"    public DataTemplate SelectedTemplate { get; set; }\\r\\n\" +\n        \"    // Add more templates as needed\\r\\n\" +\n        \"    #endregion\\r\\n\\r\\n\" +\n        \"    #region [ CTor ]\\r\\n\" +\n        \"    public TemplateSelector()\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"    #endregion\\r\\n\\r\\n\" +\n        \"    #region [ Override ]\\\\r\\\\n\\\" +\" +\n        \"    protected override DataTemplate OnSelectTemplate(object item, BindableObject container)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        var collectionView = (CollectionView)container;\\r\\n\" +\n        \"        var selectedItems = collectionView.SelectedItems;\\r\\n\\r\\n\" +\n        \"        return selectedItems.Contains(item) ? SelectedTemplate : NormalTemplate;\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"    #endregion\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cSharpTemplateSelectorCollectionViewViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"ObservableCollection<string> filterPickerItems;\";\n\n    [ObservableProperty]\n    string xamlTemplateSelectorCollectionViewTemplate =\n        \"<ContentPage>\\r\\n\" +\n        \"    <ContentPage.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"NormalItemTemplate\\\" \\r\\n\" +\n        \"                      x:DataType=\\\"app:IGalleryCardInfo\\\">\\r\\n\" +\n        \"            <Border Padding=\\\"5\\\"\\r\\n\" +\n        \"                    BackgroundColor=\\\"{x:Static core:AppColors.BlackGrey}\\\"\\r\\n\" +\n        \"                    Margin=\\\"5\\\">\\r\\n\" +\n        \"                <Border.StrokeShape>\\r\\n\" +\n        \"                    <RoundRectangle CornerRadius=\\\"5\\\" />\\r\\n\" +\n        \"                </Border.StrokeShape>\\r\\n\" +\n        \"                <Grid ColumnDefinitions=\\\"0.2*, 0.2*, 0.6*\\\" \\r\\n\" +\n        \"                      HeightRequest=\\\"40\\\">\\r\\n\" +\n        \"                    <Image Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"                           Source=\\\"{x:Binding ControlIcon}\\\"\\r\\n\" +\n        \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                           LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n        \"                           FontSize=\\\"14\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding ControlName}\\\"\\r\\n\" +\n        \"                           VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                           Style=\\\"{x:StaticResource ReverseTheme}\\\"/>\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"2\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Italic\\\"\\r\\n\" +\n        \"                           LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n        \"                           FontSize=\\\"12\\\"\\r\\n\" +\n        \"                           VerticalTextAlignment=\\\"Center\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding ControlDetail}\\\"\\r\\n\" +\n        \"                           Style=\\\"{x:StaticResource ReverseTheme}\\\"/>\\r\\n\" +\n        \"                </Grid>\\r\\n\" +\n        \"            </Border>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"SelectedItemTemplate\\\" \\r\\n\" +\n        \"                      x:DataType=\\\"app:IGalleryCardInfo\\\">\\r\\n\" +\n        \"            <Border Padding=\\\"10\\\"\\r\\n\" +\n        \"                    BackgroundColor=\\\"{x:Static core:AppColors.MauilandPrimary}\\\"\\r\\n\" +\n        \"                    Margin=\\\"5\\\">\\r\\n\" +\n        \"                <Border.StrokeShape>\\r\\n\" +\n        \"                    <RoundRectangle CornerRadius=\\\"5\\\" />\\r\\n\" +\n        \"                </Border.StrokeShape>\\r\\n\" +\n        \"                <Grid ColumnDefinitions=\\\"0.2*, 0.2*, 0.6*\\\" \\r\\n\" +\n        \"                      HeightRequest=\\\"60\\\">\\r\\n\" +\n        \"                    <Image Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"                           Source=\\\"{x:Binding ControlIcon}\\\"\\r\\n\" +\n        \"                           VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"                           LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n        \"                           FontSize=\\\"16\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding ControlName}\\\"\\r\\n\" +\n        \"                           VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                           Style=\\\"{x:StaticResource ReverseTheme}\\\"/>\\r\\n\" +\n        \"                    <Label Grid.Column=\\\"2\\\"\\r\\n\" +\n        \"                           FontAttributes=\\\"Italic\\\"\\r\\n\" +\n        \"                           LineBreakMode=\\\"TailTruncation\\\"\\r\\n\" +\n        \"                           FontSize=\\\"14\\\"\\r\\n\" +\n        \"                           VerticalTextAlignment=\\\"Center\\\"\\r\\n\" +\n        \"                           Text=\\\"{x:Binding ControlDetail}\\\"\\r\\n\" +\n        \"                           Style=\\\"{x:StaticResource ReverseTheme}\\\"/>\\r\\n\" +\n        \"                </Grid>\\r\\n\" +\n        \"            </Border>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\\r\\n\" +\n        \"        <app:TemplateSelector x:Key=\\\"TemplateSelector\\\"\\r\\n\" +\n        \"                              NormalTemplate=\\\"{StaticResource NormalItemTemplate}\\\"\\r\\n\" +\n        \"                              SelectedTemplate=\\\"{StaticResource SelectedItemTemplate}\\\" />\" +\n        \"    </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlTemplateSelectorCollectionView =\n        \"<Picker Title=\\\"Filter\\\" \\r\\n\" +\n        \"        TitleColor=\\\"Blue\\\"\\r\\n\" +\n        \"        ItemsSource=\\\"{x:Binding FilterPickerItems}\\\"\\r\\n\" +\n        \"        SelectedIndexChanged=\\\"OnFilterItemChanged\\\"\\r\\n\" +\n        \"        BackgroundColor=\\\"LightGray\\\"/>\\r\\n\" +\n        \"<CollectionView x:Name=\\\"CollectionViewItemLayoutChanged\\\" \\r\\n\" +\n        \"                ItemTemplate=\\\"{x:StaticResource TemplateSelector}\\\"\\r\\n\" +\n        \"                ItemsSource=\\\"{x:Binding ControlGroupList, Mode=OneWay}\\\"\\r\\n\" +\n        \"                SelectionMode=\\\"None\\\"\\r\\n\" +\n        \"                HeightRequest=\\\"400\\\"/>\";\n    #endregion\n\n    #region [ Override ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n        RefreshAsync().FireAndForget();\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshPageAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    void CollectionSwipeViewDelete(MrIncreadible mrIncreadible)\n    {\n        if (MrIncreadibles.Contains(mrIncreadible))\n            MrIncreadibles.Remove(mrIncreadible);\n    }\n\n    [RelayCommand]\n    void CollectionSwipeViewFavorite(MrIncreadible mrIncreadible)\n    {\n        mrIncreadible.IsFavorite = !mrIncreadible.IsFavorite;\n    }\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        IsRefreshing = true;\n\n        LoadDataAsync().FireAndForget();\n        LoadRefreshItemSourceAsync().FireAndForget();\n\n        IsRefreshing = false;\n    }\n\n    [RelayCommand]\n    async Task RefreshCollectionViewThatHaveRefreshViewAsync()\n    {\n        IsRefreshing = true;\n        LoadRefreshItemSourceAsync().FireAndForget();\n\n        IsRefreshing = false;\n    }\n\n    [RelayCommand]\n    void SingleSelectCollectionView()\n    {\n        if (CurrentSingleSelectedItemLabel is not null)\n            PreviousSingleSelectedItemLabel = CurrentSingleSelectedItemLabel;\n        CurrentSingleSelectedItemLabel = SingleSelectedControlInformation.ControlName;\n    }\n\n    [RelayCommand]\n    void MultipleSelectCollectionView()\n    {\n        if (CurrentMultipleSelectedItemLabel is not null)\n            PreviousMultipleSelectedItemLabel = CurrentMultipleSelectedItemLabel;\n        if (MultipleSelectedControlInformationList is not null)\n        {\n            ObservableCollection<IGalleryCardInfo> itemList = new();\n            foreach (var item in MultipleSelectedControlInformationList)\n            {\n                if (item is IGalleryCardInfo galleryCardInfo)\n                {\n                    itemList.Add(galleryCardInfo);\n                }\n            }\n            CurrentMultipleSelectedListItemLabel = string.Join(\", \", itemList.Select(item => item.ControlName.ToString()));\n\n            if (MultipleSelectedControlInformationList.Count() != 0)\n            {\n                CurrentMultipleSelectedItemLabel = itemList.Last().ControlName;\n            }\n        }\n    }\n\n    [RelayCommand]\n    async Task RefreshPageAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n\n    #region [ Event ]\n    public event PropertyChangedEventHandler SpanningNumberChanged;\n\n    protected virtual void OnSpanningNumberChangedEvent([CallerMemberName] string propertyName = null)\n    {\n        SpanningNumberChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));\n    }\n    #endregion\n\n    #region [ Methods ]\n    partial void OnSpanningNumberChanged(int value)\n    {\n        OnSpanningNumberChangedEvent(nameof(SpanningNumber));\n    }\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n        //ControlGroupList.Clear();\n        ControlGroupList = new ObservableCollection<IGalleryCardInfo>();\n        FilterPickerItems = Enum.GetNames(typeof(GalleryCardType)).ToObservableCollection();\n        FilterPickerItems.Add(\"None\");\n        SelectedFilterPickerItem = FilterPickerItems.Last();\n\n        if (ControlInformation is null)\n            return;\n\n        var items = await MauiControlsService.GetControlsAsync(ControlInformation.GroupName);\n        foreach (var item in items)\n        {\n            ControlGroupList.Add(item);\n        }\n\n        IDictionary<double, ImageSource> images = MemeService.GetAllMemeImage();\n        IDictionary<double, string> titles = MemeService.GetAllMemeTitle();\n\n        MrIncreadibles = new ObservableCollection<MrIncreadible>();\n\n        foreach (var key in titles.Keys)\n        {\n            if (images.ContainsKey(key))\n            {\n                MrIncreadibles.Add(new MrIncreadible\n                {\n                    Age = key,\n                    Title = titles[key],\n                    Image = images[key],\n                    IsFavorite = false\n                });\n            }\n        }\n        return;\n    }\n\n    async Task LoadRefreshItemSourceAsync()\n    {\n        if (ControlGroupList is null || !ControlGroupList.Any())\n            return;\n\n        ControlGroupListForRefreshExample = new();\n\n        foreach (var item in ControlGroupList)\n        {\n            ControlGroupListForRefreshExample.Add(item);\n        }\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/Models/MrIncreadible.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class MrIncreadible\n{\n    public double Age { get; set; }\n    public string Title { get; set; }\n    public ImageSource Image { get; set; }\n    public bool IsFavorite { get; set; }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/ControllInfoCollectionFourItemRowTemplateContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.ControllInfoCollectionFourItemRowTemplateContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\">\n    <Border\n        Margin=\"5\"\n        Padding=\"5\"\n        BackgroundColor=\"{x:Static core:AppColors.BlackGrey}\">\n        <Border.StrokeShape>\n            <RoundRectangle CornerRadius=\"5\" />\n        </Border.StrokeShape>\n        <Grid HeightRequest=\"60\" RowDefinitions=\"0.4*, 0.6*\">\n            <Image\n                Grid.Row=\"0\"\n                Source=\"{x:Binding ComponentData.ControlIcon,\n                                   Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n            <Label\n                Grid.Row=\"1\"\n                FontAttributes=\"Bold\"\n                FontSize=\"14\"\n                HorizontalOptions=\"Center\"\n                LineBreakMode=\"TailTruncation\"\n                Text=\"{x:Binding ComponentData.ControlName,\n                                 Source={x:Reference root}}\"\n                VerticalTextAlignment=\"Center\" />\n        </Grid>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/ControllInfoCollectionFourItemRowTemplateContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class ControllInfoCollectionFourItemRowTemplateContentView : ContentView\n{\n    #region [ CTor ]\n    public ControllInfoCollectionFourItemRowTemplateContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(IGalleryCardInfo),\n        typeof(ControllInfoCollectionFourItemRowTemplateContentView),\n        default(IGalleryCardInfo)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public IGalleryCardInfo ComponentData\n    {\n        get => (IGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/ControllInfoCollectionTemplateContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.ControllInfoCollectionTemplateContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\">\n    <Border\n        Margin=\"5\"\n        Padding=\"5\"\n        BackgroundColor=\"{x:Static core:AppColors.BlackGrey}\">\n        <Border.StrokeShape>\n            <RoundRectangle CornerRadius=\"5\" />\n        </Border.StrokeShape>\n        <Grid ColumnDefinitions=\"0.2*, 0.2*, 0.6*\" HeightRequest=\"40\">\n            <Image\n                Grid.Column=\"0\"\n                Source=\"{x:Binding ComponentData.ControlIcon,\n                                   Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n            <Label\n                Grid.Column=\"1\"\n                FontAttributes=\"Bold\"\n                FontSize=\"14\"\n                LineBreakMode=\"TailTruncation\"\n                Text=\"{x:Binding ComponentData.ControlName,\n                                 Source={x:Reference root}}\"\n                VerticalTextAlignment=\"Center\" />\n            <Label\n                Grid.Column=\"2\"\n                FontAttributes=\"Italic\"\n                FontSize=\"12\"\n                LineBreakMode=\"TailTruncation\"\n                Text=\"{x:Binding ComponentData.ControlDetail,\n                                 Source={x:Reference root}}\"\n                VerticalTextAlignment=\"Center\" />\n        </Grid>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/ControllInfoCollectionTemplateContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class ControllInfoCollectionTemplateContentView : ContentView\n{\n    #region [ CTor ]\n    public ControllInfoCollectionTemplateContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(IGalleryCardInfo),\n        typeof(ControllInfoCollectionTemplateContentView),\n        default(IGalleryCardInfo)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public IGalleryCardInfo ComponentData\n    {\n        get => (IGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/ControllInfoCollectionThreeItemRowTemplateContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.ControllInfoCollectionThreeItemRowTemplateContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\">\n    <Border\n        Margin=\"5\"\n        Padding=\"5\"\n        BackgroundColor=\"{x:Static core:AppColors.BlackGrey}\">\n        <Border.StrokeShape>\n            <RoundRectangle CornerRadius=\"5\" />\n        </Border.StrokeShape>\n        <Grid ColumnDefinitions=\"0.2*, 0.8*\" HeightRequest=\"60\">\n            <Image\n                Grid.Column=\"0\"\n                Source=\"{x:Binding ComponentData.ControlIcon,\n                                   Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n            <Label\n                Grid.Column=\"1\"\n                FontAttributes=\"Bold\"\n                FontSize=\"14\"\n                HorizontalOptions=\"Center\"\n                LineBreakMode=\"TailTruncation\"\n                Text=\"{x:Binding ComponentData.ControlName,\n                                 Source={x:Reference root}}\"\n                VerticalTextAlignment=\"Center\" />\n        </Grid>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/ControllInfoCollectionThreeItemRowTemplateContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class ControllInfoCollectionThreeItemRowTemplateContentView : ContentView\n{\n    #region [ CTor ]\n    public ControllInfoCollectionThreeItemRowTemplateContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(IGalleryCardInfo),\n        typeof(ControllInfoCollectionThreeItemRowTemplateContentView),\n        default(IGalleryCardInfo)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public IGalleryCardInfo ComponentData\n    {\n        get => (IGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/ControllInfoCollectionTwoItemRowTemplateContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.ControllInfoCollectionTwoItemRowTemplateContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\">\n    <Border\n        Margin=\"5\"\n        Padding=\"5\"\n        BackgroundColor=\"{x:Static core:AppColors.BlackGrey}\">\n        <Border.StrokeShape>\n            <RoundRectangle CornerRadius=\"5\" />\n        </Border.StrokeShape>\n        <Grid\n            ColumnDefinitions=\"0.2*, 0.8*\"\n            HeightRequest=\"100\"\n            RowDefinitions=\"0.3*, 0.7*\">\n            <Image\n                Grid.Row=\"0\"\n                Grid.Column=\"0\"\n                Source=\"{x:Binding ComponentData.ControlIcon,\n                                   Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n            <Label\n                Grid.Row=\"0\"\n                Grid.Column=\"1\"\n                FontAttributes=\"Bold\"\n                FontSize=\"14\"\n                HorizontalOptions=\"Center\"\n                LineBreakMode=\"TailTruncation\"\n                Text=\"{x:Binding ComponentData.ControlName,\n                                 Source={x:Reference root}}\"\n                VerticalTextAlignment=\"Center\" />\n            <Border\n                Grid.Row=\"1\"\n                Grid.Column=\"0\"\n                Grid.ColumnSpan=\"2\"\n                Padding=\"2\"\n                BackgroundColor=\"{x:Static core:AppColors.BlackGrey}\">\n                <Border.StrokeShape>\n                    <RoundRectangle CornerRadius=\"5\" />\n                </Border.StrokeShape>\n                <Label\n                    Background=\"{x:Static core:AppColors.BlackGrey}\"\n                    FontAttributes=\"Italic\"\n                    FontSize=\"12\"\n                    Text=\"{x:Binding ComponentData.ControlDetail,\n                                     Source={x:Reference root}}\" />\n            </Border>\n        </Grid>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/ControllInfoCollectionTwoItemRowTemplateContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class ControllInfoCollectionTwoItemRowTemplateContentView : ContentView\n{\n    #region [ CTor ]\n    public ControllInfoCollectionTwoItemRowTemplateContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(IGalleryCardInfo),\n        typeof(ControllInfoCollectionTwoItemRowTemplateContentView),\n        default(IGalleryCardInfo)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public IGalleryCardInfo ComponentData\n    {\n        get => (IGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/MrIncreadibleCollectionTemplateWithSwipeContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.MrIncreadibleCollectionTemplateWithSwipeContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\">\n    <SwipeView Margin=\"5\" WidthRequest=\"400\">\n        <SwipeView.LeftItems>\n            <SwipeItems>\n                <SwipeItem\n                    BackgroundColor=\"{x:Static core:AppColors.Green}\"\n                    Command=\"{Binding Path=BindingContext.CollectionSwipeViewFavoriteCommand, Source={x:RelativeSource AncestorType={x:Type ContentPage}}}\"\n                    CommandParameter=\"{x:Binding}\"\n                    IconImageSource=\"{x:Static core:FluentUIIcon.Ic_fluent_heart_24_regular}\"\n                    Text=\"Favorite\" />\n                <SwipeItem\n                    BackgroundColor=\"{x:Static core:AppColors.LightBlue}\"\n                    Command=\"{Binding Path=BindingContext.CollectionSwipeViewDeleteCommand, Source={x:RelativeSource AncestorType={x:Type ContentPage}}}\"\n                    CommandParameter=\"{Binding}\"\n                    IconImageSource=\"{x:Static core:FluentUIIcon.Ic_fluent_delete_24_regular}\"\n                    Text=\"Delete\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <Frame BorderColor=\"White\" Style=\"{x:StaticResource DocumentContentFrameStyle}\">\n            <Grid x:DataType=\"core:MrIncreadible\" ColumnDefinitions=\"0.1*, 0.2*, 0.6*\">\n                <Label\n                    Grid.Column=\"0\"\n                    FontAttributes=\"Bold\"\n                    Text=\"{x:Binding ComponentData.Age,\n                                     Source={x:Reference root}}\"\n                    VerticalOptions=\"Center\" />\n                <toolkit:AvatarView\n                    Grid.Column=\"1\"\n                    HeightRequest=\"50\"\n                    ImageSource=\"{x:Binding ComponentData.Image,\n                                            Source={x:Reference root},\n                                            Mode=OneWay}\"\n                    Text=\"{x:Binding ComponentData.Age,\n                                     Source={x:Reference root},\n                                     Mode=OneWay}\"\n                    WidthRequest=\"50\" />\n                <Label\n                    Grid.Column=\"2\"\n                    FontAttributes=\"Italic\"\n                    Text=\"{x:Binding ComponentData.Title,\n                                     Source={x:Reference root}}\"\n                    VerticalOptions=\"Center\" />\n            </Grid>\n        </Frame>\n    </SwipeView>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/MrIncreadibleCollectionTemplateWithSwipeContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class MrIncreadibleCollectionTemplateWithSwipeContentView : ContentView\n{\n    #region [ CTor ]\n    public MrIncreadibleCollectionTemplateWithSwipeContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(MrIncreadible),\n        typeof(MrIncreadibleCollectionTemplateWithSwipeContentView),\n        default(MrIncreadible)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public MrIncreadible ComponentData\n    {\n        get => (MrIncreadible)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/MrIncreadibleItemHorizontalTemplateContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.MrIncreadibleItemHorizontalTemplateContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\">\n    <Frame\n        Margin=\"5\"\n        BorderColor=\"White\"\n        Style=\"{x:StaticResource DocumentContentFrameStyle}\"\n        WidthRequest=\"300\">\n        <Grid\n            x:DataType=\"core:MrIncreadible\"\n            ColumnDefinitions=\"0.2*, 0.2*, 0.6*\"\n            ColumnSpacing=\"2\">\n            <Label\n                Grid.Column=\"0\"\n                FontAttributes=\"Bold\"\n                Text=\"{x:Binding ComponentData.Age,\n                                 Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n            <toolkit:AvatarView\n                Grid.Column=\"1\"\n                HeightRequest=\"50\"\n                ImageSource=\"{x:Binding ComponentData.Image,\n                                        Source={x:Reference root},\n                                        Mode=OneWay}\"\n                WidthRequest=\"50\" />\n            <Label\n                Grid.Column=\"2\"\n                FontAttributes=\"Italic\"\n                Text=\"{x:Binding ComponentData.Title,\n                                 Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n        </Grid>\n    </Frame>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/MrIncreadibleItemHorizontalTemplateContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class MrIncreadibleItemHorizontalTemplateContentView : ContentView\n{\n    #region [ CTor ]\n    public MrIncreadibleItemHorizontalTemplateContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(MrIncreadible),\n        typeof(MrIncreadibleItemHorizontalTemplateContentView),\n        default(MrIncreadible)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public MrIncreadible ComponentData\n    {\n        get => (MrIncreadible)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/MrIncreadibleItemTemplateContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.MrIncreadibleItemTemplateContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\">\n    <Frame\n        Margin=\"5\"\n        BorderColor=\"White\"\n        Style=\"{x:StaticResource DocumentContentFrameStyle}\"\n        WidthRequest=\"400\">\n        <Grid\n            x:DataType=\"core:MrIncreadible\"\n            ColumnDefinitions=\"0.1*, 0.2*, 0.8*\"\n            ColumnSpacing=\"5\">\n            <Label\n                Grid.Column=\"0\"\n                FontAttributes=\"Bold\"\n                Text=\"{x:Binding ComponentData.Age,\n                                 Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n            <toolkit:AvatarView\n                Grid.Column=\"1\"\n                HeightRequest=\"50\"\n                ImageSource=\"{x:Binding ComponentData.Image,\n                                        Source={x:Reference root},\n                                        Mode=OneWay}\"\n                WidthRequest=\"50\" />\n            <Label\n                Grid.Column=\"2\"\n                FontAttributes=\"Italic\"\n                Text=\"{x:Binding ComponentData.Title,\n                                 Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n        </Grid>\n    </Frame>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/MrIncreadibleItemTemplateContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class MrIncreadibleItemTemplateContentView : ContentView\n{\n    #region [ CTor ]\n    public MrIncreadibleItemTemplateContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(MrIncreadible),\n        typeof(MrIncreadibleItemTemplateContentView),\n        default(MrIncreadible)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public MrIncreadible ComponentData\n    {\n        get => (MrIncreadible)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/MrIncreadibleItemVerticalSpan2TemplateContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.MrIncreadibleItemVerticalSpan2TemplateContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\">\n    <Frame\n        Margin=\"5\"\n        BorderColor=\"White\"\n        Style=\"{x:StaticResource DocumentContentFrameStyle}\">\n        <Grid\n            Margin=\"5\"\n            Padding=\"10\"\n            x:DataType=\"core:MrIncreadible\"\n            ColumnDefinitions=\"0.1*, 0.2*, 0.7*\"\n            ColumnSpacing=\"2\"\n            WidthRequest=\"200\">\n            <Label\n                Grid.Column=\"0\"\n                FontAttributes=\"Bold\"\n                Text=\"{x:Binding ComponentData.Age,\n                                 Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n            <toolkit:AvatarView\n                Grid.Column=\"1\"\n                HeightRequest=\"40\"\n                ImageSource=\"{x:Binding ComponentData.Image,\n                                        Source={x:Reference root},\n                                        Mode=OneWay}\"\n                WidthRequest=\"40\" />\n            <Label\n                Grid.Column=\"2\"\n                FontAttributes=\"Italic\"\n                Text=\"{x:Binding ComponentData.Title,\n                                 Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n        </Grid>\n    </Frame>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/MrIncreadibleItemVerticalSpan2TemplateContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class MrIncreadibleItemVerticalSpan2TemplateContentView : ContentView\n{\n    #region [ CTor ]\n    public MrIncreadibleItemVerticalSpan2TemplateContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(MrIncreadible),\n        typeof(MrIncreadibleItemVerticalSpan2TemplateContentView),\n        default(MrIncreadible)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public MrIncreadible ComponentData\n    {\n        get => (MrIncreadible)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/MrIncreadibleItemVerticalTemplateContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.MrIncreadibleItemVerticalTemplateContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\">\n    <Frame\n        Margin=\"5\"\n        BorderColor=\"White\"\n        Style=\"{x:StaticResource DocumentContentFrameStyle}\">\n        <Grid\n            x:DataType=\"app:MrIncreadible\"\n            ColumnDefinitions=\"0.1*, 0.2*, 0.7*\"\n            ColumnSpacing=\"2\">\n            <Label\n                Grid.Column=\"0\"\n                FontAttributes=\"Bold\"\n                Text=\"{x:Binding ComponentData.Age,\n                                 Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n            <toolkit:AvatarView\n                Grid.Column=\"1\"\n                HeightRequest=\"40\"\n                ImageSource=\"{x:Binding ComponentData.Image,\n                                        Source={x:Reference root},\n                                        Mode=OneWay}\"\n                WidthRequest=\"40\" />\n            <Label\n                Grid.Column=\"2\"\n                FontAttributes=\"Italic\"\n                Text=\"{x:Binding ComponentData.Title,\n                                 Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n        </Grid>\n    </Frame>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/MrIncreadibleItemVerticalTemplateContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class MrIncreadibleItemVerticalTemplateContentView : ContentView\n{\n    #region [ CTor ]\n    public MrIncreadibleItemVerticalTemplateContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(MrIncreadible),\n        typeof(MrIncreadibleItemVerticalTemplateContentView),\n        default(MrIncreadible)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public MrIncreadible ComponentData\n    {\n        get => (MrIncreadible)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/NormalItemTemplateContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.NormalItemTemplateContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\">\n    <Border\n        Margin=\"5\"\n        Padding=\"5\"\n        BackgroundColor=\"{x:Static core:AppColors.BlackGrey}\">\n        <Border.StrokeShape>\n            <RoundRectangle CornerRadius=\"5\" />\n        </Border.StrokeShape>\n        <Grid HeightRequest=\"60\" RowDefinitions=\"0.4*, 0.6*\">\n            <Image\n                Grid.Row=\"0\"\n                Source=\"{x:Binding ComponentData.ControlIcon,\n                                   Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n            <Label\n                Grid.Row=\"1\"\n                FontAttributes=\"Bold\"\n                FontSize=\"14\"\n                HorizontalOptions=\"Center\"\n                LineBreakMode=\"TailTruncation\"\n                Text=\"{x:Binding ComponentData.ControlName,\n                                 Source={x:Reference root}}\"\n                VerticalTextAlignment=\"Center\" />\n        </Grid>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/NormalItemTemplateContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class NormalItemTemplateContentView : ContentView\n{\n    #region [ CTor ]\n    public NormalItemTemplateContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(IGalleryCardInfo),\n        typeof(NormalItemTemplateContentView),\n        default(IGalleryCardInfo)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public IGalleryCardInfo ComponentData\n    {\n        get => (IGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/SelectedItemTemplateContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.SelectedItemTemplateContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\">\n    <Border\n        Margin=\"5\"\n        Padding=\"5\"\n        BackgroundColor=\"{x:Static core:AppColors.MauilandPrimary}\">\n        <Border.StrokeShape>\n            <RoundRectangle CornerRadius=\"5\" />\n        </Border.StrokeShape>\n        <Grid HeightRequest=\"60\" RowDefinitions=\"0.4*, 0.6*\">\n            <Image\n                Grid.Row=\"0\"\n                Source=\"{x:Binding ComponentData.ControlIcon,\n                                   Source={x:Reference root}}\"\n                VerticalOptions=\"Center\" />\n            <Label\n                Grid.Row=\"1\"\n                FontAttributes=\"Bold\"\n                FontSize=\"14\"\n                HorizontalOptions=\"Center\"\n                LineBreakMode=\"TailTruncation\"\n                Text=\"{x:Binding ComponentData.ControlName,\n                                 Source={x:Reference root}}\"\n                VerticalTextAlignment=\"Center\" />\n        </Grid>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateContentViews/SelectedItemTemplateContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SelectedItemTemplateContentView : ContentView\n{\n    #region [ CTor ]\n    public SelectedItemTemplateContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(IGalleryCardInfo),\n        typeof(SelectedItemTemplateContentView),\n        default(IGalleryCardInfo)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public IGalleryCardInfo ComponentData\n    {\n        get => (IGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/TemplateSelector/TemplateSelector.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class TemplateSelector : DataTemplateSelector\n{\n    #region [ Properties ]\n    public DataTemplate NormalTemplate { get; set; }\n    public DataTemplate SelectedTemplate { get; set; }\n    #endregion\n\n    #region [ CTor ]\n    public TemplateSelector()\n    {\n    }\n    #endregion\n\n    #region [ Override ]\n    protected override DataTemplate OnSelectTemplate(object item, BindableObject container)\n    {\n        var collectionView = (CollectionView)container;\n        var selectedItems = collectionView.SelectedItems;\n\n        return selectedItems.Contains(item) ? SelectedTemplate : NormalTemplate;\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/DatePicker/DatePickerControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class DatePickerControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(DatePicker);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_calendar_ltr_24_regular\n    };\n    public string ControlDetail => \"DatePicker invokes the platform's date-picker control and allows you to select a date.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Stable;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-datetimepicker\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/DatePicker/DatePickerPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class DatePickerPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public DatePickerPageViewModel(IAppNavigator appNavigator,\n                                   IGitHubService gitHubService,\n                                   DiscordRpcClient discordRpcClient,\n                                   IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                    : base(appNavigator,\n                                            gitHubService,\n                                            discordRpcClient,\n                                            gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string simpleDatePickerXamlCode = \"<DatePicker />\";\n\n    [ObservableProperty]\n    string datePickerUseDateOnlyConverterXamlCode =\n        \"<DatePicker x:Name=\\\"DateOnlyDatePicker\\\" />\\r\\n\" +\n        \"<Label Text=\\\"{x:Binding Source={x:Reference DateOnlyDatePicker}, Path=Date, Converter={x:StaticResource FulldateToDateOnlyConverter}}\\\" />\";\n\n    [ObservableProperty]\n    string fulldateToDateOnlyConverterCsharpCode =\n        \"public class FulldateToDateOnlyConverter : IValueConverter\\n\" +\n        \"{\\n\" +\n        \"    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\\n\" +\n        \"    {\\n\" +\n        \"        var birthDay = (DateTime?)value;\\n\" +\n        \"        return birthDay?.Date.ToString(\\\"MM/dd/yyyy\\\");\\n\" +\n        \"    }\\n\" +\n        \"\\n\" +\n        \"    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\\n\" +\n        \"    {\\n\" +\n        \"        throw new NotImplementedException();\\n\" +\n        \"    }\\n\" +\n        \"}\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Editor/EditorControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class EditorControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(Editor);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_code_text_edit_20_regular\n    };\n    public string ControlDetail => \"The .NET Multi-platform App UI (.NET MAUI) Editor allows you to enter and edit multiple lines of text.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Unverified;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-editor\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Editor/EditorPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class EditorPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public EditorPageViewModel(IAppNavigator appNavigator,\n                               IGitHubService gitHubService,\n                               DiscordRpcClient discordRpcClient,\n                               IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string title = \"Welcome to Editor\";\n\n    [ObservableProperty]\n    int editorCharacterLimit = 10;\n\n    [ObservableProperty]\n    EditorAutoSizeOption autoSizeMode;\n\n    [ObservableProperty]\n    TextTransform selectedTextTransform;\n\n    [ObservableProperty]\n    ObservableCollection<TextTransform> textTransformList;\n\n    [ObservableProperty]\n    bool isTextPrediction;\n\n    [ObservableProperty]\n    bool isReadOnly;\n\n    [ObservableProperty]\n    string xamlSimpleEditor =\n        \"<Editor x:Name=\\\"editor\\\"\\r\\n\" +\n        \"        Placeholder=\\\"Enter your response here\\\"\\r\\n\" +\n        \"        HeightRequest=\\\"250\\\"\\r\\n\" +\n        \"        TextChanged=\\\"OnEditorTextChanged\\\"\\r\\n\" +\n        \"        Completed=\\\"OnEditorCompleted\\\" />\";\n\n    [ObservableProperty]\n    string cSharpSimpleEditorCodeBehind =\n        \"void OnEditorTextChanged(object sender, TextChangedEventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    OldTextSpan.Text = e.OldTextValue;\\r\\n\" +\n        \"    NewTextSpan.Text = e.NewTextValue;\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"void OnEditorCompleted(object sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    string text = ((Editor)sender).Text;\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlEditorDecoration =\n        \"<Grid ColumnDefinitions=\\\"0.7*, 0.3*\\\" \\r\\n\" +\n        \"      RowDefinitions=\\\"0.3*, 0.7*\\\" \\r\\n\" +\n        \"      ColumnSpacing=\\\"10\\\"\\r\\n\" +\n        \"      RowSpacing=\\\"10\\\"\\r\\n\" +\n        \"      HeightRequest=\\\"200\\\">\\r\\n\" +\n        \"   <VerticalStackLayout Grid.Row=\\\"0\\\"\\r\\n\" +\n        \"                        Grid.Column=\\\"0\\\">\\r\\n\" +\n        \"       <Label Text=\\\"Set character spacing\\\" TextColor=\\\"#bfbfbf\\\"/>\\r\\n\" +\n        \"           <Slider x:Name=\\\"EditorCharacterSpacingSlider\\\"\\r\\n\" +\n        \"                   Maximum=\\\"50\\\"\\r\\n\" +\n        \"                   Minimum=\\\"0\\\"/>\\r\\n\" +\n        \"   </VerticalStackLayout>\\r\\n\" +\n        \"   <Picker x:Name=\\\"EditorColorPicker\\\"\\r\\n\" +\n        \"           Grid.Row=\\\"0\\\"\\r\\n\" +\n        \"           Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"           Title=\\\"Text Color\\\"\\r\\n\" +\n        \"           ItemsSource=\\\"{x:StaticResource LabelColorResource}\\\"\\r\\n\" +\n        \"           SelectedIndex=\\\"5\\\"/>\\r\\n\" +\n        \"   <Editor Grid.Row=\\\"1\\\"\\r\\n\" +\n        \"           Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"           Grid.ColumnSpan=\\\"2\\\"\\r\\n\" +\n        \"           CharacterSpacing=\\\"{x:Binding Source={x:Reference EditorCharacterSpacingSlider},Path=Value, Mode=TwoWay}\\\"\\r\\n\" +\n        \"           Placeholder=\\\"Type something in buddy\\\"\\r\\n\" +\n        \"           TextColor=\\\"{x:Binding Source={x:Reference EditorColorPicker}, Path=SelectedItem, Converter={x:StaticResource StringToColorConverter}}\\\"/>\\r\\n\" +\n        \"</Grid>\";\n\n    [ObservableProperty]\n    string xamlEditorDecorationConverterDeclare =\n        \"<ContentPage x:Class=\\\"MAUIsland.EditorPage\\\"\\r\\n\" +\n        \"             xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"             xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"             xmlns:app=\\\"clr-namespace:MAUIsland\\\"\\r\\n\" +\n        \"             xmlns:core=\\\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\\\"\\r\\n\" +\n        \"             x:DataType=\\\"app:EditorPageViewModel\\\">\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <ResourceDictionary>\\r\\n\" +\n        \"           <core:StringToColorConverter x:Key=\\\"StringToColorConverter\\\" />\\r\\n\" +\n        \"       </ResourceDictionary>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpEditorDecorationConverter =\n        \"public class StringToColorConverter : IValueConverter\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        var stringValue = value as String;\\r\\n\\r\\n\" +\n        \"        if (stringValue != null && !string.IsNullOrWhiteSpace(stringValue) && !string.IsNullOrEmpty(stringValue))\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            var color = System.Drawing.Color.FromName(stringValue);\\r\\n\" +\n        \"            return Color.FromRgb(color.R, color.G, color.B);\\r\\n\" +\n        \"        }\\r\\n\" +\n        \"        return null;\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        throw new NotImplementedException();\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlEditorTextLengthAndAutoSize =\n        \"<Grid ColumnDefinitions=\\\"0.7*, 0.3*\\\"\\r\\n\" +\n        \"      ColumnSpacing=\\\"10\\\">\\r\\n\" +\n        \"   <Editor x:Name=\\\"Editor2\\\" Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"           Text=\\\"Enter text here\\\"\\r\\n\" +\n        \"           AutoSize=\\\"{x:Binding AutoSizeMode}\\\"\\r\\n\" +\n        \"           MaxLength=\\\"{x:Binding EditorCharacterLimit}\\\"/>\\r\\n\" +\n        \"   <VerticalStackLayout Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"                        Spacing=\\\"5\\\">\\r\\n\" +\n        \"       <Label Text=\\\"Limit Your Editor\\\"/>\\r\\n\" +\n        \"       <Frame BackgroundColor=\\\"#4d4d4d\\\" \\r\\n\" +\n        \"              BorderColor=\\\"#4d4d4d\\\" \\r\\n\" +\n        \"              Padding=\\\"10\\\">\\r\\n\" +\n        \"           <Grid ColumnDefinitions=\\\"0.7*, 0.2*\\\" \\r\\n\" +\n        \"                 ColumnSpacing=\\\"10\\\">\\r\\n\" +\n        \"               <Slider x:Name=\\\"CharacterLimitSlider\\\" \\r\\n\" +\n        \"                       Grid.Column=\\\"0\\\" \\r\\n\" +\n        \"                       Maximum=\\\"1000\\\" \\r\\n\" +\n        \"                       Minimum=\\\"1\\\" \\r\\n\" +\n        \"                       Value=\\\"{x:Binding EditorCharacterLimit}\\\"/>\\r\\n\" +\n        \"               <Label Grid.Column=\\\"1\\\" \\r\\n\" +\n        \"                      Text=\\\"{x:Binding EditorCharacterLimit}\\\" \\r\\n\" +\n        \"                      VerticalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                      HorizontalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"           </Grid>\\r\\n\" +\n        \"       </Frame>\\r\\n\" +\n        \"       <Label Text=\\\"Change AutoSize Mode\\\"/>\\r\\n\" +\n        \"       <Button Text=\\\"{x:Binding AutoSizeMode}\\\"\\r\\n\" +\n        \"               Command=\\\"{x:Binding ChangeAutoSizeModeCommand}\\\" />\\r\\n\" +\n        \"   </VerticalStackLayout>\\r\\n\" +\n        \"</Grid>\";\n\n    [ObservableProperty]\n    string cSharpEditorTextLengthAndAutoSize =\n        \"[ObservableProperty]\\r\\n\" +\n        \"int editorCharacterLimit = 10;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"EditorAutoSizeOption autoSizeMode;\";\n\n    [ObservableProperty]\n    string xamlEditorTransformText =\n        \"<Grid ColumnDefinitions=\\\"0.8*, 0.2*\\\"\\r\\n\" +\n        \"      ColumnSpacing=\\\"10\\\">\\r\\n\" +\n        \"   <Editor Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"           Text=\\\"Enter text here\\\"\\r\\n\" +\n        \"           TextTransform=\\\"{x:Binding SelectedTextTransform}\\\"/>\\r\\n\" +\n        \"   <Picker Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"           ItemsSource=\\\"{x:Binding TextTransformList, Mode=OneWay}\\\"\\r\\n\" +\n        \"           SelectedItem=\\\"{x:Binding SelectedTextTransform, Mode=TwoWay, Converter={StaticResource TextTransformConverter}}\\\"/>\\r\\n\" +\n        \"</Grid>\";\n\n    [ObservableProperty]\n    string xamlEditorTransformTextConverterDeclare =\n        \"<ContentPage x:Class=\\\"MAUIsland.EditorPage\\\"\\r\\n\" +\n        \"             xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"             xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"             xmlns:app=\\\"clr-namespace:MAUIsland\\\"\\r\\n\" +\n        \"             xmlns:core=\\\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\\\"\\r\\n\" +\n        \"             x:DataType=\\\"app:EditorPageViewModel\\\">\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <ResourceDictionary>\\r\\n\" +\n        \"           <app:EditorTextTransformPickerConverter x:Key=\\\"TextTransformConverter\\\" />\\r\\n\" +\n        \"       </ResourceDictionary>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpEditorTransformTextConverter =\n        \"public class EditorTextTransformPickerConverter : IValueConverter\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        if (value is TextTransform textTransform)\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            return textTransform;\\r\\n\" +\n        \"        }\\r\\n\\r\\n\" +\n        \"        return TextTransform.None;\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        if (value is TextTransform textTransform)\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            return textTransform;\\r\\n\" +\n        \"        }\\r\\n\\r\\n\" +\n        \"        return TextTransform.None;\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cSharpEditorTransformTextViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"TextTransform selectedTextTransform = TextTransform.None;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"ObservableCollection<TextTransform> textTransformList = new ObservableCollection<TextTransform>\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    TextTransform.None,\\r\\n\" +\n        \"    TextTransform.Default,\\r\\n\" +\n        \"    TextTransform.Lowercase,\\r\\n\" +\n        \"    TextTransform.Uppercase\\r\\n\" +\n        \"};\";\n\n    [ObservableProperty]\n    string xamlEditorPredictionReadOnly =\n        \"<Grid ColumnDefinitions=\\\"0.8*, 0.2*\\\"\\r\\n\" +\n        \"      ColumnSpacing=\\\"10\\\">\\r\\n\" +\n        \"   <Editor Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"           Text=\\\"Enter text here\\\"\\r\\n\" +\n        \"           IsTextPredictionEnabled=\\\"{x:Binding IsTextPrediction}\\\"\\r\\n\" +\n        \"           IsReadOnly=\\\"{x:Binding IsReadOnly}\\\"/>\\r\\n\" +\n        \"   <VerticalStackLayout Grid.Column=\\\"1\\\">\\r\\n\" +\n        \"       <Label Text=\\\"Text Prediction\\\" />\\r\\n\" +\n        \"       <Switch IsToggled=\\\"{x:Binding IsTextPrediction, Mode=TwoWay}\\\"/>\\r\\n\" +\n        \"       <Label Text=\\\"Read Only\\\" />\\r\\n\" +\n        \"       <Switch IsToggled=\\\"{x:Binding IsReadOnly, Mode=TwoWay}\\\"/>\\r\\n\" +\n        \"   </VerticalStackLayout>\\r\\n\" +\n        \"</Grid>\";\n\n    [ObservableProperty]\n    string cSharpEditorPredictionReadOnlyViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"bool isTextPrediction = false;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"bool isReadOnly = false;\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n        LoadDataAsync().FireAndForget();\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    void ChangeAutoSizeMode()\n        => AutoSizeMode = AutoSizeMode == EditorAutoSizeOption.TextChanges ? EditorAutoSizeOption.Disabled : EditorAutoSizeOption.TextChanges;\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n        TextTransformList = new ObservableCollection<TextTransform>\n        {\n            TextTransform.None,\n            TextTransform.Default,\n            TextTransform.Lowercase,\n            TextTransform.Uppercase\n        };\n        SelectedTextTransform = TextTransform.None;\n        IsTextPrediction = false;\n        IsReadOnly = false;\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Entry/EntryControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class EntryControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(Entry);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_text_field_24_regular\n    };\n    public string ControlDetail => \"Entry allows you to enter and edit a single line of text. In addition, the Entry can be used as a password field.\\r\\n\\r\\n\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Buggy;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => GalleryCardStatus.Completed;\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-entry\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Entry/EntryPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class EntryPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public EntryPageViewModel(IAppNavigator appNavigator,\n                               IGitHubService gitHubService,\n                               DiscordRpcClient discordRpcClient,\n                               IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string textMessage = string.Empty;\n\n    [ObservableProperty]\n    ObservableCollection<ChatMessageModel> messages = default!;\n\n    [ObservableProperty]\n    string standardEntryXamlCode =\n    \"<Entry x:Name=\\\"Entry\\\"\\n\" +\n    \"       Placeholder=\\\"Enter text here\\\"\\n\" +\n    \"       PlaceholderColor=\\\"LightSlateGray\\\"\\n\" +\n    \"       HorizontalTextAlignment=\\\"Start\\\"\\n\" +\n    \"       VerticalTextAlignment=\\\"Center\\\"/>\";\n\n    [ObservableProperty]\n    string content = \"In addition, Entry defines a Completed event, which is raised when the user finalizes text in the Entry with the return key.\";\n\n    [ObservableProperty]\n    string content1 = \"Entry derives from the InputView class, from which it inherits the following properties:\";\n\n    [ObservableProperty]\n    List<string> entryList = new()\n    {\n        \"CharacterSpacing, of type double, sets the spacing between characters in the entered text.\",\n        \"CursorPosition, of type int, defines the position of the cursor within the editor.\",\n        \"FontAttributes, of type FontAttributes, determines text style.\",\n        \"FontAutoScalingEnabled, of type bool, defines whether the text will reflect scaling preferences set in the operating system. The default value of this property is true.\",\n        \"FontFamily, of type string, defines the font family.\",\n        \"FontSize, of type double, defines the font size.\",\n        \"IsReadOnly, of type bool, defines whether the user should be prevented from modifying text. The default value of this property is false.\",\n        \"IsSpellCheckEnabled, of type bool, controls whether spell checking is enabled.\",\n        \"IsTextPredictionEnabled, of type bool, controls whether text prediction and automatic text correction is enabled.\",\n        \"Keyboard, of type Keyboard, specifies the soft input keyboard that's displayed when entering text.\",\n        \"MaxLength, of type int, defines the maximum input length.\",\n        \"Placeholder, of type string, defines the text that's displayed when the control is empty.\",\n        \"PlaceholderColor, of type Color, defines the color of the placeholder text.\",\n        \"SelectionLength, of type int, represents the length of selected text within the control.\",\n        \"Text, of type string, defines the text entered into the control.\",\n        \"TextColor, of type Color, defines the color of the entered text.\",\n        \"TextTransform, of type TextTransform, specifies the casing of the entered text.\"\n    };\n\n    [ObservableProperty]\n    string content2 = \"In addition, InputView defines a TextChanged event, which is raised when the text in the Entry changes. The TextChangedEventArgs object that accompanies the TextChanged event has NewTextValue and OldTextValue properties, which specify the new and old text, respectively.\";\n\n    [ObservableProperty]\n    string createAnEntryHeader = \"Create an Entry\";\n\n    [ObservableProperty]\n    string content3 = \"The following example shows how to create an Entry:\";\n\n    [ObservableProperty]\n    string createAnEntryXamlCode =\n        \"<Entry x:Name=\\\"entry\\\"\\n\" +\n        \"       Placeholder=\\\"Enter text\\\"\\n\" +\n        \"       TextChanged=\\\"OnEntryTextChanged\\\"\\n\" +\n        \"       Completed=\\\"OnEntryCompleted\\\" />\";\n\n    [ObservableProperty]\n    string content4 = \"The equivalent C# code is:\";\n\n    [ObservableProperty]\n    string createAnEntryCSharpCode =\n    \"Entry entry = new Entry \\n\" +\n    \"{ \\n\" +\n    \"    Placeholder = \\\"Enter text\\\" \\n\" +\n    \"};\\n\" +\n    \"entry.TextChanged += OnEntryTextChanged;\\n\" +\n    \"entry.Completed += OnEntryCompleted;\";\n\n    [ObservableProperty]\n    string createAnEntryNote = \"On iOS, the soft input keyboard can cover a text input field when the field is near the bottom of the screen, making it difficult to enter text. However, in a .NET MAUI iOS app, pages automatically scroll when the soft input keyboard would cover a text entry field, so that the field is above the soft input keyboard. The KeyboardAutoManagerScroll.Disconnect method, in the Microsoft.Maui.Platform namespace, can be called to disable this default behavior. The KeyboardAutoManagerScroll.Connect method can be called to re-enable the behavior after it's been disabled.\";\n\n    [ObservableProperty]\n    string content5 = \"Entered text can be accessed by reading the Text property, and the TextChanged and Completed events signal that the text has changed or been completed.\";\n\n    [ObservableProperty]\n    string content6 = \"The TextChanged event is raised when the text in the Entry changes, and the TextChangedEventArgs provide the text before and after the change via the OldTextValue and NewTextValue properties:\";\n\n    [ObservableProperty]\n    string createAnEntryCSharpCode1 =\n    \"void OnEntryTextChanged(object sender, TextChangedEventArgs e)\\n\" +\n    \"{\\n\" +\n    \"    string oldText = e.OldTextValue;\\n\" +\n    \"    string newText = e.NewTextValue;\\n\" +\n    \"    string myText = entry.Text;\\n\" +\n    \"}\";\n\n    [ObservableProperty]\n    string content7 = \"The Completed event is raised when the user has ended input by pressing the Return key on the keyboard, or by pressing the Tab key on Windows. The handler for the event is a generic event handler:\";\n\n    [ObservableProperty]\n    string createAnEntryCSharpCode2 =\n    \"void OnEntryCompleted(object sender, EventArgs e)\\n\" +\n    \"{\\n\" +\n    \"    string text = ((Entry)sender).Text;\\n\" +\n    \"}\";\n\n    [ObservableProperty]\n    string content8 = \"After the Completed event fires, any ICommand specified by the ReturnCommand property is executed, with the object specified by the ReturnCommandParameter property being passed to the ReturnCommand.\";\n\n    [ObservableProperty]\n    string createAnEntryNote1 = \"The VisualElement class, which is in the Entry inheritance hierarchy, also has Focused and Unfocused events.\";\n\n    [ObservableProperty]\n    string setCharacterSpacingHeader = \"Set character spacing\";\n\n    [ObservableProperty]\n    string setCharacterSpacing = \"Character spacing can be applied to an Entry by setting the CharacterSpacing property to a double value:\";\n\n    [ObservableProperty]\n    string setCharacterSpacingXamlCode = \"<Entry ...\\r\\n       CharacterSpacing=\\\"10\\\" />\";\n\n    [ObservableProperty]\n    string setCharacterSpacing1 = \"The result is that characters in the text displayed by the Entry are spaced CharacterSpacing device-independent units apart.\";\n\n    [ObservableProperty]\n    string setCharacterSpacingNote = \"The CharacterSpacing property value is applied to the text displayed by the Text and Placeholder properties.\";\n\n    [ObservableProperty]\n    string limitInputLengthHeader = \"Limit input length\";\n\n    [ObservableProperty]\n    string limitInputLength = \"The MaxLength property can be used to limit the input length that's permitted for the Entry. This property should be set to a positive integer:\";\n\n    [ObservableProperty]\n    string limitInputLengthXamlCode = \"<Entry ...\\r\\n       MaxLength=\\\"10\\\" />\";\n\n    [ObservableProperty]\n    string limitInputLength1 = \"A MaxLength property value of 0 indicates that no input will be allowed, and a value of int.MaxValue, which is the default value for an Entry, indicates that there is no effective limit on the number of characters that may be entered.\";\n\n    [ObservableProperty]\n    string setTheCursorPositionAndTextSelectionLengthHeader = \"Set the cursor position and text selection length\";\n\n    [ObservableProperty]\n    string setTheCursorPositionAndTextSelectionLength = \"The CursorPosition property can be used to return or set the position at which the next character will be inserted into the string stored in the Text property:\";\n\n    [ObservableProperty]\n    string setTheCursorPositionAndTextSelectionLengthXamlCode = \"<Entry Text=\\\"Cursor position set\\\"\\r\\n       CursorPosition=\\\"5\\\" />\";\n\n    [ObservableProperty]\n    string setTheCursorPositionAndTextSelectionLength1 = \"The default value of the CursorPosition property is 0, which indicates that text will be inserted at the start of the Entry.\";\n\n    [ObservableProperty]\n    string setTheCursorPositionAndTextSelectionLength2 = \"In addition, the SelectionLength property can be used to return or set the length of text selection within the Entry:\";\n\n    [ObservableProperty]\n    string setTheCursorPositionAndTextSelectionLengthXamlCode1 =\n        \"<Entry Text=\\\"Cursor position and selection length set\\\"\\n\" +\n        \"       CursorPosition=\\\"2\\\"\\n\" +\n        \"       SelectionLength=\\\"10\\\" />\";\n\n    [ObservableProperty]\n    string setTheCursorPositionAndTextSelectionLength3 = \"The default value of the SelectionLength property is 0, which indicates that no text is selected.\";\n\n    [ObservableProperty]\n    string displayAClearButtonHeader = \"Display a clear button\";\n\n    [ObservableProperty]\n    string displayAClearButton = \"The ClearButtonVisibility property can be used to control whether an Entry displays a clear button, which enables the user to clear the text. This property should be set to a ClearButtonVisibility enumeration member:\";\n\n    [ObservableProperty]\n    List<string> displayAClearButtonList = new()\n    {\n        \"Never indicates that a clear button will never be displayed. This is the default value for the ClearButtonVisibility property.\",\n        \"WhileEditing indicates that a clear button will be displayed in the Entry, while it has focus and text.\"\n    };\n\n    [ObservableProperty]\n    string displayAClearButtonXamlCode =\n    \"<Entry Text=\\\".NET MAUI\\\"\\n\" +\n    \"       ClearButtonVisibility=\\\"WhileEditing\\\" />\";\n\n    [ObservableProperty]\n    string displayAClearButton1 = \"The following example shows setting the property:\";\n\n    [ObservableProperty]\n    string transformTextHeader = \"Transform text\";\n\n    [ObservableProperty]\n    string transformText = \"An Entry can transform the casing of its text, stored in the Text property, by setting the TextTransform property to a value of the TextTransform enumeration. This enumeration has four values:\";\n\n    [ObservableProperty]\n    List<string> transformTextList = new()\n    {\n        \"None indicates that the text won't be transformed.\",\n        \"Default indicates that the default behavior for the platform will be used. This is the default value of the TextTransform property.\",\n        \"Lowercase indicates that the text will be transformed to lowercase.\",\n        \"Uppercase indicates that the text will be transformed to uppercase.\"\n    };\n\n    [ObservableProperty]\n    string transformText1 = \"The following example shows transforming text to uppercase:\";\n\n    [ObservableProperty]\n    string transformTextXamlCode =\n        \"<Entry Text=\\\"This text will be displayed in uppercase.\\\"\\n\" +\n        \"       TextTransform=\\\"Uppercase\\\" />\";\n\n    [ObservableProperty]\n    string obscureTextEntryHeader = \"Obscure text entry\";\n\n    [ObservableProperty]\n    string obscureTextEntry = \"Entry provides the IsPassword property which visually obscures entered text when it's set to true:\";\n\n    [ObservableProperty]\n    string obscureTextEntryXamlCode = \"<Entry IsPassword=\\\"true\\\" />\";\n\n    [ObservableProperty]\n    string customizeTheKeyboardHeader = \"Customize the keyboard\";\n\n    [ObservableProperty]\n    string customizeTheKeyboard = \"The soft input keyboard that's presented when users interact with an Entry can be set programmatically via the Keyboard property, to one of the following properties from the Keyboard class:\";\n\n    [ObservableProperty]\n    List<string> customizeTheKeyboardList = new()\n    {\n        \"Chat – used for texting and places where emoji are useful.\",\n        \"Default – the default keyboard.\",\n        \"Email – used when entering email addresses.\",\n        \"Numeric – used when entering numbers.\",\n        \"Plain – used when entering text, without any KeyboardFlags specified.\",\n        \"Telephone – used when entering telephone numbers.\",\n        \"Text – used when entering text.\",\n        \"Url – used for entering file paths & web addresses.\"\n    };\n\n    [ObservableProperty]\n    string customizeTheKeyboard1 = \"The following example shows setting the Keyboard property:\";\n\n    [ObservableProperty]\n    string customizeTheKeyboardXamlCode = \"<Entry Keyboard=\\\"Chat\\\" />\";\n\n    [ObservableProperty]\n    string customizeTheKeyboard2 = \"The Keyboard class also has a Create factory method that can be used to customize a keyboard by specifying capitalization, spellcheck, and suggestion behavior. KeyboardFlags enumeration values are specified as arguments to the method, with a customized Keyboard being returned. The KeyboardFlags enumeration contains the following values:\";\n\n    [ObservableProperty]\n    List<string> customizeTheKeyboardList1 = new()\n    {\n        \"None – no features are added to the keyboard.\",\n        \"CapitalizeSentence – indicates that the first letter of the first word of each entered sentence will be automatically capitalized.\",\n        \"Spellcheck – indicates that spellcheck will be performed on entered text.\",\n        \"Suggestions – indicates that word completions will be offered on entered text.\",\n        \"CapitalizeWord – indicates that the first letter of each word will be automatically capitalized.\",\n        \"CapitalizeCharacter – indicates that every character will be automatically capitalized.\",\n        \"CapitalizeNone – indicates that no automatic capitalization will occur.\",\n        \"All – indicates that spellcheck, word completions, and sentence capitalization will occur on entered text.\"\n    };\n\n    [ObservableProperty]\n    string customizeTheKeyboard3 = \"The following XAML code example shows how to customize the default Keyboard to offer word completions and capitalize every entered character:\";\n\n    [ObservableProperty]\n    string customizeTheKeyboardXamlCode1 =\n    \"<Entry Placeholder=\\\"Enter text here\\\">\\n\" +\n    \"    <Entry.Keyboard>\\n\" +\n    \"        <Keyboard x:FactoryMethod=\\\"Create\\\">\\n\" +\n    \"            <x:Arguments>\\n\" +\n    \"                <KeyboardFlags>Suggestions,CapitalizeCharacter</KeyboardFlags>\\n\" +\n    \"            </x:Arguments>\\n\" +\n    \"        </Keyboard>\\n\" +\n    \"    </Entry.Keyboard>\\n\" +\n    \"</Entry>\";\n\n    [ObservableProperty]\n    string customizeTheKeyboard4 = \"The equivalent C# code is:\";\n\n    [ObservableProperty]\n    string customizeTheKeyboardCSharpCode =\n    \"Entry entry = new Entry { Placeholder = \\\"Enter text here\\\" };\\n\" +\n    \"entry.Keyboard = Keyboard.Create(KeyboardFlags.Suggestions | KeyboardFlags.CapitalizeCharacter);\";\n\n    [ObservableProperty]\n    string customizeTheReturnKeyHeader = \"Customize the return key\";\n\n    [ObservableProperty]\n    string customizeTheReturnKey = \"The appearance of the return key on the soft input keyboard, which is displayed when an Entry has focus, can be customized by setting the ReturnType property to a value of the ReturnType enumeration:\";\n\n    [ObservableProperty]\n    List<string> customizeTheReturnKeyList = new()\n    {\n        \"Default – indicates that no specific return key is required and that the platform default will be used.\",\n        \"Done – indicates a \\\"Done\\\" return key.\",\n        \"Go – indicates a \\\"Go\\\" return key.\",\n        \"Next – indicates a \\\"Next\\\" return key.\",\n        \"Search – indicates a \\\"Search\\\" return key.\",\n        \"Send – indicates a \\\"Send\\\" return key.\"\n    };\n\n    [ObservableProperty]\n    string customizeTheReturnKeyXamlCode = \"<Entry ReturnType=\\\"Send\\\" />\";\n\n    [ObservableProperty]\n    string customizeTheReturnKey1 = \"The following XAML example shows how to set the return key:\";\n\n    [ObservableProperty]\n    string customizeTheReturnKeyNote = \"The exact appearance of the return key is dependent upon the platform. On iOS, the return key is a text-based button. However, on Android and Windows, the return key is a icon-based button.\";\n\n    [ObservableProperty]\n    string customizeTheReturnKey2 = \"When the Return key is pressed, the Completed event fires and any ICommand specified by the ReturnCommand property is executed. In addition, any object specified by the ReturnCommandParameter property will be passed to the ICommand as a parameter. For more information about commands, see Commanding.\";\n\n    [ObservableProperty]\n    string hideAndShowTheSoftInputKeyboardHeader = \"Hide and show the soft input keyboard\";\n\n    [ObservableProperty]\n    string hideAndShowTheSoftInputKeyboard = \"The SoftInputExtensions class, in the Microsoft.Maui namespace, provides a series of extension methods that support interacting with the soft input keyboard on controls that support text input. The class defines the following methods:\";\n\n    [ObservableProperty]\n    List<string> hideAndShowTheSoftInputKeyboardList = new()\n    {\n        \"IsSoftInputShowing, which checks to see if the device is currently showing the soft input keyboard.\",\n        \"HideSoftInputAsync, which will attempt to hide the soft input keyboard if it's currently showing.\",\n        \"ShowSoftInputAsync, which will attempt to show the soft input keyboard if it's currently hidden.\"\n    };\n\n    [ObservableProperty]\n    string hideAndShowTheSoftInputKeyboard1 = \"The following example shows how to hide the soft input keyboard on an Entry named entry, if it's currently showing:\";\n\n    [ObservableProperty]\n    string hideAndShowTheSoftInputKeyboardCSharpCode =\n    \"if (entry.IsSoftInputShowing())\\n\" +\n    \"    await entry.HideSoftInputAsync(System.Threading.CancellationToken.None);\";\n\n    [ObservableProperty]\n    string enableAndDisableSpellCheckingHeader = \"Enable and disable spell checking\";\n\n    [ObservableProperty]\n    string enableAndDisableSpellChecking = \"The IsSpellCheckEnabled property controls whether spell checking is enabled. By default, the property is set to true. As the user enters text, misspellings are indicated.\";\n\n    [ObservableProperty]\n    string enableAndDisableSpellChecking1 = \"However, for some text entry scenarios, such as entering a username, spell checking provides a negative experience and should be disabled by setting the IsSpellCheckEnabled property to false:\";\n\n    [ObservableProperty]\n    string enableAndDisableSpellCheckingXamlCode = \"<Entry ... IsSpellCheckEnabled=\\\"false\\\" />\";\n\n    [ObservableProperty]\n    string enableAndDisableSpellCheckingNote = \"When the IsSpellCheckEnabled property is set to false, and a custom keyboard isn't being used, the native spell checker will be disabled. However, if a Keyboard has been set that disables spell checking, such as Keyboard.Chat, the IsSpellCheckEnabled property is ignored. Therefore, the property cannot be used to enable spell checking for a Keyboard that explicitly disables it.\";\n\n    [ObservableProperty]\n    string enableAndDisableTextPredictionHeader = \"Enable and disable text prediction\";\n\n    [ObservableProperty]\n    string enableAndDisableTextPrediction = \"The IsTextPredictionEnabled property controls whether text prediction and automatic text correction is enabled. By default, the property is set to true. As the user enters text, word predictions are presented.\";\n\n    [ObservableProperty]\n    string enableAndDisableTextPrediction1 = \"However, for some text entry scenarios, such as entering a username, text prediction and automatic text correction provides a negative experience and should be disabled by setting the IsTextPredictionEnabled property to false:\";\n\n    [ObservableProperty]\n    string enableAndDisableTextPredictionXamlCode = \"<Entry ... IsTextPredictionEnabled=\\\"false\\\" />\";\n\n    [ObservableProperty]\n    string enableAndDisableTextPredictionNote = \"When the IsTextPredictionEnabled property is set to false, and a custom keyboard isn't being used, text prediction and automatic text correction is disabled. However, if a Keyboard has been set that disables text prediction, the IsTextPredictionEnabled property is ignored. Therefore, the property cannot be used to enable text prediction for a Keyboard that explicitly disables it.\";\n\n    [ObservableProperty]\n    string preventTextEntryHeader = \"Prevent text entry\";\n\n    [ObservableProperty]\n    string preventTextEntry = \"Users can be prevented from modifying the text in an Entry by setting the IsReadOnly property to true:\";\n\n    [ObservableProperty]\n    string preventTextEntryXamlCode =\n    \"<Entry Text=\\\"User input won't be accepted.\\\"\\n\" +\n    \"       IsReadOnly=\\\"true\\\" />\";\n\n\n    [ObservableProperty]\n    string preventTextEntryNote = \"The IsReadonly property does not alter the visual appearance of an Entry, unlike the IsEnabled property that also changes the visual appearance of the Entry to gray.\";\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n        Messages = new();\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    Task SendMessage(string message)\n    {\n        Messages.Add(new ChatMessageModel()\n        {\n            AuthorName = \"MAUIsland\",\n            AuthorImage = \"dotnet_bot.png\",\n            ChatMessageContent = message,\n            SentTime = DateTime.Now\n        });\n\n        TextMessage = string.Empty;\n\n        return Task.CompletedTask;\n    }\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Entry/Models/ChatMessageModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class ChatMessageModel : BaseModel\n{\n    [ObservableProperty]\n    string chatMessageContent;\n\n    [ObservableProperty]\n    ImageSource authorImage;\n\n    [ObservableProperty]\n    string authorName;\n\n    [ObservableProperty]\n    string authorFullName;\n\n    [ObservableProperty]\n    DateTime sentTime;\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Frame/FrameControlInfo.cs",
    "content": "namespace MAUIsland.Core;\npublic class FrameControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(Frame);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_square_shadow_20_regular\n    };\n    public string ControlDetail => \"Frame is used to wrap a view or layout with a border that can be configured with color, shadow, and other options. Frames can be used to create borders around controls but can also be used to create more complex UI.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Buggy;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => GalleryCardStatus.Completed;\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-frame\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Frame/FramePageViewModel.cs",
    "content": "using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\npublic partial class FramePageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public FramePageViewModel(IAppNavigator appNavigator,\n                               IGitHubService gitHubService,\n                               DiscordRpcClient discordRpcClient,\n                               IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string standardCreateFrameXamlCode =\n        \"<Frame>\\r\\n\" +\n        \"   <Label Text=\\\"Frame wrapped around a Label\\\" \\r\\n\" +\n        \"          TextColor=\\\"White\\\"/>\\r\\n\" +\n        \"</Frame>\";\n\n    [ObservableProperty]\n    string createTheSecondFrameXamlCode =\n        \"<Frame BackgroundColor=\\\"DimGrey\\\"\\r\\n\" +\n        \"       BorderColor=\\\"Grey\\\"\\r\\n\" +\n        \"       CornerRadius=\\\"10\\\">\\r\\n\" +\n        \"   <Label Text=\\\"Frame wrapped around a Label\\\" />\\r\\n\" +\n        \"</Frame>\";\n\n    [ObservableProperty]\n    string createACardWithAFrameXamlCode =\n        \"<Frame Padding=\\\"10\\\"\\r\\n\" +\n        \"       BackgroundColor=\\\"White\\\"\\r\\n\" +\n        \"       BorderColor=\\\"Gray\\\"\\r\\n\" +\n        \"       CornerRadius=\\\"8\\\"\\r\\n\" +\n        \"       HeightRequest=\\\"150\\\"\\r\\n\" +\n        \"       WidthRequest=\\\"200\\\">\\r\\n\" +\n        \"   <StackLayout>\\r\\n\" +\n        \"       <Label FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"              FontSize=\\\"14\\\"\\r\\n\" +\n        \"              Text=\\\"Card Example\\\"\\r\\n\" +\n        \"              TextColor=\\\"Black\\\" />\\r\\n\" +\n        \"       <BoxView HeightRequest=\\\"2\\\"\\r\\n\" +\n        \"                HorizontalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                Color=\\\"Gray\\\" />\\r\\n\" +\n        \"       <Label Text=\\\"Frames can wrap more complex layouts to create more complex UI components, such as this card!\\\"\\r\\n\" +\n        \"              TextColor=\\\"Black\\\" />\\r\\n\" +\n        \"   </StackLayout>\\r\\n\" +\n        \"</Frame>\";\n\n    [ObservableProperty]\n    string roundElementsXamlCode =\n        \"<Frame Padding=\\\"20\\\"\\r\\n\" +\n        \"       BorderColor=\\\"Black\\\"\\r\\n\" +\n        \"       CornerRadius=\\\"60\\\"\\r\\n\" +\n        \"       HeightRequest=\\\"120\\\"\\r\\n\" +\n        \"       WidthRequest=\\\"120\\\"\\r\\n\" +\n        \"       HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"       VerticalOptions=\\\"Center\\\"\\r\\n\" +\n        \"       IsClippedToBounds=\\\"True\\\">\\r\\n\" +\n        \"   <Image HeightRequest=\\\"80\\\"\\r\\n\" +\n        \"          WidthRequest=\\\"80\\\" \\r\\n\" +\n        \"          HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"          VerticalOptions=\\\"Center\\\"\\r\\n\" +\n        \"          Source=\\\"{x:Binding ControlInformation.ControlIcon}\\\"/>\\r\\n\" +\n        \"</Frame>\";\n\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/ImageButton/ImageButtonControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class ImageButtonControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(ImageButton);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_image_add_24_regular\n    };\n    public string ControlDetail => \"ImageButton view combines the Button view and Image view to create a button whose content is an image. When you press the ImageButton with a finger or click it with a mouse, it directs the app to carry out a task. However, unlike the Button the ImageButton view has no concept of text and text appearance.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Unverified;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-button\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/ImageButton/ImageButtonPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class ImageButtonPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    private readonly IFilePicker filePicker;\n    #endregion\n\n    #region [ CTor ]\n    public ImageButtonPageViewModel(IFilePicker filePicker,\n                                    IAppNavigator appNavigator,\n                                    IGitHubService gitHubService,\n                                    DiscordRpcClient discordRpcClient,\n                                    IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                    : base(appNavigator,\n                                            gitHubService,\n                                            discordRpcClient,\n                                            gitHubIssueLocalDbService)\n    {\n        this.filePicker = filePicker;\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    int imageButtonClickCount;\n\n    [ObservableProperty]\n    ImageSource imageSourceSample;\n\n    [ObservableProperty]\n    string imageButtonClickedCheck = \"No Image To Click\";\n\n    [ObservableProperty]\n    string xamlBasicImageButton =\n        \"<ImageButton CornerRadius=\\\"5\\\"\\r\\n\" +\n        \"             HeightRequest=\\\"50\\\"\\r\\n\" +\n        \"             VerticalOptions=\\\"Center\\\"\\r\\n\" +\n        \"             Source=\\\"androidlogo.png\\\"\\r\\n\" +\n        \"             Padding=\\\"5\\\"/>\";\n\n    [ObservableProperty]\n    string xamlImageButtonWithEventHandler =\n        \"<Border Padding=\\\"5\\\"\\r\\n\" +\n        \"        BackgroundColor=\\\"DarkGray\\\"\\r\\n\" +\n        \"        x:Name=\\\"ImageButtonWithEvent\\\">\\r\\n\" +\n        \"   <Border.StrokeShape>\\r\\n\" +\n        \"       <RoundRectangle CornerRadius=\\\"5\\\" StrokeThickness=\\\"1\\\"/>\\r\\n\" +\n        \"   </Border.StrokeShape>\\r\\n\" +\n        \"   <HorizontalStackLayout Spacing=\\\"10\\\">\\r\\n\" +\n        \"       <ImageButton HeightRequest=\\\"50\\\"\\r\\n\" +\n        \"                    VerticalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                    Source=\\\"androidlogo.png\\\"\\r\\n\" +\n        \"                    Clicked=\\\"ImageButtonEventHandlerClicked\\\"/>\\r\\n\" +\n        \"       <Label x:Name=\\\"ImageButtonWithEventLabel\\\" \\r\\n\" +\n        \"              Text=\\\"ImageButton with Click Event\\\"\\r\\n\" +\n        \"              VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"   </HorizontalStackLayout>\\r\\n\" +\n        \"</Border>\";\n\n    [ObservableProperty]\n    string cSharpImageButtonWithEventHandlerCodeBehind =\n        \"private bool IsPressed = true;\\r\\n\" +\n        \"private void ImageButtonEventHandlerClicked(object sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    if (IsPressed)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        ImageButtonWithEvent.BackgroundColor = Colors.Blue;\\r\\n\" +\n        \"        ImageButtonWithEventLabel.TextColor = Colors.White;\\r\\n\" +\n        \"        IsPressed = false;\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"    else\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        ImageButtonWithEvent.BackgroundColor = Colors.DarkGray;\\r\\n\" +\n        \"        ImageButtonWithEventLabel.TextColor = Colors.Black;\\r\\n\" +\n        \"        IsPressed = true;\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlImageButtonWithCommand =\n        \"<HorizontalStackLayout Spacing=\\\"10\\\">\\r\\n\" +\n        \"   <ImageButton CornerRadius=\\\"10\\\"\\r\\n\" +\n        \"                HeightRequest=\\\"50\\\"\\r\\n\" +\n        \"                VerticalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                Source=\\\"androidlogo.png\\\"\\r\\n\" +\n        \"                Command=\\\"{x:Binding ClickedCountCommand}\\\"/>\\r\\n\" +\n        \"   <Label VerticalOptions=\\\"Center\\\">\\r\\n\" +\n        \"       <Label.FormattedText>\\r\\n\" +\n        \"           <FormattedString>\\r\\n\" +\n        \"               <Span Text=\\\"You just click the button: \\\"/>\\r\\n\" +\n        \"               <Span Text=\\\"{x:Binding ImageButtonClickCount}\\\"/>\\r\\n\" +\n        \"           </FormattedString>\\r\\n\" +\n        \"       </Label.FormattedText>\\r\\n\" +\n        \"   </Label>\\r\\n\" +\n        \"</HorizontalStackLayout>\";\n\n    [ObservableProperty]\n    string cSharpImageButtonWithCommandViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"int imageButtonClickCount;\\r\\n\" +\n        \"[RelayCommand]\\r\\n\" +\n        \"void ClickedCount()\\r\\n\" +\n        \"   => ImageButtonClickCount += 1;\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n\n    [RelayCommand]\n    async Task OpenFileAsync()\n    {\n        var pickedImage = await filePicker.OpenMediaPickerAsync();\n\n        var imagefile = await filePicker.UploadImageFile(pickedImage);\n\n        ImageSourceSample = ImageSource.FromStream(() =>\n            filePicker.ByteArrayToStream(filePicker.StringToByteBase64(imagefile?.byteBase64))\n        );\n        ImageButtonClickedCheck = \"Image Loaded\";\n    }\n\n    [RelayCommand]\n    void ClickedCheck()\n        => ImageButtonClickedCheck = \"You Clicked the Image\";\n\n\n    [RelayCommand]\n    void ClickedCount()\n        => ImageButtonClickCount += 1;\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/IndicatorView/IndicatorViewControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class IndicatorViewControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(IndicatorView);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_more_horizontal_48_regular\n    };\n    public string ControlDetail => \" IndicatorView is a control that displays indicators that represent the number of items, and current position, in a CarouselView\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Unverified;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-indicatorview\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/IndicatorView/IndicatorViewPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\n\npublic partial class IndicatorViewPageViewModel : BaseBuiltInPageControlViewModel\n{\n\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public IndicatorViewPageViewModel(IAppNavigator appNavigator,\n                                       IGitHubService gitHubService,\n                                       DiscordRpcClient discordRpcClient,\n                                       IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                        : base(appNavigator,\n                                                gitHubService,\n                                                discordRpcClient,\n                                                gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string standardIndicatorViewXamlCode = \"<StackLayout HorizontalOptions=\\\"Start\\\">\\r\\n    <CarouselView ItemsSource=\\\"{Binding Cats}\\\"\\r\\n                  WidthRequest=\\\"120\\\"\\r\\n                  HorizontalScrollBarVisibility=\\\"Never\\\"\\r\\n                  IndicatorView=\\\"indicatorView1\\\"\\r\\n                  Loop=\\\"False\\\"\\r\\n                  ItemTemplate=\\\"{x:StaticResource CarouseViewTemplate1}\\\"/>\\r\\n    <IndicatorView x:Name=\\\"indicatorView1\\\"\\r\\n                   IndicatorColor=\\\"LightGray\\\"\\r\\n                   SelectedIndicatorColor=\\\"DarkGray\\\"/>\\r\\n</StackLayout>\";\n\n    [ObservableProperty]\n    List<Cat> cats = new List<Cat>()\n    {\n        new Cat()\n        {\n            Name = \"Polydactyl\",\n            Description = \"Cat1\"\n        },\n        new Cat()\n        {\n            Name = \"Snowshoe\",\n            Description = \"Cat2\"\n        },new Cat()\n        {\n            Name = \"British Shorthair\",\n            Description = \"Cat3\"\n        },new Cat()\n        {\n            Name = \"Gray Tabby\",\n            Description = \"Cat4\"\n        }\n    };\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/IndicatorView/Models/Cat.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class Cat\n{\n    public string Name { get; set; }\n    public string Description { get; set; }\n    public ImageSource Photo { get; set; }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Label/LabelControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class LabelControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(Label);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_text_case_title_24_regular\n    };\n    public string ControlDetail => \"Label displays single-line and multi-line text. Text displayed by a Label can be colored, spaced, and can have text decorations.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Buggy;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-label\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Label/LabelPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class LabelPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public LabelPageViewModel(IAppNavigator appNavigator,\n                               IGitHubService gitHubService,\n                               DiscordRpcClient discordRpcClient,\n                               IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string labelSpanBinding = \"as well as binding the label to a state\";\n\n    [ObservableProperty]\n    string labelXamlCodeExample =\n    \"<Label>\\r\\n\" +\n    \"    <Label.FormattedText>\\r\\n\" +\n    \"        <FormattedString>\\r\\n\" +\n    \"            <Span Text=\\\"Sometimes we only want to use one label to display a complex line of text rather than using multiples labels and arrange them inside a layout ex: \\\" />\\r\\n\" +\n    \"            <Span BackgroundColor=\\\"Gray\\\" Text=\\\"HorizontalStackLayout\\\" TextColor=\\\"Blue\\\" />\\r\\n\" +\n    \"            <Span Text=\\\", You can also apply color to Span \\\" TextColor=\\\"Violet\\\" />\\r\\n\" +\n    \"            <Span Text=\\\"{x:Binding LabelSpanBinding}\\\" TextColor=\\\"#e89e4e\\\" />\\r\\n\" +\n    \"        </FormattedString>\\r\\n\" +\n    \"    </Label.FormattedText>\\r\\n\" +\n    \"</Label>\";\n\n    [ObservableProperty]\n    FormattedString formatedStringByCsharpCode;\n\n    [ObservableProperty]\n    int selectedLineBreakModeIndex;\n\n    [ObservableProperty]\n    List<string> lineBreakModes = Enum.GetNames(typeof(LineBreakMode)).ToList();\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n        LoadDataAsync(true).FireAndForget();\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n\n    #region [ Methods ]\n    private async Task LoadDataAsync(bool forced)\n    {\n        FormatedStringByCsharpCode = GenerateCodeMarkUp();\n    }\n\n    FormattedString GenerateCodeMarkUp()\n    {\n        var formattedString = new FormattedString();\n\n\n        var span = new Span { Text = \"<Label \", TextColor = Color.FromHex(\"#5598d0\") };\n        var span1 = new Span { Text = \"LineBreakMode=\\\"WordWrap\\\">\", TextColor = Color.FromHex(\"#9cdcfe\") };\n        var span2 = new Span { Text = \"\\n\" };\n        var span3 = new Span { Text = \" <Label.FormattedText>\", TextColor = Color.FromHex(\"#5598d0\") };\n        var span4 = new Span { Text = \"\\n\" };\n        var span5 = new Span { Text = \"  <FormattedString>\", TextColor = Color.FromHex(\"#5598d0\") };\n        var span6 = new Span { Text = \"\\n\" };\n        var span7 = new Span { Text = \"   <Span \", TextColor = Color.FromHex(\"#5598d0\") };\n        var span8 = new Span { Text = \"Text =\", TextColor = Color.FromHex(\"#8cc2df\") };\n        var span9 = new Span { Text = \"\\\"Red Bold, \\\" \", TextColor = Color.FromHex(\"#c08872\") };\n        var span10 = new Span { Text = \"TextColor =\", TextColor = Color.FromHex(\"#8cc2df\") };\n        var span11 = new Span { Text = \"\\\"Red \\\" \", TextColor = Color.FromHex(\"#c08872\") };\n        var span12 = new Span { Text = \"FontAttributes =\", TextColor = Color.FromHex(\"#8cc2df\") };\n        var span13 = new Span { Text = \"\\\"Bold \\\" \", TextColor = Color.FromHex(\"#c08872\") };\n        var span14 = new Span { Text = \"/> \", TextColor = Color.FromHex(\"#5598d0\") };\n        var span15 = new Span { Text = \"\\n\" };\n        var span16 = new Span { Text = \"   <Span \", TextColor = Color.FromHex(\"#5598d0\") };\n        var span17 = new Span { Text = \"Text =\", TextColor = Color.FromHex(\"#8cc2df\") };\n        var span18 = new Span { Text = \"\\\"default, \\\"\", TextColor = Color.FromHex(\"#c08872\") };\n        var span19 = new Span { Text = \"FontSize =\", TextColor = Color.FromHex(\"#8cc2df\") };\n        var span20 = new Span { Text = \"\\\"14 \\\"\", TextColor = Color.FromHex(\"#c08872\") };\n        var span21 = new Span { Text = \"> \", TextColor = Color.FromHex(\"#5598d0\") };\n        var span22 = new Span { Text = \"\\n\" };\n        var span23 = new Span { Text = \"    <Span.GestureRecognizers>\", TextColor = Color.FromHex(\"#5598d0\") };\n        var span24 = new Span { Text = \"\\n\" };\n        var span25 = new Span { Text = \"     <TapGestureRecognizer \", TextColor = Color.FromHex(\"#5598d0\") };\n        var span26 = new Span { Text = \"Command =\", TextColor = Color.FromHex(\"#8cc2df\") };\n        var span27 = new Span { Text = \"\\\"{Binding TapCommand}\\\"\", TextColor = Color.FromHex(\"#c08872\") };\n        var span28 = new Span { Text = \"/> \", TextColor = Color.FromHex(\"#5598d0\") };\n        var span29 = new Span { Text = \"\\n\" };\n        var span30 = new Span { Text = \"    </Span.GestureRecognizers>\", TextColor = Color.FromHex(\"#5598d0\") };\n        var span31 = new Span { Text = \"\\n\" };\n        var span32 = new Span { Text = \"   </Span> \", TextColor = Color.FromHex(\"#5598d0\") };\n        var span33 = new Span { Text = \"\\n\" };\n        var span34 = new Span { Text = \"  </FormattedString>\", TextColor = Color.FromHex(\"#5598d0\") };\n        var span35 = new Span { Text = \"\\n\" };\n        var span36 = new Span { Text = \" </Label.FormattedText>\", TextColor = Color.FromHex(\"#5598d0\") };\n        var span37 = new Span { Text = \"\\n\" };\n        var span38 = new Span { Text = \"</Label> \", TextColor = Color.FromHex(\"#5598d0\") };\n\n\n        //span14.SetBinding(Span.TextProperty, new Binding(\"DumbassText\", BindingMode.OneWay));\n\n\n        formattedString.Spans.Add(span);\n        formattedString.Spans.Add(span1);\n        formattedString.Spans.Add(span2);\n        formattedString.Spans.Add(span3);\n        formattedString.Spans.Add(span4);\n        formattedString.Spans.Add(span5);\n        formattedString.Spans.Add(span6);\n        formattedString.Spans.Add(span7);\n        formattedString.Spans.Add(span8);\n        formattedString.Spans.Add(span9);\n        formattedString.Spans.Add(span10);\n        formattedString.Spans.Add(span11);\n        formattedString.Spans.Add(span12);\n        formattedString.Spans.Add(span13);\n        formattedString.Spans.Add(span14);\n\n        formattedString.Spans.Add(span15);\n        formattedString.Spans.Add(span16);\n        formattedString.Spans.Add(span17);\n        formattedString.Spans.Add(span18);\n        formattedString.Spans.Add(span19);\n        formattedString.Spans.Add(span20);\n        formattedString.Spans.Add(span21);\n        formattedString.Spans.Add(span22);\n        formattedString.Spans.Add(span23);\n        formattedString.Spans.Add(span24);\n        formattedString.Spans.Add(span25);\n        formattedString.Spans.Add(span26);\n        formattedString.Spans.Add(span27);\n        formattedString.Spans.Add(span28);\n        formattedString.Spans.Add(span29);\n        formattedString.Spans.Add(span30);\n        formattedString.Spans.Add(span31);\n        formattedString.Spans.Add(span32);\n        formattedString.Spans.Add(span33);\n        formattedString.Spans.Add(span34);\n        formattedString.Spans.Add(span35);\n        formattedString.Spans.Add(span36);\n        formattedString.Spans.Add(span37);\n        formattedString.Spans.Add(span38);\n        return formattedString;\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/MenuBar/MenuBarControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class MenuBarControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(MenuBar);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_web_asset_24_regular\n    };\n    public string ControlDetail => \"Menu bar is a container that presents a set of menus in a horizontal row, at the top of an app on Mac Catalyst and Windows.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Unverified;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-menubar\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/MenuBar/MenuBarPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class MenuBarPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public MenuBarPageViewModel(IAppNavigator appNavigator,\n                               IGitHubService gitHubService,\n                               DiscordRpcClient discordRpcClient,\n                               IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string buttonWithMenuBar =\n    \"<Button\\r\\n\" +\n    \"    HorizontalOptions=\\\"Start\\\"\\r\\n\" +\n    \"    Text=\\\"&#x25B6;&#xFE0F; Play\\\"\\r\\n\" +\n    \"    WidthRequest=\\\"80\\\">\\r\\n\" +\n    \"    <FlyoutBase.ContextFlyout>\\r\\n\" +\n    \"        <MenuFlyout>\\r\\n\" +\n    \"            <MenuFlyoutItem Text=\\\"Pause\\\">\\r\\n\" +\n    \"                <MenuFlyoutItem.IconImageSource>\\r\\n\" +\n    \"                    <FontImageSource FontFamily=\\\"Arial\\\" Glyph=\\\"&#x23F8;\\\" />\\r\\n\" +\n    \"                </MenuFlyoutItem.IconImageSource>\\r\\n\" +\n    \"            </MenuFlyoutItem>\\r\\n\" +\n    \"            <MenuFlyoutItem Text=\\\"Stop\\\">\\r\\n\" +\n    \"                <MenuFlyoutItem.IconImageSource>\\r\\n\" +\n    \"                    <FontImageSource FontFamily=\\\"Arial\\\" Glyph=\\\"&#x23F9;\\\" />\\r\\n\" +\n    \"                </MenuFlyoutItem.IconImageSource>\\r\\n\" +\n    \"            </MenuFlyoutItem>\\r\\n\" +\n    \"        </MenuFlyout>\\r\\n\" +\n    \"    </FlyoutBase.ContextFlyout>\\r\\n\" +\n    \"</Button>\";\n\n    [ObservableProperty]\n    string imageWithMenuBar =\n        \"<Image\\r\\n\" +\n        \"    HeightRequest=\\\"100\\\"\\r\\n\" +\n        \"    HorizontalOptions=\\\"Start\\\"\\r\\n\" +\n        \"    Source=\\\"dotnet_bot.png\\\"\\r\\n\" +\n        \"    WidthRequest=\\\"100\\\">\\r\\n\" +\n        \"    <FlyoutBase.ContextFlyout>\\r\\n\" +\n        \"        <MenuFlyout>\\r\\n\" +\n        \"            <MenuFlyoutItem IconImageSource=\\\"{x:StaticResource DownloadIcon}\\\" Text=\\\"Save Image\\\" />\\r\\n\" +\n        \"        </MenuFlyout>\\r\\n\" +\n        \"    </FlyoutBase.ContextFlyout>\\r\\n\" +\n        \"</Image>\";\n\n    [ObservableProperty]\n    string contentPageWithMenuBar =\n    \"<ContentPage ...\\r\\n\" +\n    \"    <ContentPage.MenuBarItems>\\r\\n\" +\n    \"        <MenuBarItem Text=\\\"File\\\">\\r\\n\" +\n    \"            <MenuFlyoutItem Text=\\\"Exit\\\"\\r\\n\" +\n    \"                            Command=\\\"{Binding ExitCommand}\\\" />\\r\\n\" +\n    \"        </MenuBarItem>\\r\\n\" +\n    \"        <MenuBarItem Text=\\\"Locations\\\">\\r\\n\" +\n    \"            <MenuFlyoutSubItem Text=\\\"Change Location\\\">\\r\\n\" +\n    \"                <MenuFlyoutItem Text=\\\"Redmond, USA\\\"\\r\\n\" +\n    \"                                Command=\\\"{Binding ChangeLocationCommand}\\\"\\r\\n\" +\n    \"                                CommandParameter=\\\"Redmond\\\" />\\r\\n\" +\n    \"                <MenuFlyoutItem Text=\\\"London, UK\\\"\\r\\n\" +\n    \"                                Command=\\\"{Binding ChangeLocationCommand}\\\"\\r\\n\" +\n    \"                                CommandParameter=\\\"London\\\" />\\r\\n\" +\n    \"                <MenuFlyoutItem Text=\\\"Berlin, DE\\\"\\r\\n\" +\n    \"                                Command=\\\"{Binding ChangeLocationCommand}\\\"\\r\\n\" +\n    \"                                CommandParameter=\\\"Berlin\\\"/>\\r\\n\" +\n    \"            </MenuFlyoutSubItem>\\r\\n\" +\n    \"            <MenuFlyoutSeparator />\\r\\n\" +\n    \"            <MenuFlyoutItem Text=\\\"Add Location\\\"\\r\\n\" +\n    \"                            Command=\\\"{Binding AddLocationCommand}\\\" />\\r\\n\" +\n    \"            <MenuFlyoutItem Text=\\\"Edit Location\\\"\\r\\n\" +\n    \"                            Command=\\\"{Binding EditLocationCommand}\\\" />\\r\\n\" +\n    \"            <MenuFlyoutItem Text=\\\"Remove Location\\\"\\r\\n\" +\n    \"                            Command=\\\"{Binding RemoveLocationCommand}\\\" />\\r\\n\" +\n    \"        </MenuBarItem>\\r\\n\" +\n    \"        <MenuBarItem Text=\\\"View\\\">\\r\\n\" +\n    \"            <MenuFlyoutItem Text=\\\"Refresh\\\"\\r\\n\" +\n    \"                            Command=\\\"{Binding RefreshCommand}\\\" />\\r\\n\" +\n    \"            <MenuFlyoutItem Text=\\\"Change Theme\\\"\\r\\n\" +\n    \"                            Command=\\\"{Binding ChangeThemeCommand}\\\" />\\r\\n\" +\n    \"        </MenuBarItem>\\r\\n\" +\n    \"    </ContentPage.MenuBarItems>\\r\\n\" +\n    \"</ContentPage>\";\n\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    Task OpenSnackBar(string message)\n    => AppNavigator.ShowSnackbarAsync(message);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Picker/PickerControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class PickerControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(Picker);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_time_picker_24_regular\n    };\n    public string ControlDetail => \"Picker displays a short list of items, from which the user can select an item.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Unverified;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-picker\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Picker/PickerPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\n\npublic partial class PickerPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public PickerPageViewModel(IAppNavigator appNavigator,\n                               IGitHubService gitHubService,\n                               DiscordRpcClient discordRpcClient,\n                               IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string memberPickerXamlCode =\n        \"<VerticalStackLayout Spacing=\\\"10\\\">\\r\\n\" +\n        \"    <Label Style=\\\"{x:StaticResource DocumentSectionTitleStyle}\\\" Text=\\\"A simple Picker for selecting MAUIsland members\\\" />\\r\\n\" +\n        \"    <Picker\\r\\n\" +\n        \"        x:Name=\\\"picker\\\"\\r\\n\" +\n        \"        Title=\\\"Select a MAUIsland members\\\"\\r\\n\" +\n        \"        ItemsSource=\\\"{x:StaticResource MAUIMembers}\\\"\\r\\n\" +\n        \"        SelectedIndex=\\\"3\\\" />\\r\\n\" +\n        \"    <Button BackgroundColor=\\\"Black\\\"\\r\\n\" +\n        \"        HorizontalOptions=\\\"Start\\\"\\r\\n\" +\n        \"        Text=\\\"{x:Binding Source={x:Reference picker},\\r\\n\" +\n        \"                     Path=SelectedItem}\\\"\\r\\n\" +\n        \"        TextColor=\\\"{x:StaticResource White}\\\" />\\r\\n\" +\n        \"    <core:SourceCodeExpander Code=\\\"{x:Binding MemberPickerXamlCode}\\\" />\\r\\n\" +\n        \"</VerticalStackLayout>\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/ProgressBar/ProgressBarControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class ProgressBarControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(ProgressBar);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_battery_2_24_regular\n    };\n    public string ControlDetail => \"ProgressBar indicates to users that the app is progressing through a lengthy activity. The progress bar is a horizontal bar that is filled to a percentage represented by a double value.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Unverified;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-progressbar\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/ProgressBar/ProgressBarPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class ProgressBarPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public ProgressBarPageViewModel(IAppNavigator appNavigator,\n                                   IGitHubService gitHubService,\n                                   DiscordRpcClient discordRpcClient,\n                                   IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                    : base(appNavigator,\n                                            gitHubService,\n                                            discordRpcClient,\n                                            gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Property ]\n\n    [ObservableProperty]\n    string xamlStandardProgressBar =\n        \"<ProgressBar Progress=\\\"0\\\"/>\\r\\n\" +\n        \"<ProgressBar Progress=\\\"0.5\\\"/>\\r\\n\" +\n        \"<ProgressBar Progress=\\\"1\\\"/>\\r\\n\";\n\n    [ObservableProperty]\n    string xamlColorProgressBar =\n        \"<Grid ColumnDefinitions=\\\"0.1*, 0.6*, 0.1*, 0.2*\\\">\\r\\n\" +\n        \"   <Label Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"          Text=\\\"0%\\\" \\r\\n\" +\n        \"          VerticalOptions=\\\"Center\\\" \\r\\n\" +\n        \"          HorizontalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"   <ProgressBar x:Name=\\\"ProgressBar1\\\"\\r\\n\" +\n        \"                Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"                Progress=\\\"0\\\"/>\\r\\n\" +\n        \"   <Label x:Name=\\\"ProgressLabel\\\" \\r\\n\" +\n        \"          Grid.Column=\\\"2\\\"\\r\\n\" +\n        \"          Text=\\\"0%\\\" \\r\\n\" +\n        \"          VerticalOptions=\\\"Center\\\" \\r\\n\" +\n        \"          HorizontalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"   <Button x:Name=\\\"ProgressBarLoadButton\\\"\\r\\n\" +\n        \"           Grid.Column=\\\"3\\\"\\r\\n\" +\n        \"           Clicked=\\\"ProgressBarLoadButtonClicked\\\"\\r\\n\" +\n        \"           Text=\\\"Load\\\"/>\\r\\n\" +\n        \"</Grid>\";\n\n    [ObservableProperty]\n    string cSharpCcolorProgressBarCodeBehind =\n        \"private async void ProgressBarLoadButtonClicked(object sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    Progress = 0;\\r\\n\\r\\n\" +\n        \"    while (Progress < 1)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        if(Progress == 0)\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            ProgressBar1.ProgressColor = Colors.Red;\\r\\n\" +\n        \"        }\\r\\n\" +\n        \"        Progress += 0.01;\\r\\n\" +\n        \"        await Task.Delay(1);\\r\\n\" +\n        \"        var progressIntValue = Progress * 100;\\r\\n\" +\n        \"        ProgressLabel.Text = $\\\"{progressIntValue:N1}%\\\";\\r\\n\" +\n        \"        switch ((int)progressIntValue)\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            case 30:\\r\\n\" +\n        \"                ProgressBar1.ProgressColor = Colors.OrangeRed;\\r\\n\" +\n        \"                break;\\r\\n\" +\n        \"            case 50:\\r\\n\" +\n        \"                ProgressBar1.ProgressColor = Colors.Orange;\\r\\n\" +\n        \"                break;\\r\\n\" +\n        \"            case 80:\\r\\n\" +\n        \"                ProgressBar1.ProgressColor = Colors.Yellow;\\r\\n\" +\n        \"                break;\\r\\n\" +\n        \"            case 90:\\r\\n\" +\n        \"                ProgressBar1.ProgressColor = Colors.YellowGreen;\\r\\n\" +\n        \"                break;\\r\\n\" +\n        \"            case 100:\\r\\n\" +\n        \"                ProgressBar1.ProgressColor = Colors.Green;\\r\\n\" +\n        \"                break;\\r\\n\" +\n        \"        }\\r\\n\" +\n        \"        ProgressBar1.Progress = Progress;\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlAnimateProgressBar =\n        \"<Grid ColumnDefinitions=\\\"0.1*, 0.6*, 0.1*, 0.2*\\\">\\r\\n\" +\n        \"   <Label Grid.Column=\\\"0\\\" \\r\\n\" +\n        \"          Text=\\\"{Binding Path=Progress, \\r\\n\" +\n        \"                          Source={x:Reference ProgressBar2}, \\r\\n\" +\n        \"                          Converter={x:StaticResource ProgressBarPercentageConverter}, \\r\\n\" +\n        \"                          ConverterParameter={x:Type x:String}}\\\" \\r\\n\" +\n        \"          VerticalOptions=\\\"Center\\\" \\r\\n\" +\n        \"          HorizontalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"   <ProgressBar x:Name=\\\"ProgressBar2\\\"\\r\\n\" +\n        \"                Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"                Margin=\\\"10\\\"\\r\\n\" +\n        \"                Progress=\\\"0\\\"\\r\\n\" +\n        \"                ProgressColor=\\\"Red\\\"/>\\r\\n\" +\n        \"   <Label Grid.Column=\\\"2\\\"\\r\\n\" +\n        \"          Text=\\\"100%\\\" \\r\\n\" +\n        \"          VerticalOptions=\\\"Center\\\" \\r\\n\" +\n        \"          HorizontalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"   <Button x:Name=\\\"ProgressBarRunButton\\\"\\r\\n\" +\n        \"           Grid.Column=\\\"3\\\"\\r\\n\" +\n        \"           Clicked=\\\"ProgressBarRunButtonClicked\\\"\\r\\n\" +\n        \"           Text=\\\"Run\\\" />\\r\\n\" +\n        \"</Grid>\";\n\n    [ObservableProperty]\n    string cSharpAnimateProgressBarCodeBehind =\n        \"private async void ProgressBarRunButtonClicked(object sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    ProgressBar2.Progress = 0;\\r\\n\" +\n        \"    ProgressBarRunButton.IsEnabled= false;\\r\\n\" +\n        \"    await ProgressBar2.ProgressTo(0.999, 5000, Easing.BounceIn);\\r\\n\" +\n        \"    ProgressBarRunButton.IsEnabled= true;\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cSharpAnimateProgressBarConverter =\n        \"public class ProgressBarPercentageConverter : IValueConverter\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        double temp = (double)value * 100;\\r\\n\" +\n        \"        return $\\\"{temp:N1}%\\\";\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        double temp = (double)value / 100;\\r\\n\" +\n        \"        return $\\\"{temp:N1}%\\\";\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/ProgressBar/ProgressBarPercentageConverter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class ProgressBarPercentageConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        double temp = (double)value * 100;\n        return $\"{temp:N1}%\";\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        double temp = (double)value / 100;\n        return $\"{temp:N1}%\";\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/RadioButton/RadioButtonControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class RadioButtonControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(RadioButton);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_radio_button_24_regular\n    };\n    public string ControlDetail => \"RadioButton is a type of button that allows users to select one option from a set. Each option is represented by one radio button, and you can only select one radio button in a group. \";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Unverified;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-radiobutton\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/RadioButton/RadioButtonPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class RadioButtonPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public RadioButtonPageViewModel(IAppNavigator appNavigator,\n                                   IGitHubService gitHubService,\n                                   DiscordRpcClient discordRpcClient,\n                                   IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                    : base(appNavigator,\n                                            gitHubService,\n                                            discordRpcClient,\n                                            gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string transportGroupName = \"TransportGroup\";\n\n    [ObservableProperty]\n    string selectedTransportItem = string.Empty;\n\n    [ObservableProperty]\n    string standardRadioButtonXamlCode =\n        \"<!--Without GroupName-->\\r\\n\" +\n        \"<HorizontalStackLayout>\\r\\n\" +\n        \"   <RadioButton Content=\\\"Cat\\\" IsChecked=\\\"True\\\" />\\r\\n\" +\n        \"   <RadioButton Content=\\\"Dog\\\" />\\r\\n\" +\n        \"   <RadioButton Content=\\\"Fish\\\" />\\r\\n\" +\n        \"   <RadioButton Content=\\\"Bird\\\" />\\r\\n\" +\n        \"</HorizontalStackLayout>\\r\\n\" +\n        \"<!--With GroupName-->\\r\\n\" +\n        \"<HorizontalStackLayout>\\r\\n\" +\n        \"   <RadioButton GroupName=\\\"Transport\\\" Content=\\\"Car\\\" IsChecked=\\\"True\\\"/>\\r\\n\" +\n        \"   <RadioButton GroupName=\\\"Transport\\\" Content=\\\"Bike\\\" />\\r\\n\" +\n        \"   <RadioButton GroupName=\\\"Transport\\\" Content=\\\"Motocrycle\\\" />\\r\\n\" +\n        \"</HorizontalStackLayout>\\r\\n\" +\n        \"<HorizontalStackLayout>\\r\\n\" +\n        \"   <RadioButton GroupName=\\\"Transport\\\" Content=\\\"Bus\\\" />\\r\\n\" +\n        \"   <RadioButton GroupName=\\\"Transport\\\" Content=\\\"Train\\\" />\\r\\n\" +\n        \"   <RadioButton GroupName=\\\"Transport\\\" Content=\\\"Walking\\\" />\\r\\n\" +\n        \"</HorizontalStackLayout>\\r\\n\" +\n        \"<!--With GroupName in parent-->\\r\\n\" +\n        \"<HorizontalStackLayout RadioButtonGroup.GroupName=\\\"Transport\\\">\\r\\n\" +\n        \"   <RadioButton Content=\\\"Rock\\\" IsChecked=\\\"True\\\"/>\\r\\n\" +\n        \"   <RadioButton Content=\\\"Pop\\\" />\\r\\n\" +\n        \"   <RadioButton Content=\\\"Jazz\\\" />\\r\\n\" +\n        \"</HorizontalStackLayout>\\r\\n\" +\n        \"<HorizontalStackLayout RadioButtonGroup.GroupName=\\\"Transport\\\">\\r\\n\" +\n        \"   <RadioButton Content=\\\"Classical\\\" />\\r\\n\" +\n        \"   <RadioButton Content=\\\"Country\\\" />\\r\\n\" +\n        \"   <RadioButton Content=\\\"Hip Hop\\\" />\\r\\n\" +\n        \"</HorizontalStackLayout>\";\n\n    [ObservableProperty]\n    string xamlImageRadioButtonStaticResource =\n        \"<ContentPage.Resources>\\r\\n\" +\n        \"   <FontImageSource x:Key=\\\"Happy\\\"\\r\\n\" +\n        \"                    FontFamily=\\\"{x:Static core:FontNames.FluentSystemIconsRegular}\\\"\\r\\n\" +\n        \"                    Glyph=\\\"{Static core:FluentUIIcon.Ic_fluent_emoji_28_regular}\\\"\\r\\n\" +\n        \"                    Color=\\\"Black\\\"\\r\\n\" +\n        \"                    Size=\\\"100\\\"/>\\r\\n\" +\n        \"   <FontImageSource x:Key=\\\"Normal\\\" \\r\\n\" +\n        \"                    FontFamily=\\\"{x:Static core:FontNames.FluentSystemIconsRegular}\\\"\\r\\n\" +\n        \"                    Glyph=\\\"{Static core:FluentUIIcon.Ic_fluent_emoji_smile_slight_24_regular}\\\"\\r\\n\" +\n        \"                    Color=\\\"Black\\\" \\r\\n\" +\n        \"                    Size=\\\"100\\\"/>\\r\\n\" +\n        \"   <FontImageSource x:Key=\\\"Sad\\\" \\r\\n\" +\n        \"                    FontFamily=\\\"{x:Static core:FontNames.FluentSystemIconsRegular}\\\"\\r\\n\" +\n        \"                    Glyph=\\\"{Static core:FluentUIIcon.Ic_fluent_emoji_sad_24_regular}\\\"\\r\\n\" +\n        \"                    Color=\\\"Black\\\" \\r\\n\" +\n        \"                    Size=\\\"100\\\"/>\\r\\n\" +\n        \"</ContentPage.Resources>\";\n\n    [ObservableProperty]\n    string xamlImageRadioButton =\n        \"<VerticalStackLayout>\\r\\n\" +\n        \"   <RadioButton IsChecked=\\\"True\\\" BackgroundColor=\\\"White\\\" CornerRadius=\\\"5\\\">\\r\\n\" +\n        \"       <RadioButton.Content>\\r\\n\" +\n        \"           <ContentView Padding=\\\"5,0,5,0\\\">\\r\\n\" +\n        \"               <Image Source=\\\"{x:StaticResource Happy}\\\" WidthRequest=\\\"30\\\"/>\\r\\n\" +\n        \"           </ContentView>\\r\\n\" +\n        \"       </RadioButton.Content>\\r\\n\" +\n        \"   </RadioButton>\\r\\n\" +\n        \"   <RadioButton BackgroundColor=\\\"White\\\" CornerRadius=\\\"5\\\">\\r\\n\" +\n        \"       <RadioButton.Content>\\r\\n\" +\n        \"           <ContentView Padding=\\\"5,0,5,0\\\">\\r\\n\" +\n        \"               <Image Source=\\\"{x:StaticResource Normal}\\\" WidthRequest=\\\"30\\\"/>\\r\\n\" +\n        \"           </ContentView>\\r\\n\" +\n        \"       </RadioButton.Content>\\r\\n\" +\n        \"   </RadioButton>\\r\\n\" +\n        \"   <RadioButton BackgroundColor=\\\"White\\\" CornerRadius=\\\"5\\\">\\r\\n\" +\n        \"       <RadioButton.Content>\\r\\n\" +\n        \"           <ContentView Padding=\\\"5,0,5,0\\\">\\r\\n\" +\n        \"               <Image Source=\\\"{x:StaticResource Sad}\\\" WidthRequest=\\\"30\\\"/>\\r\\n\" +\n        \"           </ContentView>\\r\\n\" +\n        \"       </RadioButton.Content>\\r\\n\" +\n        \"   </RadioButton>\\r\\n\" +\n        \"</VerticalStackLayout>\";\n\n    [ObservableProperty]\n    string xamlRadioButtonState =\n        \"<HorizontalStackLayout RadioButtonGroup.GroupName=\\\"{x:Binding TransportGroupName}\\\"\\r\\n\" +\n        \"                       RadioButtonGroup.SelectedValue=\\\"{x:Binding SelectedTransportItem}\\\">\\r\\n\" +\n        \"   <RadioButton Content=\\\"Car\\\" Value=\\\"Car\\\"\\r\\n\" +\n        \"                GroupName=\\\"{x:Binding TransportGroupName}\\\"\\r\\n\" +\n        \"                IsChecked=\\\"True\\\"/>\\r\\n\" +\n        \"   <RadioButton Content=\\\"Bike\\\" Value=\\\"Bike\\\"\\r\\n\" +\n        \"                GroupName=\\\"{x:Binding TransportGroupName}\\\"/>\\r\\n\" +\n        \"   <RadioButton Content=\\\"Train\\\" Value=\\\"Train\\\"\\r\\n\" +\n        \"                GroupName=\\\"{x:Binding TransportGroupName}\\\"/>\\r\\n\" +\n        \"   <RadioButton Content=\\\"Walking\\\" Value=\\\"Walking\\\"\\r\\n\" +\n        \"                GroupName=\\\"{x:Binding TransportGroupName}\\\"/>\\r\\n\" +\n        \"</HorizontalStackLayout>\\r\\n\" +\n        \"<Label x:Name=\\\"Label\\\">\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"You have chosen: \\\" />\\r\\n\" +\n        \"           <Span Text=\\\"{x:Binding SelectedTransportItem}\\\" />\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\";\n\n    [ObservableProperty]\n    string cSharpRadioButtonState =\n        \"[ObservableProperty]\\r\\n\" +\n        \"string transportGroupName = \\\"TransportGroup\\\";\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"string selectedTransportItem = string.Empty;\";\n\n    [ObservableProperty]\n    string xamlRadioButtonVisualStateStyle =\n        \"<ContentPage.Resources>\\r\\n\" +\n        \"   <Style x:Key=\\\"RadioButtonStyle\\\" TargetType=\\\"RadioButton\\\">\\r\\n\" +\n        \"       <Setter Property=\\\"VisualStateManager.VisualStateGroups\\\">\\r\\n\" +\n        \"           <VisualStateGroupList>\\r\\n\" +\n        \"               <VisualStateGroup x:Name=\\\"CheckedStates\\\">\\r\\n\" +\n        \"                   <VisualState x:Name=\\\"Checked\\\">\\r\\n\" +\n        \"                       <VisualState.Setters>\\r\\n\" +\n        \"                           <Setter Property=\\\"TextColor\\\" Value=\\\"Green\\\" />\\r\\n\" +\n        \"                           <Setter Property=\\\"Opacity\\\" Value=\\\"1\\\" />\\r\\n\" +\n        \"                       </VisualState.Setters>\\r\\n\" +\n        \"                   </VisualState>\\r\\n\" +\n        \"                   <VisualState x:Name=\\\"Unchecked\\\">\\r\\n\" +\n        \"                       <VisualState.Setters>\\r\\n\" +\n        \"                           <Setter Property=\\\"TextColor\\\" Value=\\\"OrangeRed\\\" />\\r\\n\" +\n        \"                           <Setter Property=\\\"Opacity\\\" Value=\\\"0.5\\\" />\\r\\n\" +\n        \"                       </VisualState.Setters>\\r\\n\" +\n        \"                   </VisualState>\\r\\n\" +\n        \"               </VisualStateGroup>\\r\\n\" +\n        \"           </VisualStateGroupList>\\r\\n\" +\n        \"       </Setter>\\r\\n\" +\n        \"   </Style>\\r\\n\" +\n        \"</ContentPage.Resources>\";\n\n    [ObservableProperty]\n    string xamlRadioButtonVisualStates =\n        \"<HorizontalStackLayout>\\r\\n\" +\n        \"   <RadioButton Style=\\\"{x:StaticResource RadioButtonStyle}\\\" Content=\\\"Car\\\" IsChecked=\\\"True\\\"/>\\r\\n\" +\n        \"   <RadioButton Style=\\\"{x:StaticResource RadioButtonStyle}\\\" Content=\\\"Bike\\\" />\\r\\n\" +\n        \"   <RadioButton Style=\\\"{x:StaticResource RadioButtonStyle}\\\" Content=\\\"Train\\\" />\\r\\n\" +\n        \"   <RadioButton Style=\\\"{x:StaticResource RadioButtonStyle}\\\" Content=\\\"Walking\\\" />\\r\\n\" +\n        \"</HorizontalStackLayout>\";\n\n    [ObservableProperty]\n    string xamlCustomRadioButton =\n        \"<HorizontalStackLayout x:Name=\\\"EmotionalRadioButtonGroupWithCustomTemplate\\\"\\r\\n\" +\n        \"                       RadioButtonGroup.GroupName=\\\"Emotional\\\"\\r\\n\" +\n        \"                       Spacing=\\\"20\\\">\\r\\n\" +\n        \"   <RadioButton ControlTemplate=\\\"{x:StaticResource RadioButtonTemplate}\\\" IsChecked=\\\"True\\\">\\r\\n\" +\n        \"       <RadioButton.Content>\\r\\n\" +\n        \"           <VerticalStackLayout>\\r\\n\" +\n        \"               <Image Source=\\\"{x:StaticResource Happy}\\\" />\\r\\n\" +\n        \"               <Label Text=\\\"Happy\\\" \\r\\n\" +\n        \"                      TextColor=\\\"Black\\\"/>\\r\\n\" +\n        \"           </VerticalStackLayout>\\r\\n\" +\n        \"       </RadioButton.Content>\\r\\n\" +\n        \"   </RadioButton>\\r\\n\" +\n        \"   <RadioButton ControlTemplate=\\\"{x:StaticResource RadioButtonTemplate}\\\">\\r\\n\" +\n        \"       <RadioButton.Content>\\r\\n\" +\n        \"           <VerticalStackLayout>\\r\\n\" +\n        \"               <Image Source=\\\"{x:StaticResource Normal}\\\" />\\r\\n\" +\n        \"               <Label Text=\\\"Normal\\\" \\r\\n\" +\n        \"                      TextColor=\\\"Black\\\"/>\\r\\n\" +\n        \"           </VerticalStackLayout>\\r\\n\" +\n        \"       </RadioButton.Content>\\r\\n\" +\n        \"   </RadioButton>\\r\\n\" +\n        \"   <RadioButton ControlTemplate=\\\"{x:StaticResource RadioButtonTemplate}\\\">\\r\\n\" +\n        \"       <RadioButton.Content>\\r\\n\" +\n        \"           <VerticalStackLayout>\\r\\n\" +\n        \"               <Image Source=\\\"{x:StaticResource Sad}\\\" />\\r\\n\" +\n        \"               <Label Text=\\\"Sad\\\" \\r\\n\" +\n        \"                      TextColor=\\\"Black\\\"/>\\r\\n\" +\n        \"           </VerticalStackLayout>\\r\\n\" +\n        \"       </RadioButton.Content>\\r\\n\" +\n        \"   </RadioButton>\\r\\n\" +\n        \"</HorizontalStackLayout>\";\n\n    [ObservableProperty]\n    string xamlCustomRadioButtonControlTemplate =\n        \"<ContentPage.Resources>\\r\\n\" +\n        \"   <ControlTemplate x:Key=\\\"RadioButtonTemplate\\\">\\r\\n\" +\n        \"       <Border Stroke=\\\"#F3F2F1\\\"\\r\\n\" +\n        \"               StrokeThickness=\\\"2\\\"\\r\\n\" +\n        \"               StrokeShape=\\\"RoundRectangle 10\\\"\\r\\n\" +\n        \"               BackgroundColor=\\\"#F3F2F1\\\"\\r\\n\" +\n        \"               HorizontalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"               VerticalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"               Padding=\\\"5\\\">\\r\\n\" +\n        \"           <Grid HorizontalOptions=\\\"CenterAndExpand\\\"\\r\\n\" +\n        \"                 VerticalOptions=\\\"CenterAndExpand\\\">\\r\\n\" +\n        \"               <Grid HeightRequest=\\\"20\\\"\\r\\n\" +\n        \"                     WidthRequest=\\\"20\\\" \\r\\n\" +\n        \"                     HorizontalOptions=\\\"End\\\"\\r\\n\" +\n        \"                     VerticalOptions=\\\"End\\\">\\r\\n\" +\n        \"                   <Ellipse x:Name=\\\"Outcheck\\\"\\r\\n\" +\n        \"                            Fill=\\\"#53e6a1\\\"\\r\\n\" +\n        \"                            HeightRequest=\\\"20\\\" \\r\\n\" +\n        \"                            WidthRequest=\\\"20\\\" \\r\\n\" +\n        \"                            HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                            VerticalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                            Stroke=\\\"white\\\"/>\\r\\n\" +\n        \"                   <Ellipse x:Name=\\\"Check\\\"\\r\\n\" +\n        \"                            Fill=\\\"Black\\\"\\r\\n\" +\n        \"                            HeightRequest=\\\"10\\\"\\r\\n\" +\n        \"                            WidthRequest=\\\"10\\\" \\r\\n\" +\n        \"                            HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                            VerticalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"               </Grid>\\r\\n\" +\n        \"               <ContentPresenter />\\r\\n\" +\n        \"           </Grid>\\r\\n\" +\n        \"           <VisualStateManager.VisualStateGroups>\\r\\n\" +\n        \"               <VisualStateGroupList>\\r\\n\" +\n        \"                   <VisualStateGroup x:Name=\\\"CheckedStates\\\">\\r\\n\" +\n        \"                       <VisualState x:Name=\\\"Checked\\\">\\r\\n\" +\n        \"                           <VisualState.Setters>\\r\\n\" +\n        \"                               <Setter Property=\\\"Stroke\\\" Value=\\\"#ffffff\\\" />\\r\\n\" +\n        \"                               <Setter TargetName=\\\"Check\\\" Property=\\\"Opacity\\\" Value=\\\"1\\\" />\\r\\n\" +\n        \"                               <Setter TargetName=\\\"Outcheck\\\" Property=\\\"Opacity\\\" Value=\\\"1\\\" />\\r\\n\" +\n        \"                           </VisualState.Setters>\\r\\n\" +\n        \"                       </VisualState>\\r\\n\" +\n        \"                       <VisualState x:Name=\\\"Unchecked\\\">\\r\\n\" +\n        \"                           <VisualState.Setters>\\r\\n\" +\n        \"                               <Setter Property=\\\"Stroke\\\" Value=\\\"Transparent\\\" />\\r\\n\" +\n        \"                               <Setter TargetName=\\\"Check\\\" Property=\\\"Opacity\\\" Value=\\\"0\\\" />\\r\\n\" +\n        \"                               <Setter TargetName=\\\"Outcheck\\\" Property=\\\"Opacity\\\" Value=\\\"0\\\" />\\r\\n\" +\n        \"                           </VisualState.Setters>\\r\\n\" +\n        \"                       </VisualState>\\r\\n\" +\n        \"                   </VisualStateGroup>\\r\\n\" +\n        \"               </VisualStateGroupList>\\r\\n\" +\n        \"           </VisualStateManager.VisualStateGroups>\\r\\n\" +\n        \"       </Border>\\r\\n\" +\n        \"   </ControlTemplate>\\r\\n\" +\n        \"</ContentPage.Resources>\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    Task OpenSnackBar(string message)\n    => AppNavigator.ShowSnackbarAsync(message);\n\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n\n    #endregion\n\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/RefreshView/RefreshViewControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class RefreshViewControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(RefreshView);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_arrow_sync_24_regular\n    };\n    public string ControlDetail => \"RefreshView is a container control that provides pull to refresh functionality for scrollable content.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Unverified;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-refreshview\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/RefreshView/RefreshViewPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\n\npublic partial class RefreshViewPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public RefreshViewPageViewModel(IAppNavigator appNavigator,\n                                   IGitHubService gitHubService,\n                                   DiscordRpcClient discordRpcClient,\n                                   IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                    : base(appNavigator,\n                                            gitHubService,\n                                            discordRpcClient,\n                                            gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    ObservableCollection<DemoItem> items;\n\n    [ObservableProperty]\n    string refreshViewXamlCode =\n    \"<RefreshView\\r\\n\" +\n    \"    Command=\\\"{Binding RefreshCommand}\\\"\\r\\n\" +\n    \"    HorizontalOptions=\\\"Start\\\"\\r\\n\" +\n    \"    IsRefreshing=\\\"{x:Binding IsBusy}\\\"\\r\\n\" +\n    \"    MaximumWidthRequest=\\\"300\\\">\\r\\n\" +\n    \"    <CollectionView ItemTemplate=\\\"{x:StaticResource DemoItemTemplate}\\\" ItemsSource=\\\"{x:Binding Items}\\\" />\\r\\n\" +\n    \"</RefreshView>\";\n\n    [ObservableProperty]\n    string refreshCommandCSharpCode =\n    \"[RelayCommand]\\n\" +\n    \"async Task RefreshAsync()\\n\" +\n    \"{\\n\" +\n    \"    IsBusy = true;\\n\" +\n    \"    Items.Add(new DemoItem(\\\"new Item\\\", DateTime.Now));\\n\" +\n    \"    await AppNavigator.ShowSnackbarAsync(\\\"You triggered refresh\\\", null, \\\"Ok\\\");\\n\" +\n    \"    IsBusy = false;\\n\" +\n    \"}\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        Items = new();\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshPageAsync();\n\n        Items.Add(new DemoItem(\"Item1\", DateTime.Now));\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        IsBusy = true;\n        Items.Add(new DemoItem(\"new Item\", DateTime.Now));\n        await AppNavigator.ShowSnackbarAsync(\"You triggered refresh\", null, \"Ok\");\n        IsBusy = false;\n    }\n\n    [RelayCommand]\n    async Task RefreshPageAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n\npublic record DemoItem(string name, DateTime time);"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/SearchBar/ControlInfoListView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ListView\n    x:Class=\"MAUIsland.Core.ControlInfoListView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    x:Name=\"Root\"\n    x:DataType=\"core:SearchBarPageViewModel\"\n    HeightRequest=\"400\">\n    <ListView.Resources>\n        <Style x:Key=\"ReverseTheme\" TargetType=\"Label\">\n            <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={x:Static core:AppColors.White}, Dark={x:Static core:AppColors.Black}}\" />\n        </Style>\n    </ListView.Resources>\n    <ListView.ItemTemplate>\n        <DataTemplate x:DataType=\"core:IGalleryCardInfo\">\n            <ViewCell>\n                <Border Padding=\"5\" BackgroundColor=\"{x:Static core:AppColors.BlackGrey}\">\n                    <Border.StrokeShape>\n                        <RoundRectangle CornerRadius=\"5\" />\n                    </Border.StrokeShape>\n                    <Grid ColumnDefinitions=\"0.2*, 0.2*, 0.6*\" HeightRequest=\"40\">\n                        <Image\n                            Grid.Column=\"0\"\n                            Source=\"{x:Binding ControlIcon}\"\n                            VerticalOptions=\"Center\" />\n                        <Label\n                            Grid.Column=\"1\"\n                            FontAttributes=\"Bold\"\n                            FontSize=\"14\"\n                            LineBreakMode=\"TailTruncation\"\n                            Text=\"{x:Binding ControlName}\"\n                            VerticalTextAlignment=\"Center\" />\n                        <Label\n                            Grid.Column=\"2\"\n                            FontAttributes=\"Italic\"\n                            FontSize=\"12\"\n                            LineBreakMode=\"TailTruncation\"\n                            Text=\"{x:Binding ControlDetail}\"\n                            VerticalTextAlignment=\"Center\" />\n                    </Grid>\n                </Border>\n            </ViewCell>\n        </DataTemplate>\n    </ListView.ItemTemplate>\n</ListView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/SearchBar/ControlInfoListView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class ControlInfoListView : ListView\n{\n    #region [ CTor ]\n    public ControlInfoListView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(nameof(ComponentData),\n                                                                                        typeof(IGalleryCardInfo),\n                                                                                        typeof(ControlInfoListView),\n                                                                                        default(IGalleryCardInfo));\n    public IGalleryCardInfo ComponentData\n    {\n        get => (IGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/SearchBar/SearchBarControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class SearchBarControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(SearchBar);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_search_24_regular\n    };\n    public string ControlDetail => \"SearchBar is a user input control used to initiating a search.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Unverified;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-searchbar\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/SearchBar/SearchBarPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class SearchBarPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    private readonly IControlsService mauiControlsService;\n    #endregion\n\n    #region [ CTor ]\n    public SearchBarPageViewModel(IAppNavigator appNavigator,\n                                  IGitHubService gitHubService,\n                                  DiscordRpcClient discordRpcClient,\n                                  IControlsService mauiControlsService,\n                                  IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                               : base(appNavigator,\n                                                      gitHubService,\n                                                      discordRpcClient,\n                                                      gitHubIssueLocalDbService)\n    {\n        this.mauiControlsService = mauiControlsService;\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string searchText;\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> controlGroupListForEventCall;\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> controlGroupListForCommandCall;\n\n    [ObservableProperty]\n    string standardSearchBarXamlCode = \"<SearchBar Placeholder=\\\"Search items...\\\" />\";\n\n    [ObservableProperty]\n    string performASearchWithEventHandlersXamlCode =\n        \"<SearchBar Placeholder=\\\"Search items...\\\"\\r\\n\" +\n        \"           x:Name=\\\"EventHandlerSearchBar\\\"\\r\\n\" +\n        \"           TextChanged=\\\"OnSearchAsync\\\"/>\";\n\n    [ObservableProperty]\n    string performASearchWithEventHandlersCSCode =\n        \"private async void OnSearchAsync(object sender, TextChangedEventArgs args)\\r\\n\" +\n        \"{\\r\\n        ViewModel.ControlGroupList.Clear();\\r\\n\\r\\n\" +\n        \"    var items = await mauiControlsService.GetControlsAsync(ViewModel.ControlInformation.GroupName);\\r\\n\\r\\n\" +\n        \"    var filtered = items.Where(x => x.ControlName.ToLower().Contains(EventHandlerSearchBar.Text.ToLower(), StringComparison.OrdinalIgnoreCase));\\r\\n\\r\\n\" +\n        \"    foreach (var item in filtered)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        ViewModel.ControlGroupList.Add(item);\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string performASearchWithViewModelXamlCode =\n        \"<SearchBar Placeholder=\\\"Search items...\\\"\\r\\n\" +\n        \"           x:Name=\\\"ViewModelSearchBar\\\"\\r\\n\" +\n        \"           Text=\\\"{x:Binding SearchText}\\\"/>\";\n\n    [ObservableProperty]\n    string performASearchWithViewModelCSCode =\n        \"[ObservableProperty]\\r\\n\" +\n        \"[NotifyCanExecuteChangedFor(nameof(SearchCommand))]\\r\\n\" +\n        \"string searchText = string.Empty;\\r\\n\\r\\n\" +\n        \"partial void OnSearchTextChanged(string value)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    SearchCommand.ExecuteAsync(null);\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"[RelayCommand]\\r\\n\" +\n        \"private async Task SearchAsync(string query)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    ControlGroupList.Clear();\\r\\n\\r\\n\" +\n        \"    var items = await mauiControlsService.GetControlsAsync(ControlInformation.GroupName);\\r\\n\\r\\n\" +\n        \"    foreach (var item in items.Where(x => x.ControlName.ToLower().Contains(SearchText.ToLower())))\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        ControlGroupList.Add(item);\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlGroupListForEventCall = new ObservableCollection<IGalleryCardInfo>();\n        ControlGroupListForCommandCall = new ObservableCollection<IGalleryCardInfo>();\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n        LoadDataAsync().FireAndForget();\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    private async Task SearchAsync()\n    {\n        ControlGroupListForCommandCall.Clear();\n\n        var items = await mauiControlsService.GetControlsAsync(ControlInformation.GroupName);\n\n        foreach (var item in items.Where(x => x.ControlName.ToLower().Contains(SearchText.ToLower())))\n        {\n            ControlGroupListForCommandCall.Add(item);\n        }\n    }\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n        ControlGroupListForEventCall.Clear();\n        ControlGroupListForCommandCall.Clear();\n\n        var items = await mauiControlsService.GetControlsAsync(ControlInformation.GroupName);\n\n        foreach (var item in items)\n        {\n            ControlGroupListForEventCall.Add(item);\n            ControlGroupListForCommandCall.Add(item);\n        }\n        return;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Slider/SliderControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class SliderControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(Slider);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_options_24_regular\n    };\n    public string ControlDetail => \"Slider is a horizontal bar that you can manipulate to select a double value from a continuous range.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Buggy;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-slider\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Slider/SliderPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class SliderPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public SliderPageViewModel(IAppNavigator appNavigator,\n                               IGitHubService gitHubService,\n                               DiscordRpcClient discordRpcClient,\n                               IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string simpleCreateSliderXamlCode = \"<Slider />\";\n\n    [ObservableProperty]\n    string sliderWithCustomColorsXamlCode =\n        \"<Slider\\r\\n\" +\n        \"    MaximumTrackColor=\\\"Red\\\"\\r\\n\" +\n        \"    MinimumTrackColor=\\\"Blue\\\"\\r\\n\" +\n        \"    ThumbColor=\\\"Green\\\" />\";\n\n    [ObservableProperty]\n    string sliderWithCustomThumbImageXamlCode =\n        \"<Slider\\r\\n\" +\n        \"    MinimumTrackColor=\\\"#6e50db\\\"\\r\\n\" +\n        \"    ThumbImageSource=\\\"dotnet_bot.png\\\" />\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Stepper/Converters/AgeToMemeImageConverter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class AgeToMemeImageConverter : IValueConverter\n{\n    #region [ Services ]\n    private readonly IMrIncreadibleMemeService MemeService;\n    #endregion\n\n    #region [ CTor ]\n    public AgeToMemeImageConverter()\n    {\n        MemeService = DependencyService.Get<IMrIncreadibleMemeService>();\n    }\n    #endregion\n\n    #region [ Methods ]\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        var age = (double)value;\n        return MemeService.GetMemeImage(age);\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Stepper/Converters/AgeToMemeTitleConverter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class AgeToMemeTitleConverter : IValueConverter\n{\n    #region [ Services ]\n    private readonly IMrIncreadibleMemeService MemeService;\n    #endregion\n\n    #region [ CTor ]\n    public AgeToMemeTitleConverter()\n    {\n        MemeService = DependencyService.Get<IMrIncreadibleMemeService>();\n    }\n    #endregion\n\n    #region [ Methods ]\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        var age = (double)value;\n        return MemeService.GetMemeTitle(age);\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Stepper/StepperControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class StepperControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(Stepper);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_add_24_regular\n    };\n    public string ControlDetail => \"Stepper enables a numeric value to be selected from a range of values. It consists of two buttons labeled with minus and plus signs.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Stable;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-stepper\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Stepper/StepperPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class StepperPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public StepperPageViewModel(IAppNavigator appNavigator,\n                               IGitHubService gitHubService,\n                               DiscordRpcClient discordRpcClient,\n                               IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IBuiltInGalleryCardInfo controlInformation;\n\n    [ObservableProperty]\n    string xamlStandardStepper =\n        \"<StackLayout Margin=\\\"20\\\">\\r\\n\" +\n        \"   <Label x:Name=\\\"RotatingLabel\\\"\\r\\n\" +\n        \"          Text=\\\"ROTATING TEXT\\\"\\r\\n\" +\n        \"          FontSize=\\\"18\\\"\\r\\n\" +\n        \"          VerticalOptions=\\\"Center\\\"\\r\\n\" +\n        \"          HorizontalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"   <Stepper HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"            Increment=\\\"30\\\"\\r\\n\" +\n        \"            Maximum=\\\"360\\\"\\r\\n\" +\n        \"            ValueChanged=\\\"OnStepperValueChanged\\\" />\\r\\n\" +\n        \"   <Label x:Name=\\\"DisplayLabel\\\"\\r\\n\" +\n        \"          Text=\\\"(uninitialized)\\\"\\r\\n\" +\n        \"          HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"          VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"</StackLayout>\";\n\n    [ObservableProperty]\n    string csharpStandardStepper =\n        \"private void OnStepperValueChanged(object sender, ValueChangedEventArgs e) \\r\\n\" +\n        \"{\\r\\n\" +\n        \"    double value = e.NewValue;\\r\\n\" +\n        \"    RotatingLabel.Rotation = value;\\r\\n\" +\n        \"    DisplayLabel.Text = string.Format(\\\"The Stepper value is {0}\\\", value);\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlDataBindAStepper =\n        \"<StackLayout Margin=\\\"20\\\">\\r\\n\" +\n        \"   <Label Rotation=\\\"{Binding Source={x:Reference MyStepper}, Path=Value}\\\"\\r\\n\" +\n        \"          Text=\\\"ROTATING TEXT\\\"\\r\\n\" +\n        \"          FontSize=\\\"18\\\"\\r\\n\" +\n        \"          HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"          VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"   <Stepper x:Name=\\\"MyStepper\\\"\\r\\n\" +\n        \"            HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"            Increment=\\\"30\\\"\\r\\n\" +\n        \"            Maximum=\\\"360\\\" />\\r\\n\" +\n        \"   <Label Text=\\\"{Binding Source={x:Reference MyStepper}, Path=Value, StringFormat='The Stepper value is {0:F0}'}\\\"\\r\\n\" +\n        \"          HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"          VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"</StackLayout>\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/SwipeView/SwipeViewControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class SwipeViewControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(SwipeView);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_swipe_right_24_regular\n    };\n    public string ControlDetail => \"SwipeView is a container control that wraps around an item of content, and provides context menu items that are revealed by a swipe gesture.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Buggy;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-swipeview\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/SwipeView/SwipeViewPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\n\npublic partial class SwipeViewPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public SwipeViewPageViewModel(IAppNavigator appNavigator,\n                                   IGitHubService gitHubService,\n                                   DiscordRpcClient discordRpcClient,\n                                   IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                    : base(appNavigator,\n                                            gitHubService,\n                                            discordRpcClient,\n                                            gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string standardSwipeViewXamlCode =\n    \"<SwipeView>\\r\\n\" +\n    \"    <SwipeView.LeftItems>\\r\\n\" +\n    \"        <SwipeItems>\\r\\n\" +\n    \"            <SwipeItem\\r\\n\" +\n    \"                BackgroundColor=\\\"LightGreen\\\"\\r\\n\" +\n    \"                Command=\\\"{x:Binding FavoriteCommand}\\\"\\r\\n\" +\n    \"                IconImageSource=\\\"favorite.png\\\"\\r\\n\" +\n    \"                Text=\\\"Favorite\\\" />\\r\\n\" +\n    \"            <SwipeItem\\r\\n\" +\n    \"                BackgroundColor=\\\"LightPink\\\"\\r\\n\" +\n    \"                Command=\\\"{x:Binding DeleteCommand}\\\"\\r\\n\" +\n    \"                IconImageSource=\\\"delete.png\\\"\\r\\n\" +\n    \"                Text=\\\"Delete\\\" />\\r\\n\" +\n    \"        </SwipeItems>\\r\\n\" +\n    \"    </SwipeView.LeftItems>\\r\\n\" +\n    \"    <Grid\\r\\n\" +\n    \"        BackgroundColor=\\\"DimGray\\\"\\r\\n\" +\n    \"        HeightRequest=\\\"60\\\"\\r\\n\" +\n    \"        WidthRequest=\\\"300\\\">\\r\\n\" +\n    \"        <Label\\r\\n\" +\n    \"            HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n    \"            Text=\\\"Swipe right\\\"\\r\\n\" +\n    \"            VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n    \"    </Grid>\\r\\n\" +\n    \"</SwipeView>\";\n\n    [ObservableProperty]\n    string swipeItemsXamlCode =\n        \"<SwipeView>\\r\\n\" +\n        \"    <SwipeView.LeftItems>\\r\\n\" +\n        \"        <SwipeItems>\\r\\n\" +\n        \"            <SwipeItem\\r\\n\" +\n        \"                BackgroundColor=\\\"LightGreen\\\"\\r\\n\" +\n        \"                IconImageSource=\\\"favorite.png\\\"\\r\\n\" +\n        \"                Text=\\\"Favorite\\\" />\\r\\n\" +\n        \"            <SwipeItem\\r\\n\" +\n        \"                BackgroundColor=\\\"LightPink\\\"\\r\\n\" +\n        \"                IconImageSource=\\\"delete.png\\\"\\r\\n\" +\n        \"                Text=\\\"Delete\\\" />\\r\\n\" +\n        \"        </SwipeItems>\\r\\n\" +\n        \"    </SwipeView.LeftItems>\\r\\n\" +\n        \"    <Grid\\r\\n\" +\n        \"        BackgroundColor=\\\"ForestGreen\\\"\\r\\n\" +\n        \"        HeightRequest=\\\"60\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"300\\\">\\r\\n\" +\n        \"        <Label\\r\\n\" +\n        \"            HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"            Text=\\\"Swipe right\\\"\\r\\n\" +\n        \"            VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"    </Grid>\\r\\n\" +\n        \"</SwipeView>\";\n\n    [ObservableProperty]\n    string swipeDirectionXamlCode =\n        \"<SwipeView>\\r\\n\" +\n        \"    <SwipeView.LeftItems>\\r\\n\" +\n        \"        <SwipeItems Mode=\\\"Execute\\\">\\r\\n\" +\n        \"            <SwipeItem\\r\\n\" +\n        \"                BackgroundColor=\\\"LightPink\\\"\\r\\n\" +\n        \"                Command=\\\"{x:Binding DeleteCommand}\\\"\\r\\n\" +\n        \"                IconImageSource=\\\"delete.png\\\"\\r\\n\" +\n        \"                Text=\\\"Delete\\\" />\\r\\n\" +\n        \"        </SwipeItems>\\r\\n\" +\n        \"    </SwipeView.LeftItems>\\r\\n\" +\n        \"    <SwipeView.RightItems>\\r\\n\" +\n        \"        <SwipeItems Mode=\\\"Reveal\\\">\\r\\n\" +\n        \"            <SwipeItem\\r\\n\" +\n        \"                BackgroundColor=\\\"LightGreen\\\"\\r\\n\" +\n        \"                Command=\\\"{x:Binding FavoriteCommand}\\\"\\r\\n\" +\n        \"                IconImageSource=\\\"favorite.png\\\"\\r\\n\" +\n        \"                Text=\\\"Favorite\\\" />\\r\\n\" +\n        \"            <SwipeItem\\r\\n\" +\n        \"                BackgroundColor=\\\"LightYellow\\\"\\r\\n\" +\n        \"                Command=\\\"{x:Binding ShareCommand}\\\"\\r\\n\" +\n        \"                IconImageSource=\\\"share.png\\\"\\r\\n\" +\n        \"                Text=\\\"Share\\\" />\\r\\n\" +\n        \"        </SwipeItems>\\r\\n\" +\n        \"    </SwipeView.RightItems>\\r\\n\" +\n        \"    <Grid\\r\\n\" +\n        \"        BackgroundColor=\\\"BlueViolet\\\"\\r\\n\" +\n        \"        HeightRequest=\\\"60\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"300\\\">\\r\\n\" +\n        \"        <Label\\r\\n\" +\n        \"            HorizontalTextAlignment=\\\"Center\\\"\\r\\n\" +\n        \"            Text=\\\"Swipe Right Or Left\\\"\\r\\n\" +\n        \"            VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"    </Grid>\\r\\n\" +\n        \"</SwipeView>\";\n\n    [ObservableProperty]\n    string swipeThresholdXamlCode =\n        \"<SwipeView Threshold=\\\"200\\\">\\r\\n\" +\n        \"    <SwipeView.LeftItems>\\r\\n\" +\n        \"        <SwipeItems>\\r\\n\" +\n        \"            <SwipeItem\\r\\n\" +\n        \"                BackgroundColor=\\\"LightGreen\\\"\\r\\n\" +\n        \"                IconImageSource=\\\"favorite.png\\\"\\r\\n\" +\n        \"                Text=\\\"Favorite\\\" />\\r\\n\" +\n        \"        </SwipeItems>\\r\\n\" +\n        \"    </SwipeView.LeftItems>\\r\\n\" +\n        \"    <Grid\\r\\n\" +\n        \"        BackgroundColor=\\\"Tomato\\\"\\r\\n\" +\n        \"        HeightRequest=\\\"60\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"300\\\">\\r\\n\" +\n        \"        <Label\\r\\n\" +\n        \"            HorizontalTextAlignment=\\\"Center\\\"\\r\\n\" +\n        \"            Text=\\\"Swipe Right\\\"\\r\\n\" +\n        \"            VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"    </Grid>\\r\\n\" +\n        \"</SwipeView>\";\n\n    [ObservableProperty]\n    string swipeModeXamlCode =\n    \"<SwipeView>\\r\\n\" +\n    \"    <SwipeView.LeftItems>\\r\\n\" +\n    \"        <SwipeItems Mode=\\\"Execute\\\">\\r\\n\" +\n    \"            <SwipeItem\\r\\n\" +\n    \"                BackgroundColor=\\\"LightPink\\\"\\r\\n\" +\n    \"                Command=\\\"{x:Binding DeleteCommand}\\\"\\r\\n\" +\n    \"                IconImageSource=\\\"delete.png\\\"\\r\\n\" +\n    \"                Text=\\\"Delete\\\" />\\r\\n\" +\n    \"        </SwipeItems>\\r\\n\" +\n    \"    </SwipeView.LeftItems>\\r\\n\" +\n    \"    <Grid\\r\\n\" +\n    \"        BackgroundColor=\\\"LightCoral\\\"\\r\\n\" +\n    \"        HeightRequest=\\\"60\\\"\\r\\n\" +\n    \"        WidthRequest=\\\"300\\\">\\r\\n\" +\n    \"        <Label\\r\\n\" +\n    \"            HorizontalTextAlignment=\\\"Center\\\"\\r\\n\" +\n    \"            Text=\\\"Swipe Right\\\"\\r\\n\" +\n    \"            VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n    \"    </Grid>\\r\\n\" +\n    \"</SwipeView>\";\n\n    [ObservableProperty]\n    string swipeBehaviorXamlCode =\n        \"<SwipeView>\\r\\n\" +\n        \"    <SwipeView.LeftItems>\\r\\n\" +\n        \"        <SwipeItems SwipeBehaviorOnInvoked=\\\"RemainOpen\\\">\\r\\n\" +\n        \"            <SwipeItem\\r\\n\" +\n        \"                BackgroundColor=\\\"LightGreen\\\"\\r\\n\" +\n        \"                IconImageSource=\\\"favorite.png\\\"\\r\\n\" +\n        \"                Text=\\\"Favorite\\\" />\\r\\n\" +\n        \"            <SwipeItem\\r\\n\" +\n        \"                BackgroundColor=\\\"LightPink\\\"\\r\\n\" +\n        \"                IconImageSource=\\\"delete.png\\\"\\r\\n\" +\n        \"                Text=\\\"Delete\\\" />\\r\\n\" +\n        \"        </SwipeItems>\\r\\n\" +\n        \"    </SwipeView.LeftItems>\\r\\n\" +\n        \"    <Grid\\r\\n\" +\n        \"        BackgroundColor=\\\"Orchid\\\"\\r\\n\" +\n        \"        HeightRequest=\\\"60\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"300\\\">\\r\\n\" +\n        \"        <Label\\r\\n\" +\n        \"            HorizontalTextAlignment=\\\"Center\\\"\\r\\n\" +\n        \"            Text=\\\"Swipe Right\\\"\\r\\n\" +\n        \"            VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"    </Grid>\\r\\n\" +\n        \"</SwipeView>\";\n\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n\n    [RelayCommand]\n    Task DeleteAsync()\n    => AppNavigator.ShowSnackbarAsync(\"You triggered delete\", null, \"Ok\");\n\n    [RelayCommand]\n    Task FavoriteAsync()\n    => AppNavigator.ShowSnackbarAsync(\"You triggered favorite\", null, \"Ok\");\n\n    [RelayCommand]\n    Task ShareAsync()\n    => AppNavigator.ShowSnackbarAsync(\"You triggered share\", null, \"Ok\");\n\n    [RelayCommand]\n    Task CheckAnswerAsync()\n    => AppNavigator.ShowSnackbarAsync(\"You triggered check anwser\", null, \"Ok\");\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Switch/SwitchControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class SwitchControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(Switch);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_toggle_left_24_regular\n    };\n    public string ControlDetail => \"Switch control is a horizontal toggle button that can be manipulated by the user to toggle between on and off states, which are represented by a boolean value.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Stable;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-switch\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/Switch/SwitchPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\npublic partial class SwitchPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public SwitchPageViewModel(IAppNavigator appNavigator,\n                               IGitHubService gitHubService,\n                               DiscordRpcClient discordRpcClient,\n                               IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string standardSwitchXamlCode =\n        \"<Switch IsToggled=\\\"True\\\"\\r\\n\" +\n        \"        OnColor=\\\"Pink\\\"\\r\\n\" +\n        \"        ThumbColor=\\\"ForestGreen\\\"/>\";\n\n    [ObservableProperty]\n    string advanceSwitchXamlCode =\n        \"Data bind\\r\\n\\r\\n\" +\n        \"<Label Margin=\\\"0,10,0,5\\\"\\r\\n\" +\n        \"       FontSize=\\\"15\\\">\\r\\n\" +\n        \"    <Label.Triggers>\\r\\n\" +\n        \"        <DataTrigger TargetType=\\\"Label\\\"\\r\\n\" +\n        \"                     Binding=\\\"{Binding Source={x:Reference switch2}, Path=IsToggled}\\\"\\r\\n\" +\n        \"                     Value=\\\"True\\\">\\r\\n\" +\n        \"            <Setter Property=\\\"Text\\\"\\r\\n\" +\n        \"                    Value=\\\"The light is on 😊\\\"/>\\r\\n\" +\n        \"            <Setter Property=\\\"TextColor\\\"\\r\\n\" +\n        \"                    Value=\\\"Yellow\\\"/>\\r\\n\" +\n        \"        </DataTrigger>\\r\\n\" +\n        \"        <DataTrigger TargetType=\\\"Label\\\"\\r\\n\" +\n        \"                     Binding=\\\"{Binding Source={x:Reference switch2}, Path=IsToggled}\\\"\\r\\n\" +\n        \"                     Value=\\\"False\\\">\\r\\n\" +\n        \"            <Setter Property=\\\"Text\\\"\\r\\n\" +\n        \"                    Value=\\\"The light is off 😭\\\"/>\\r\\n\" +\n        \"            <Setter Property=\\\"TextColor\\\"\\r\\n\" +\n        \"                    Value=\\\"Gray\\\"/>\\r\\n\" +\n        \"        </DataTrigger>\\r\\n\" +\n        \"    </Label.Triggers>\\r\\n\" +\n        \"</Label>\\r\\n\\r\\n\" +\n        \"Visual States\\r\\n\\r\\n\" +\n        \"<Switch x:Name=\\\"switch2\\\"\\r\\n\" +\n        \"        OnColor=\\\"CadetBlue\\\">\\r\\n\" +\n        \"    <VisualStateManager.VisualStateGroups>\\r\\n\" +\n        \"        <VisualStateGroupList>\\r\\n\" +\n        \"            <VisualStateGroup x:Name=\\\"SwitchCommonStates\\\">\\r\\n\" +\n        \"                <VisualState x:Name=\\\"On\\\">\\r\\n\" +\n        \"                    <VisualState.Setters>\\r\\n\" +\n        \"                        <Setter Property=\\\"ThumbColor\\\"\\r\\n\" +\n        \"                                Value=\\\"MediumSpringGreen\\\" />\\r\\n\" +\n        \"                    </VisualState.Setters>\\r\\n\" +\n        \"                </VisualState>\\r\\n\" +\n        \"                <VisualState x:Name=\\\"Off\\\">\\r\\n\" +\n        \"                    <VisualState.Setters>\\r\\n\" +\n        \"                        <Setter Property=\\\"ThumbColor\\\"\\r\\n\" +\n        \"                                Value=\\\"Red\\\" />\\r\\n\" +\n        \"                    </VisualState.Setters>\\r\\n\" +\n        \"                </VisualState>\\r\\n\" +\n        \"            </VisualStateGroup>\\r\\n\" +\n        \"        </VisualStateGroupList>\\r\\n\" +\n        \"    </VisualStateManager.VisualStateGroups>\\r\\n\" +\n        \"</Switch>\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/TabbedPage/TabbedPageControlInfo.cs",
    "content": "namespace MAUIsland.Core;\npublic class TabbedPageControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(TabbedPage);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_phone_pagination_24_regular\n    };\n    public string ControlDetail => \"TabbedPage maintains a collection of children of type Page, only one of which is fully visible at a time. Each child is identified by a series of tabs across the top or bottom of the page. Typically, each child will be a ContentPage and when its tab is selected the page content is displayed.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.ExtremelyBuggy;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area/TabbedPage\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/TabbedPage/TabbedPagePageViewModel.cs",
    "content": "using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\npublic partial class TabbedPagePageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ CTor ]\n    public TabbedPagePageViewModel(IAppNavigator appNavigator,\n                                   IGitHubService gitHubService,\n                                   DiscordRpcClient discordRpcClient,\n                                   IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                    : base(appNavigator,\n                                            gitHubService,\n                                            discordRpcClient,\n                                            gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/TableView/TableViewControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class TableViewControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(TableView);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_clipboard_bullet_list_ltr_20_regular\n    };\n    public string ControlDetail => \"TableView displays a table of scrollable items that can be grouped into sections.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.ExtremelyBuggy;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area/ListView\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/TableView/TableViewPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class TableViewPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public TableViewPageViewModel(IAppNavigator appNavigator,\n                                   IGitHubService gitHubService,\n                                   DiscordRpcClient discordRpcClient,\n                                   IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                    : base(appNavigator,\n                                            gitHubService,\n                                            discordRpcClient,\n                                            gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string standardTableViewXamlCode =\n    \"<TableView Intent=\\\"Menu\\\">\\r\\n\" +\n    \"    <TableRoot>\\r\\n\" +\n    \"        <TableSection Title=\\\"Chapters\\\">\\r\\n\" +\n    \"            <TextCell Text=\\\"1. Introduction to .NET MAUI\\\"\\r\\n\" +\n    \"                      Detail=\\\"Learn about .NET MAUI and what it provides.\\\" />\\r\\n\" +\n    \"            <TextCell Text=\\\"2. Anatomy of an app\\\"\\r\\n\" +\n    \"                      Detail=\\\"Learn about the visual elements in .NET MAUI\\\" />\\r\\n\" +\n    \"            <TextCell Text=\\\"3. Text\\\"\\r\\n\" +\n    \"                      Detail=\\\"Learn about the .NET MAUI controls that display text.\\\" />\\r\\n\" +\n    \"            <TextCell Text=\\\"4. Dealing with sizes\\\"\\r\\n\" +\n    \"                      Detail=\\\"Learn how to size .NET MAUI controls on screen.\\\" />\\r\\n\" +\n    \"            <TextCell Text=\\\"5. XAML vs code\\\"\\r\\n\" +\n    \"                      Detail=\\\"Learn more about creating your UI in XAML.\\\" />\\r\\n\" +\n    \"        </TableSection>\\r\\n\" +\n    \"    </TableRoot>\\r\\n\" +\n    \"</TableView>\";\n\n    [ObservableProperty]\n    string textCellXamlCode =\n        \"<TableView Intent=\\\"Menu\\\">\\r\\n\" +\n        \"    <TableRoot>\\r\\n\" +\n        \"        <TableSection Title=\\\"Chapters\\\">\\r\\n\" +\n        \"            <TextCell Text=\\\"1. Introduction to .NET MAUI\\\"\\r\\n\" +\n        \"                      Detail=\\\"Learn about .NET MAUI and what it provides.\\\" />\\r\\n\" +\n        \"            <TextCell Text=\\\"2. Anatomy of an app\\\"\\r\\n\" +\n        \"                      Detail=\\\"Learn about the visual elements in .NET MAUI\\\" />\\r\\n\" +\n        \"            <TextCell Text=\\\"3. Text\\\"\\r\\n\" +\n        \"                      Detail=\\\"Learn about the .NET MAUI controls that display text.\\\" />\\r\\n\" +\n        \"            <TextCell Text=\\\"4. Dealing with sizes\\\"\\r\\n\" +\n        \"                      Detail=\\\"Learn how to size .NET MAUI controls on screen.\\\" />\\r\\n\" +\n        \"            <TextCell Text=\\\"5. XAML vs code\\\"\\r\\n\" +\n        \"                      Detail=\\\"Learn more about creating your UI in XAML.\\\" />\\r\\n\" +\n        \"        </TableSection>\\r\\n\" +\n        \"    </TableRoot>\\r\\n\" +\n        \"</TableView>\";\n\n    [ObservableProperty]\n    string imageCellXamlCode =\n        \"<TableView Intent=\\\"Menu\\\">\\r\\n\" +\n        \"    <TableRoot>\\r\\n\" +\n        \"        <TableSection Title=\\\"Learn how to use your XBox\\\">\\r\\n\" +\n        \"            <ImageCell Text=\\\"1. Introduction\\\"\\r\\n\" +\n        \"                       Detail=\\\"Learn about your XBox and its capabilities.\\\"\\r\\n\" +\n        \"                       ImageSource=\\\"xbox.png\\\" />\\r\\n\" +\n        \"            <ImageCell Text=\\\"2. Turn it on\\\"\\r\\n\" +\n        \"                       Detail=\\\"Learn how to turn on your XBox.\\\"\\r\\n\" +\n        \"                       ImageSource=\\\"xbox.png\\\" />\\r\\n\" +\n        \"            <ImageCell Text=\\\"3. Connect your controller\\\"\\r\\n\" +\n        \"                       Detail=\\\"Learn how to connect your wireless controller.\\\"\\r\\n\" +\n        \"                       ImageSource=\\\"xbox.png\\\" />\\r\\n\" +\n        \"            <ImageCell Text=\\\"4. Launch a game\\\"\\r\\n\" +\n        \"                       Detail=\\\"Learn how to launch a game.\\\"\\r\\n\" +\n        \"                       ImageSource=\\\"xbox.png\\\" />\\r\\n\" +\n        \"        </TableSection>\\r\\n\" +\n        \"    </TableRoot>\\r\\n\" +\n        \"</TableView>\";\n\n    [ObservableProperty]\n    string switchCellXamlCode =\n        \"<TableView Intent=\\\"Settings\\\">\\r\\n\" +\n        \"    <TableRoot>\\r\\n\" +\n        \"        <TableSection>\\r\\n\" +\n        \"            <SwitchCell Text=\\\"Airplane Mode\\\"\\r\\n\" +\n        \"                        On=\\\"False\\\" />\\r\\n\" +\n        \"            <SwitchCell Text=\\\"Notifications\\\"\\r\\n\" +\n        \"                        On=\\\"True\\\" />\\r\\n\" +\n        \"        </TableSection>\\r\\n\" +\n        \"    </TableRoot>\\r\\n\" +\n        \"</TableView>\";\n\n    [ObservableProperty]\n    string entryCellXamlCode =\n        \"<TableView Intent=\\\"Settings\\\">\\r\\n\" +\n        \"    <TableRoot>\\r\\n\" +\n        \"        <TableSection>\\r\\n\" +\n        \"            <EntryCell Label=\\\"Login\\\"\\r\\n\" +\n        \"                       Placeholder=\\\"username\\\" />\\r\\n\" +\n        \"            <EntryCell Label=\\\"Password\\\"\\r\\n\" +\n        \"                       Placeholder=\\\"password\\\" />\\r\\n\" +\n        \"        </TableSection>\\r\\n\" +\n        \"    </TableRoot>\\r\\n\" +\n        \"</TableView>\";\n\n    [ObservableProperty]\n    string viewCellXamlCode =\n        \"<TableView Intent=\\\"Settings\\\">\\r\\n\" +\n        \"    <TableRoot>\\r\\n\" +\n        \"        <TableSection Title=\\\"Silent\\\">\\r\\n\" +\n        \"            <ViewCell>\\r\\n\" +\n        \"                <Grid RowDefinitions=\\\"Auto,Auto\\\"\\r\\n\" +\n        \"                      ColumnDefinitions=\\\"0.5*,0.5*\\\">\\r\\n\" +\n        \"                    <Label Text=\\\"Vibrate\\\"\\r\\n\" +\n        \"                           Margin=\\\"10,10,0,0\\\"/>\\r\\n\" +\n        \"                    <Switch Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"                            HorizontalOptions=\\\"End\\\" />\\r\\n\" +\n        \"                    <Slider Grid.Row=\\\"1\\\"\\r\\n\" +\n        \"                            Grid.ColumnSpan=\\\"2\\\"\\r\\n\" +\n        \"                            Margin=\\\"10\\\"\\r\\n\" +\n        \"                            Minimum=\\\"0\\\"\\r\\n\" +\n        \"                            Maximum=\\\"10\\\"\\r\\n\" +\n        \"                            Value=\\\"3\\\" />\\r\\n\" +\n        \"                </Grid>\\r\\n\" +\n        \"            </ViewCell>\\r\\n\" +\n        \"        </TableSection>\\r\\n\" +\n        \"    </TableRoot>\\r\\n\" +\n        \"</TableView>\";\n\n    [ObservableProperty]\n    string rightToLeftLayoutXamlCode =\n        \"<ContentPage xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"             xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"             x:Class=\\\"TableViewDemos.RightToLeftTablePage\\\"\\r\\n\" +\n        \"             Title=\\\"Right to left TableView\\\"\\r\\n\" +\n        \"             FlowDirection=\\\"RightToLeft\\\">\\r\\n\" +\n        \"    <TableView Intent=\\\"Settings\\\">\\r\\n\" +\n        \"        ...\\r\\n\" +\n        \"    </TableView>\\r\\n\" +\n        \"</ContentPage>\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/TimePicker/Converters/TimeOnyToTimeSpanConverter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class TimeOnyToTimeSpanConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        var timeOnly = (TimeOnly)value;\n        return timeOnly.ToTimeSpan();\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        var timeSpan = (TimeSpan)value;\n        return TimeOnly.FromTimeSpan(timeSpan);\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/TimePicker/TimePickerControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class TimePickerControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(TimePicker);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_clock_24_regular\n    };\n    public string ControlDetail => \"TimePicker invokes the platform's time-picker control and allows you to select a time.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Stable;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-datetimepicker\" };\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Controls/TimePicker/TimePickerPageViewModel.cs",
    "content": "﻿using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\n\npublic partial class TimePickerPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public TimePickerPageViewModel(IAppNavigator appNavigator,\n                                   IGitHubService gitHubService,\n                                   DiscordRpcClient discordRpcClient,\n                                   IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                    : base(appNavigator,\n                                            gitHubService,\n                                            discordRpcClient,\n                                            gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string simpleTimePickerXamlCode =\n    \"<TimePicker Time=\\\"4:15:26\\\" />\";\n\n    [ObservableProperty]\n    string simpleTimePickerCSharpCode =\n        \"TimePicker timePicker = new TimePicker\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    Time = new TimeSpan(4, 15, 26) // Time set to \\\"04:15:26\\\"\\r\\n\" +\n        \"};\";\n\n    [ObservableProperty]\n    string timeOnlyContrutorsExampleCSharpCode =\n        \"public TimeOnly(int hour, int minute)\\r\\n\" +\n        \"public TimeOnly(int hour, int minute, int second)\\r\\n\" +\n        \"public TimeOnly(int hour, int minute, int second, int millisecond)\";\n\n    [ObservableProperty]\n    string timeOnlyExampleCSharpCode =\n        \"var startTime = new TimeOnly(10, 30);\";\n\n    [ObservableProperty]\n    string timeOnyToTimeSpanConverterCSharpCode =\n        \"public class TimeOnyToTimeSpanConverter : IValueConverter\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        var timeOnly = (TimeOnly)value;\\r\\n\" +\n        \"        return timeOnly.ToTimeSpan();\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        var timeSpan = (TimeSpan)value;\\r\\n\" +\n        \"        return TimeOnly.FromTimeSpan(timeSpan);\\r\\n\" +\n        \"    }\\r\\n}\";\n\n    [ObservableProperty]\n    TimeOnly timeOnlyTime = new(10, 30);\n\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Helpers/AppSettingsJson/AppSettingsJsonControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\nclass AppSettingsJsonControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => \"Application Settings JSON\";\n    public string ControlRoute => $\"MAUIsland.AppSettingsJsonPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_braces_24_regular\n    };\n    public string ControlDetail => \"Use appsettings.json inside your application thanks to MauiAppBuilder, we can use the ConfigurationManager that is built into configure settings in our .NET MAUI app\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Helpers/AppSettingsJson\";\n    public string DocumentUrl => $\"https://montemagno.com/dotnet-maui-appsettings-json-configuration/\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Unverified;\n    public GalleryCardType CardType => GalleryCardType.Helper;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area/hosting 🧩\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Helpers/AppSettingsJson/AppSettingsJsonPageViewModel.cs",
    "content": "using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class AppSettingsJsonPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ CTor ]\n    public AppSettingsJsonPageViewModel(IAppNavigator appNavigator,\n                                       IGitHubService gitHubService,\n                                       DiscordRpcClient discordRpcClient,\n                                       IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                        : base(appNavigator,\n                                                gitHubService,\n                                                discordRpcClient,\n                                                gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string appSettingsJsonContent =\n        \"{\\r\\n\" +\n        \"  \\\"Settings\\\": {\\r\\n\" +\n        \"    \\\"KeyOne\\\": 1,\\r\\n\" +\n        \"    \\\"KeyTwo\\\": true,\\r\\n\" +\n        \"    \\\"KeyThree\\\": {\\r\\n\" +\n        \"      \\\"Message\\\": \\\"Oh, that's nice...\\\"\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"  }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string appSettingsCSharpClasses =\n        \"public class Settings\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    public int KeyOne { get; set; }\\r\\n\" +\n        \"    public bool KeyTwo { get; set; }\\r\\n\" +\n        \"    public NestedSettings KeyThree { get; set; } = null!;\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"public class NestedSettings\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    public string Message { get; set; } = null!;\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string packageReferencesCode =\n        \"<ItemGroup>\\r\\n\" +\n        \"    <PackageReference Include=\\\"Microsoft.Extensions.Configuration.Binder\\\" Version=\\\"6.0.0\\\" />\\r\\n\" +\n        \"    <PackageReference Include=\\\"Microsoft.Extensions.Configuration.Json\\\" Version=\\\"6.0.0\\\" />\\r\\n\" +\n        \"</ItemGroup>\";\n\n    [ObservableProperty]\n    string setUpConfigBuilder =\n        \"var a = Assembly.GetExecutingAssembly();\\r\\n\" +\n        \"using var stream = a.GetManifestResourceStream(\\\"MauiApp27.appsettings.json\\\");\\r\\n\\r\\n\" +\n        \"var config = new ConfigurationBuilder()\\r\\n\" +\n        \"\\t\\t\\t.AddJsonStream(stream)\\r\\n\" +\n        \"\\t\\t\\t.Build();\\r\\n\\r\\n\\r\\n\" +\n        \"builder.Configuration.AddConfiguration(config);\";\n\n    [ObservableProperty]\n    string registerMainPageToServiceCollection =\n        \"builder.Services.AddTransient<MainPage>();\";\n\n    [ObservableProperty]\n    string injectMainPageService =\n        \"public App(MainPage page)\\r\\n\" +\n        \"\\t{\\r\\n\" +\n        \"\\t\\tInitializeComponent();\\r\\n\\r\\n\" +\n        \"\\t\\tMainPage = page;\\r\\n\\t}\";\n\n    [ObservableProperty]\n    string mainPageWithCounterClickEvent =\n        \"int count = 0;\\r\\n\" +\n        \"\\tIConfiguration configuration;\\r\\n\" +\n        \"\\tpublic MainPage(IConfiguration config)\\r\\n\" +\n        \"\\t{\\r\\n\" +\n        \"\\t\\tInitializeComponent();\\r\\n\\r\\n\" +\n        \"\\t\\tconfiguration = config;\\r\\n\\r\\n\\t}\\r\\n\\r\\n\" +\n        \"\\tprivate async void OnCounterClicked(object sender, EventArgs e)\\r\\n\" +\n        \"\\t{\\r\\n\" +\n        \"\\t\\tcount++;\\r\\n\" +\n        \"\\t\\tCounterLabel.Text = $\\\"Current count: {count}\\\";\\r\\n\\r\\n\\t\\t\" +\n        \"SemanticScreenReader.Announce(CounterLabel.Text);\\r\\n\\r\\n\\r\\n\\t\\t\" +\n        \"var settings = configuration.GetRequiredSection(\\\"Settings\\\").Get<Settings>();\\r\\n\\t\\t\" +\n        \"await DisplayAlert(\\\"Config\\\", $\\\"{nameof(settings.KeyOne)}: {settings.KeyOne}\\\" +\\r\\n\" +\n        \"            $\\\"{nameof(settings.KeyTwo)}: {settings.KeyTwo}\\\" +\\r\\n\" +\n        \"            $\\\"{nameof(settings.KeyThree.Message)}: {settings.KeyThree.Message}\\\", \\\"OK\\\");\\r\\n\\t}\";\n\n    [ObservableProperty]\n    string serviceProviderExample =\n        \"public static class MauiProgram\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    public static MauiApp CreateMauiApp()\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        //normal builder stuff\\r\\n\\r\\n\" +\n        \"        var app = builder.Build();\\r\\n\" +\n        \"        Services = app.Services;\\r\\n\\r\\n\" +\n        \"        return app;\\r\\n    }\\r\\n\\r\\n\" +\n        \"    public static IServiceProvider Services { get; private set; }\\r\\n}\";\n\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Helpers/AppSettingsJson/Models/Settings.cs",
    "content": "﻿namespace MAUIsland.Core;\npublic class Settings\n{\n    public int KeyOne { get; set; }\n    public bool KeyTwo { get; set; }\n    public NestedSettings KeyThree { get; set; } = null!;\n}\n\npublic class NestedSettings\n{\n    public string Message { get; set; } = null!;\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Helpers/Popup/PopupControlInfo.cs",
    "content": "namespace MAUIsland.Core;\nclass PopupControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => \"Popup\";\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_square_shadow_12_regular\n    };\n    public string ControlDetail => \"Displaying an alert, asking a user to make a choice, or displaying a prompt is a common UI task. .NET Multi-platform App UI (.NET MAUI) has three methods on the Page class for interacting with the user via a pop-up: DisplayAlert, DisplayActionSheet, and DisplayPromptAsync. Pop-ups are rendered with native controls on each platform.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Helpers/Popup\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/pop-ups\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Stable;\n    public GalleryCardType CardType => GalleryCardType.Helper;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"area-controls-dialogalert\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Helpers/Popup/PopupPageViewModel.cs",
    "content": "using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\npublic partial class PopupPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    private readonly IDialogService dialogService = default!;\n    #endregion\n\n    #region [ CTor ]\n    public PopupPageViewModel(IAppNavigator appNavigator,\n                              IGitHubService gitHubService,\n                              DiscordRpcClient discordRpcClient,\n                              IDialogService dialogService,\n                              IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n        this.dialogService = dialogService;\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string standardPopupCSharpCode =\n    \"private async void Button_Clicked(object sender, EventArgs e)\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    await DisplayAlert(\\\"Sample Popup Alert\\\", \\\"You have been alerted\\\", \\\"OK\\\");\\r\\n\" +\n    \"}\";\n\n    [ObservableProperty]\n    string captureResponsePopupCSharpCode =\n        \"private async void Button_Clicked_1(object sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    bool answer = await DisplayAlert(\\\"Question?\\\", \\\"Would you like to play a game\\\", \\\"Yes\\\",\\\"No\\\");\\r\\n\" +\n        \"    await DisplayAlert(\\\"Answer\\\",$\\\"Answer is {( answer ? \\\"yes\\\" : \\\"no\\\")}\\\" , \\\"OK\\\");\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string actionSheetPopupCSharpCode =\n        \"private async void Button_Clicked_2(object sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    string answer = await DisplayActionSheet(\\\"What game do you wanna play?\\\", \\\"Cancel\\\", null, \\\"LOL\\\", \\\"Halo\\\", \\\"Dota2\\\");\\r\\n\" +\n        \"    if (answer != \\\"Cancel\\\")\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        await DisplayAlert(\\\"Answer\\\", $\\\"{answer} is great!\\\", \\\"OK\\\");\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string promptPopupCSharpCode =\n        \"private async void Button_Clicked_3(object sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    string answer = await DisplayPromptAsync(\\\"Hello\\\", \\\"What's your name?\\\",placeholder: \\\"Type your name\\\");\\r\\n\" +\n        \"    if (answer != null) \\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        await DisplayAlert(\\\"Welcome\\\", $\\\"Hello, {answer}\\\",\\\"Cancel\\\");\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string viewModelPopUpInterfaceCode =\n    \"public interface IDialogService\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    Task<bool> ShowConfirmationAsync(string title, string message);\\r\\n\" +\n    \"    Task ShowAlertAsync(string title, string message, string accept, string cancel);\\r\\n\" +\n    \"    Task<string> ShowActionsAsync(string title, string message, string destruction, params string[] buttons);\\r\\n\" +\n    \"}\\r\\n\";\n\n    [ObservableProperty]\n    string viewModelPopUpCSharpCode =\n    \"public class DialogService : IDialogService\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    public Task<bool> ShowConfirmationAsync(string title, string message)\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        return Application.Current.MainPage.DisplayAlert(title, message, \\\"Understandable, have a nice day\\\", \\\"Cancel\\\");\\r\\n\" +\n    \"    }\\r\\n\\r\\n\" +\n    \"    public Task ShowAlertAsync(string title, string message, string accept, string cancel)\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        return Application.Current.MainPage.DisplayAlert(title, message, accept, cancel);\\r\\n\" +\n    \"    }\\r\\n\\r\\n\" +\n    \"    public Task<string> ShowActionsAsync(string title, string message, string destruction, params string[] buttons)\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        return Application.Current.MainPage.DisplayActionSheet(title, \\\"Closed\\\", destruction, buttons);\\r\\n\" +\n    \"    }\\r\\n\" +\n    \"}\\r\\n\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    Task TriggerDialogFromViewModelAsync()\n    {\n        return dialogService.ShowConfirmationAsync(\"I'm from the Viewmodel\", \"This dialog was opened from the view model instead of code behind\");\n    }\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Layouts/AbsoluteLayout/AbsoluteLayoutControlInfo.cs",
    "content": "namespace MAUIsland.Core;\nclass AbsoluteLayoutControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(AbsoluteLayout);\n    public string ControlRoute => \"MAUIsland.AbsoluteLayoutPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_table_switch_28_regular\n    };\n    public string ControlDetail => \"AbsoluteLayout is used to position and size children using explicit values. The position is specified by the upper-left corner of the child relative to the upper-left corner of the AbsoluteLayout, in device-independent units. AbsoluteLayout also implements a proportional positioning and sizing feature. In addition, unlike some other layout classes, AbsoluteLayout is able to position children so that they overlap.\\r\\n\\r\\nAn AbsoluteLayout should be regarded as a special-purpose layout to be used only when you can impose a size on children, or when the element's size doesn't affect the positioning of other children.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/BuiltIn/Layouts/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/layouts/absolutelayout?view=net-maui-9.0\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Buggy;\n    public GalleryCardType CardType => GalleryCardType.Layout;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"layout-absolute\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Layouts/AbsoluteLayout/AbsoluteLayoutPageViewModel.cs",
    "content": "using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\npublic partial class AbsoluteLayoutPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public AbsoluteLayoutPageViewModel(IAppNavigator appNavigator,\n                                       IGitHubService gitHubService,\n                                       DiscordRpcClient discordRpcClient,\n                                       IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                        : base(appNavigator,\n                                                gitHubService,\n                                                discordRpcClient,\n                                                gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string srpLink = \"https://learn.microsoft.com/en-us/archive/msdn-magazine/2014/may/csharp-best-practices-dangers-of-violating-solid-principles-in-csharp#the-single-responsibility-principle\";\n\n    [ObservableProperty]\n    string ocpLink = \"https://learn.microsoft.com/en-us/archive/msdn-magazine/2014/may/csharp-best-practices-dangers-of-violating-solid-principles-in-csharp#the-open-closed-principle\";\n\n    [ObservableProperty]\n    string lspLink = \"https://learn.microsoft.com/en-us/archive/msdn-magazine/2014/may/csharp-best-practices-dangers-of-violating-solid-principles-in-csharp#the-liskov-substitution-principle\";\n\n    [ObservableProperty]\n    string ispLink = \"https://learn.microsoft.com/en-us/archive/msdn-magazine/2014/may/csharp-best-practices-dangers-of-violating-solid-principles-in-csharp#the-interface-segregation-principle\";\n\n    [ObservableProperty]\n    string dipLink = \"https://learn.microsoft.com/en-us/archive/msdn-magazine/2014/may/csharp-best-practices-dangers-of-violating-solid-principles-in-csharp#the-dependency-inversion-principle\";\n\n    [ObservableProperty]\n    string mvcminimalAPIsLink = \"https://learn.microsoft.com/en-us/aspnet/core/fundamentals/apis?view=aspnetcore-8.0\";\n\n    [ObservableProperty]\n    string positionAndSizeChildren = \"The position and size of children in an AbsoluteLayout is defined by setting the AbsoluteLayout.LayoutBounds attached property of each child, using absolute values or proportional values. Absolute and proportional values can be mixed for children when the position should scale, but the size should stay fixed, or vice versa. For information about absolute values, see Absolute positioning and sizing. For information about proportional values, see Proportional positioning and sizing.\";\n\n    [ObservableProperty]\n    string positionAndSizeChildren1 = \"The AbsoluteLayout.LayoutBounds attached property can be set using two formats, regardless of whether absolute or proportional values are used:\";\n\n    [ObservableProperty]\n    string positionAndSizeChildren2 = \"To specify that a child sizes itself horizontally or vertically, or both, set the width and/or height values to the AbsoluteLayout.AutoSize property. However, overuse of this property can harm application performance, as it causes the layout engine to perform additional layout calculations.\";\n\n    [ObservableProperty]\n    string positionAndSizeChildrenImportant = \"The HorizontalOptions and VerticalOptions properties have no effect on children of an AbsoluteLayout.\";\n\n    [ObservableProperty]\n    List<string> positionAndSizeChildrenList = new()\n    {\n        \"x, y. With this format, the x and y values indicate the position of the upper-left corner of the child relative to its parent. The child is unconstrained and sizes itself.\",\n        \"x, y, width, height. With this format, the x and y values indicate the position of the upper-left corner of the child relative to its parent, while the width and height values indicate the child's size.\"\n    };\n\n    [ObservableProperty]\n    string absolutePositioningAndSizing = \"By default, an AbsoluteLayout positions and sizes children using absolute values, specified in device-independent units, which explicitly define where children should be placed in the layout. This is achieved by adding children to an AbsoluteLayout and setting the AbsoluteLayout.LayoutBounds attached property on each child to absolute position and/or size values.\";\n\n    [ObservableProperty]\n    string absolutePositioningAndSizingWarning = \"Using absolute values for positioning and sizing children can be problematic, because different devices have different screen sizes and resolutions. Therefore, the coordinates for the center of the screen on one device may be offset on other devices.\";\n\n    [ObservableProperty]\n    string absolutePositioningAndSizing1 = \"The following XAML shows an AbsoluteLayout whose children are positioned using absolute values:\";\n\n    [ObservableProperty]\n    string absolutePositioningAndSizing2 = \"In this example, the position of each BoxView object is defined using the first two absolute values that are specified in the AbsoluteLayout.LayoutBounds attached property. The size of each BoxView is defined using the third and forth values. The position of the Label object is defined using the two absolute values that are specified in the AbsoluteLayout.LayoutBounds attached property. Size values are not specified for the Label, and so it's unconstrained and sizes itself. In all cases, the absolute values represent device-independent units.\";\n\n    [ObservableProperty]\n    string absolutePositioningAndSizing3 = \"The equivalent C# code is shown below:\";\n\n    [ObservableProperty]\n    string absolutePositioningAndSizing4 = \"In this example, the position and size of each BoxView is defined using a Rect object. The position of the Label is defined using a Point object. The C# example uses the following Add extension methods to add children to the AbsoluteLayout:\";\n\n    [ObservableProperty]\n    string absolutePositioningAndSizing5 = \"In C#, it's also possible to set the position and size of a child of an AbsoluteLayout after it has been added to the layout, using the <span style=\\\"color:red;\\\"><strong>AbsoluteLayout.SetLayoutBounds</strong></span> method. The first argument to this method is the child, and the second is a <span style=\\\"color:red;\\\"><strong>Rect</strong></span> object.\";\n\n    [ObservableProperty]\n    string absolutePositioningAndSizingNote = \"An AbsoluteLayout that uses absolute values can position and size children so that they don't fit within the bounds of the layout.\";\n\n    [ObservableProperty]\n    string absolutePositioningAndSizingXamlCode =\n    \"<ContentPage xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n    \"             xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n    \"             x:Class=\\\"AbsoluteLayoutDemos.Views.XAML.StylishHeaderDemoPage\\\"\\r\\n\" +\n    \"             Title=\\\"Stylish header demo\\\">\\r\\n\" +\n    \"    <AbsoluteLayout Margin=\\\"20\\\">\\r\\n\" +\n    \"        <BoxView Color=\\\"Silver\\\"\\r\\n\" +\n    \"                 AbsoluteLayout.LayoutBounds=\\\"0, 10, 200, 5\\\" />\\r\\n\" +\n    \"        <BoxView Color=\\\"Silver\\\"\\r\\n\" +\n    \"                 AbsoluteLayout.LayoutBounds=\\\"0, 20, 200, 5\\\" />\\r\\n\" +\n    \"        <BoxView Color=\\\"Silver\\\"\\r\\n\" +\n    \"                 AbsoluteLayout.LayoutBounds=\\\"10, 0, 5, 65\\\" />\\r\\n\" +\n    \"        <BoxView Color=\\\"Silver\\\"\\r\\n\" +\n    \"                 AbsoluteLayout.LayoutBounds=\\\"20, 0, 5, 65\\\" />\\r\\n\" +\n    \"        <Label Text=\\\"Stylish Header\\\"\\r\\n\" +\n    \"               FontSize=\\\"24\\\"\\r\\n\" +\n    \"               AbsoluteLayout.LayoutBounds=\\\"30, 25\\\" />\\r\\n\" +\n    \"    </AbsoluteLayout>\\r\\n\" +\n    \"</ContentPage>\";\n\n    [ObservableProperty]\n    string absolutePositioningAndSizingCSharpCode =\n    \"public class StylishHeaderDemoPage : ContentPage\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    public StylishHeaderDemoPage()\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        AbsoluteLayout absoluteLayout = new AbsoluteLayout\\r\\n\" +\n    \"        {\\r\\n\" +\n    \"            Margin = new Thickness(20)\\r\\n\" +\n    \"        };\\r\\n\" +\n    \"\\r\\n\" +\n    \"        absoluteLayout.Add(new BoxView\\r\\n\" +\n    \"        {\\r\\n\" +\n    \"            Color = Colors.Silver\\r\\n\" +\n    \"        }, new Rect(0, 10, 200, 5));\\r\\n\" +\n    \"        absoluteLayout.Add(new BoxView\\r\\n\" +\n    \"        {\\r\\n\" +\n    \"            Color = Colors.Silver\\r\\n\" +\n    \"        }, new Rect(0, 20, 200, 5));\\r\\n\" +\n    \"        absoluteLayout.Add(new BoxView\\r\\n\" +\n    \"        {\\r\\n\" +\n    \"            Color = Colors.Silver\\r\\n\" +\n    \"        }, new Rect(10, 0, 5, 65));\\r\\n\" +\n    \"        absoluteLayout.Add(new BoxView\\r\\n\" +\n    \"        {\\r\\n\" +\n    \"            Color = Colors.Silver\\r\\n\" +\n    \"        }, new Rect(20, 0, 5, 65));\\r\\n\" +\n    \"\\r\\n\" +\n    \"        absoluteLayout.Add(new Label\\r\\n\" +\n    \"        {\\r\\n\" +\n    \"            Text = \\\"Stylish Header\\\",\\r\\n\" +\n    \"            FontSize = 24\\r\\n\" +\n    \"        }, new Point(30, 25));\\r\\n\" +\n    \"\\r\\n\" +\n    \"        Title = \\\"Stylish header demo\\\";\\r\\n\" +\n    \"        Content = absoluteLayout;\\r\\n\" +\n    \"    }\\r\\n\" +\n    \"}\";\n\n    [ObservableProperty]\n    string absolutePositioningAndSizingCSharpCode1 =\n    \"using Microsoft.Maui.Layouts;\\r\\n\" +\n    \"\\r\\n\" +\n    \"namespace Microsoft.Maui.Controls\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    public static class AbsoluteLayoutExtensions\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        public static void Add(this AbsoluteLayout absoluteLayout, IView view, Rect bounds, AbsoluteLayoutFlags flags = AbsoluteLayoutFlags.None)\\r\\n\" +\n    \"        {\\r\\n\" +\n    \"            if (view == null)\\r\\n\" +\n    \"                throw new ArgumentNullException(nameof(view));\\r\\n\" +\n    \"            if (bounds.IsEmpty)\\r\\n\" +\n    \"                throw new ArgumentNullException(nameof(bounds));\\r\\n\" +\n    \"\\r\\n\" +\n    \"            absoluteLayout.Add(view);\\r\\n\" +\n    \"            absoluteLayout.SetLayoutBounds(view, bounds);\\r\\n\" +\n    \"            absoluteLayout.SetLayoutFlags(view, flags);\\r\\n\" +\n    \"        }\\r\\n\" +\n    \"\\r\\n\" +\n    \"        public static void Add(this AbsoluteLayout absoluteLayout, IView view, Point position)\\r\\n\" +\n    \"        {\\r\\n\" +\n    \"            if (view == null)\\r\\n\" +\n    \"                throw new ArgumentNullException(nameof(view));\\r\\n\" +\n    \"            if (position.IsEmpty)\\r\\n\" +\n    \"                throw new ArgumentNullException(nameof(position));\\r\\n\" +\n    \"\\r\\n\" +\n    \"            absoluteLayout.Add(view);\\r\\n\" +\n    \"            absoluteLayout.SetLayoutBounds(view, new Rect(position.X, position.Y, AbsoluteLayout.AutoSize, AbsoluteLayout.AutoSize));\\r\\n\" +\n    \"        }\\r\\n\" +\n    \"    }\\r\\n\" +\n    \"}\";\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizingHeader = \"Proportional positioning and sizing\";\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizing = \"An AbsoluteLayout can position and size children using proportional values. This is achieved by adding children to the AbsoluteLayout and by setting the <span style=\\\"color:red;\\\"><strong>AbsoluteLayout.LayoutBounds</strong></span> attached property on each child to proportional position and/or size values in the range 0-1. Position and size values are made proportional by setting the <span style=\\\"color:red;\\\"><strong>AbsoluteLayout.LayoutFlags</strong></span> attached property on each child.\";\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizing1 = \"The <span style=\\\"color:red;\\\"><strong>AbsoluteLayout.LayoutFlags</strong></span> attached property, of type <span style=\\\"color:red;\\\"><strong>AbsoluteLayoutFlags</strong></span>, allows you to set a flag that indicates that the layout bounds position and size values for a child are proportional to the size of the AbsoluteLayout. When laying out a child, AbsoluteLayout scales the position and size values appropriately, to any device size.\";\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizing2 = \"The <span style=\\\"color:red;\\\"><strong>AbsoluteLayoutFlags</strong></span> enumeration defines the following members:\";\n\n    [ObservableProperty]\n    List<string> proportionalPositioningAndSizingList = new()\n    {\n        \"<span style=\\\"color:red;\\\"><strong>None</strong></span>, indicates that values will be interpreted as absolute. This is the default value of the <span style=\\\"color:red;\\\"><strong>AbsoluteLayout.LayoutFlags</strong></span> attached property.\",\n        \"<span style=\\\"color:red;\\\"><strong>XProportional</strong></span>, indicates that the <span style=\\\"color:red;\\\"><strong>x</strong></span> value will be interpreted as proportional, while treating all other values as absolute.\",\n        \"<span style=\\\"color:red;\\\"><strong>YProportional</strong></span>, indicates that the <span style=\\\"color:red;\\\"><strong>y</strong></span> value will be interpreted as proportional, while treating all other values as absolute.\",\n        \"<span style=\\\"color:red;\\\"><strong>WidthProportional</strong></span>, indicates that the <span style=\\\"color:red;\\\"><strong>width</strong></span> value will be interpreted as proportional, while treating all other values as absolute.\",\n        \"<span style=\\\"color:red;\\\"><strong>HeightProportional</strong></span>, indicates that the <span style=\\\"color:red;\\\"><strong>height</strong></span> value will be interpreted as proportional, while treating all other values as absolute.\",\n        \"<span style=\\\"color:red;\\\"><strong>PositionProportional</strong></span>, indicates that the <span style=\\\"color:red;\\\"><strong>x</strong></span> and <span style=\\\"color:red;\\\"><strong>y</strong></span> values will be interpreted as proportional, while the size values are interpreted as absolute.\",\n        \"<span style=\\\"color:red;\\\"><strong>SizeProportional</strong></span>, indicates that the <span style=\\\"color:red;\\\"><strong>width</strong></span> and <span style=\\\"color:red;\\\"><strong>height</strong></span> values will be interpreted as proportional, while the position values are interpreted as absolute.\",\n        \"<span style=\\\"color:red;\\\"><strong>All</strong></span>, indicates that all values will be interpreted as proportional.\"\n\n    };\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizingTip = \"The <span style=\\\"color:red;\\\"><strong>AbsoluteLayoutFlags</strong></span> enumeration is a <span style=\\\"color:red;\\\"><strong>Flags</strong></span> enumeration, which means that enumeration members can be combined. This is accomplished in XAML with a comma-separated list, and in C# with the bitwise OR operator.\";\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizing3 = \"For example, if you use the <span style=\\\"color:red;\\\"><strong><a href=\\\"https://learn.microsoft.com/en-us/dotnet/api/microsoft.maui.controls.absolutelayout?view=net-maui-8.0\\\" target=\\\"_blank\\\">SizeProportional</a></strong></span> flag and set the width of a child to 0.25 and the height to 0.1, the child will be one-quarter of the width of the <a href=\\\"https://learn.microsoft.com/en-us/dotnet/api/microsoft.maui.controls.absolutelayout?view=net-maui-8.0\\\" target=\\\"_blank\\\">AbsoluteLayout</a> and one-tenth the height. The <span style=\\\"color:red;\\\"><strong>PositionProportional</strong></span> flag is similar. A position of (0,0) puts the child in the upper-left corner, while a position of (1,1) puts the child in the lower-right corner, and a position of (0.5,0.5) centers the child within the <a href=\\\"https://learn.microsoft.com/en-us/dotnet/api/microsoft.maui.controls.absolutelayout?view=net-maui-8.0\\\" target=\\\"_blank\\\">AbsoluteLayout</a>.\\r\\n\";\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizing4 = \"The following XAML shows an AbsoluteLayout whose children are positioned using proportional values:\";\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizingXamlCode =\n    \"<ContentPage xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n    \"             xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n    \"             x:Class=\\\"AbsoluteLayoutDemos.Views.XAML.ProportionalDemoPage\\\"\\r\\n\" +\n    \"             Title=\\\"Proportional demo\\\">\\r\\n\" +\n    \"    <AbsoluteLayout>\\r\\n\" +\n    \"        <BoxView Color=\\\"Blue\\\"\\r\\n\" +\n    \"                 AbsoluteLayout.LayoutBounds=\\\"0.5,0,100,25\\\"\\r\\n\" +\n    \"                 AbsoluteLayout.LayoutFlags=\\\"PositionProportional\\\" />\\r\\n\" +\n    \"        <BoxView Color=\\\"Green\\\"\\r\\n\" +\n    \"                 AbsoluteLayout.LayoutBounds=\\\"0,0.5,25,100\\\"\\r\\n\" +\n    \"                 AbsoluteLayout.LayoutFlags=\\\"PositionProportional\\\" />\\r\\n\" +\n    \"        <BoxView Color=\\\"Red\\\"\\r\\n\" +\n    \"                 AbsoluteLayout.LayoutBounds=\\\"1,0.5,25,100\\\"\\r\\n\" +\n    \"                 AbsoluteLayout.LayoutFlags=\\\"PositionProportional\\\" />\\r\\n\" +\n    \"        <BoxView Color=\\\"Black\\\"\\r\\n\" +\n    \"                 AbsoluteLayout.LayoutBounds=\\\"0.5,1,100,25\\\"\\r\\n\" +\n    \"                 AbsoluteLayout.LayoutFlags=\\\"PositionProportional\\\" />\\r\\n\" +\n    \"        <Label Text=\\\"Centered text\\\"\\r\\n\" +\n    \"               AbsoluteLayout.LayoutBounds=\\\"0.5,0.5,110,25\\\"\\r\\n\" +\n    \"               AbsoluteLayout.LayoutFlags=\\\"PositionProportional\\\" />\\r\\n\" +\n    \"    </AbsoluteLayout>\\r\\n\" +\n    \"</ContentPage>\";\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizing5 = \"In this example, each child is positioned using proportional values but sized using absolute values. This is accomplished by setting the <span style=\\\"color:red;\\\"><strong>AbsoluteLayout.LayoutFlags</strong></span> attached property of each child to <span style=\\\"color:red;\\\"><strong>PositionProportional</strong></span>. The first two values that are specified in the <span style=\\\"color:red;\\\"><strong>AbsoluteLayout.LayoutBounds</strong></span> attached property, for each child, define the position using proportional values. The size of each child is defined with the third and forth absolute values, using device-independent units.\";\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizing6 = \"The equivalent C# code is shown below:\";\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizingCSharpCode =\n        \"public class ProportionalDemoPage : ContentPage\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    public ProportionalDemoPage()\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        BoxView blue = new BoxView { Color = Colors.Blue };\\r\\n\" +\n        \"        AbsoluteLayout.SetLayoutBounds(blue, new Rect(0.5, 0, 100, 25));\\r\\n\" +\n        \"        AbsoluteLayout.SetLayoutFlags(blue, AbsoluteLayoutFlags.PositionProportional);\\r\\n\" +\n        \"\\r\\n\" +\n        \"        BoxView green = new BoxView { Color = Colors.Green };\\r\\n\" +\n        \"        AbsoluteLayout.SetLayoutBounds(green, new Rect(0, 0.5, 25, 100));\\r\\n\" +\n        \"        AbsoluteLayout.SetLayoutFlags(green, AbsoluteLayoutFlags.PositionProportional);\\r\\n\" +\n        \"\\r\\n\" +\n        \"        BoxView red = new BoxView { Color = Colors.Red };\\r\\n\" +\n        \"        AbsoluteLayout.SetLayoutBounds(red, new Rect(1, 0.5, 25, 100));\\r\\n\" +\n        \"        AbsoluteLayout.SetLayoutFlags(red, AbsoluteLayoutFlags.PositionProportional);\\r\\n\" +\n        \"\\r\\n\" +\n        \"        BoxView black = new BoxView { Color = Colors.Black };\\r\\n\" +\n        \"        AbsoluteLayout.SetLayoutBounds(black, new Rect(0.5, 1, 100, 25));\\r\\n\" +\n        \"        AbsoluteLayout.SetLayoutFlags(black, AbsoluteLayoutFlags.PositionProportional);\\r\\n\" +\n        \"\\r\\n\" +\n        \"        Label label = new Label { Text = \\\"Centered text\\\" };\\r\\n\" +\n        \"        AbsoluteLayout.SetLayoutBounds(label, new Rect(0.5, 0.5, 110, 25));\\r\\n\" +\n        \"        AbsoluteLayout.SetLayoutFlags(label, AbsoluteLayoutFlags.PositionProportional);\\r\\n\" +\n        \"\\r\\n\" +\n        \"        Title = \\\"Proportional demo\\\";\\r\\n\" +\n        \"        Content = new AbsoluteLayout\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            Children = { blue, green, red, black, label }\\r\\n\" +\n        \"        };\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizing7 = \"In this example, the position and size of each child is set with the <span style=\\\"color:red;\\\"><strong>AbsoluteLayout.SetLayoutBounds</strong></span> method. The first argument to the method is the child, and the second is a <span style=\\\"color:red;\\\"><strong>Rect</strong></span> object. The position of each child is set with proportional values, while the size of each child is set with absolute values, using device-independent units.\";\n\n    [ObservableProperty]\n    string proportionalPositioningAndSizingNote = \"An <span style=\\\"color:red;\\\"><strong>AbsoluteLayout</strong></span> that uses proportional values can position and size children so that they don't fit within the bounds of the layout by using values outside the 0-1 range.\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Layouts/Grid/DoubleToIntConverter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class DoubleToIntConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)\n    {\n        double doubleValue = (double)value * 250;\n        int intValue = (int)doubleValue;\n        return intValue;\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Layouts/Grid/GridControlInfo.cs",
    "content": "namespace MAUIsland.Core;\npublic class GridControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(Grid);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_glance_default_12_regular\n    };\n    public string ControlDetail => \"Grid is a layout that organizes its children into rows and columns, which can have proportional or absolute sizes. By default, a Grid contains one row and one column. In addition, a Grid can be used as a parent layout that contains other child layouts.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/layouts/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Stable;\n    public GalleryCardType CardType => GalleryCardType.Layout;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"layout-grid\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Layouts/Grid/GridPageViewModel.cs",
    "content": "using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\npublic partial class GridPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public GridPageViewModel(IAppNavigator appNavigator,\n                             IGitHubService gitHubService,\n                             DiscordRpcClient discordRpcClient,\n                             IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                : base(appNavigator,\n                                        gitHubService,\n                                        discordRpcClient,\n                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string gridWithOneRowOneColumnXamlCode =\n    \"<Grid Margin=\\\"20,35,20,20\\\">\\r\\n\" +\n    \"    <Label Text=\\\"By default, a Grid contains one row and one column.\\\" />\\r\\n\" +\n    \"</Grid>\";\n\n    [ObservableProperty]\n    string gridWithThreeRowsTwoColumsXamlCode =\n        \"<Grid>\\r\\n\" +\n        \"    <Grid.RowDefinitions>\\r\\n\" +\n        \"        <RowDefinition Height=\\\"2*\\\" />\\r\\n\" +\n        \"        <RowDefinition Height=\\\"*\\\" />\\r\\n\" +\n        \"        <RowDefinition Height=\\\"100\\\" />\\r\\n\" +\n        \"    </Grid.RowDefinitions>\\r\\n\" +\n        \"    <Grid.ColumnDefinitions>\\r\\n\" +\n        \"        <ColumnDefinition Width=\\\"*\\\" />\\r\\n\" +\n        \"        <ColumnDefinition Width=\\\"*\\\" />\\r\\n\" +\n        \"    </Grid.ColumnDefinitions>\\r\\n\" +\n        \"</Grid>\";\n\n    [ObservableProperty]\n    string gridCellsXamlCode =\n        \"<Grid>\\r\\n\" +\n        \"    <Grid.RowDefinitions>\\r\\n\" +\n        \"        <RowDefinition Height=\\\"2*\\\" />\\r\\n\" +\n        \"        <RowDefinition />\\r\\n\" +\n        \"        <RowDefinition Height=\\\"300\\\" />\\r\\n\" +\n        \"    </Grid.RowDefinitions>\\r\\n\" +\n        \"    <Grid.ColumnDefinitions>\\r\\n\" +\n        \"        <ColumnDefinition />\\r\\n\" +\n        \"        <ColumnDefinition />\\r\\n\" +\n        \"    </Grid.ColumnDefinitions>\\r\\n\" +\n        \"    <!-- Rest of your XAML code here -->\\r\\n\" +\n        \"</Grid>\";\n\n    [ObservableProperty]\n    string gridCellsCSharpCode = \"public class BasicGridPage : ContentPage\\r\\n{\\r\\n    public BasicGridPage()\\r\\n    {\\r\\n        Grid grid = new Grid\\r\\n        {\\r\\n            RowDefinitions =\\r\\n            {\\r\\n                new RowDefinition { Height = new GridLength(2, GridUnitType.Star) },\\r\\n                new RowDefinition(),\\r\\n                new RowDefinition { Height = new GridLength(100) }\\r\\n            },\\r\\n            ColumnDefinitions =\\r\\n            {\\r\\n                new ColumnDefinition(),\\r\\n                new ColumnDefinition()\\r\\n            }\\r\\n        };\\r\\n\\r\\n        // Row 0\\r\\n        // The BoxView and Label are in row 0 and column 0, and so only need to be added to the\\r\\n        // Grid to obtain the default row and column settings.\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.Green\\r\\n        });\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Row 0, Column 0\\\",\\r\\n            HorizontalOptions = LayoutOptions.Center,\\r\\n            VerticalOptions = LayoutOptions.Center\\r\\n        });\\r\\n\\r\\n        // This BoxView and Label are in row 0 and column 1, which are specified as arguments\\r\\n        // to the Add method.\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.Blue\\r\\n        }, 1, 0);\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Row 0, Column 1\\\",\\r\\n            HorizontalOptions = LayoutOptions.Center,\\r\\n            VerticalOptions = LayoutOptions.Center\\r\\n        }, 1, 0);\\r\\n\\r\\n        // Row 1\\r\\n        // This BoxView and Label are in row 1 and column 0, which are specified as arguments\\r\\n        // to the Add method overload.\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.Teal\\r\\n        }, 0, 1);\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Row 1, Column 0\\\",\\r\\n            HorizontalOptions = LayoutOptions.Center,\\r\\n            VerticalOptions = LayoutOptions.Center\\r\\n        }, 0, 1);\\r\\n\\r\\n        // This BoxView and Label are in row 1 and column 1, which are specified as arguments\\r\\n        // to the Add method overload.\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.Purple\\r\\n        }, 1, 1);\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Row1, Column 1\\\",\\r\\n            HorizontalOptions = LayoutOptions.Center,\\r\\n            VerticalOptions = LayoutOptions.Center\\r\\n        }, 1, 1);\\r\\n\\r\\n        // Row 2\\r\\n        // Alternatively, the BoxView and Label can be positioned in cells with the Grid.SetRow\\r\\n        // and Grid.SetColumn methods.\\r\\n        BoxView boxView = new BoxView { Color = Colors.Red };\\r\\n        Grid.SetRow(boxView, 2);\\r\\n        Grid.SetColumnSpan(boxView, 2);\\r\\n        Label label = new Label\\r\\n        {\\r\\n            Text = \\\"Row 2, Column 0 and 1\\\",\\r\\n            HorizontalOptions = LayoutOptions.Center,\\r\\n            VerticalOptions = LayoutOptions.Center\\r\\n        };\\r\\n        Grid.SetRow(label, 2);\\r\\n        Grid.SetColumnSpan(label, 2);\\r\\n\\r\\n        grid.Add(boxView);\\r\\n        grid.Add(label);\\r\\n\\r\\n        Title = \\\"Basic Grid demo\\\";\\r\\n        Content = grid;\\r\\n    }\\r\\n}\";\n\n\n    [ObservableProperty]\n    string gridWithFiveRowsFourColumnsXamlCode =\n        \"<Grid RowDefinitions=\\\"1*, Auto, 25, 14, 20\\\"\\r\\n\" +\n        \"      ColumnDefinitions=\\\"*, 2*, Auto, 300\\\">\\r\\n\" +\n        \"    ...\\r\\n\" +\n        \"</Grid>\";\n\n    [ObservableProperty]\n    string gridSpaceBetweenRowColumnXamlCode =\n        \"<Grid ColumnSpacing=\\\"8\\\" RowSpacing=\\\"8\\\">\\r\\n\" +\n        \"    <Grid.RowDefinitions>\\r\\n\" +\n        \"        <RowDefinition Height=\\\"2*\\\" />\\r\\n\" +\n        \"        <RowDefinition />\\r\\n\" +\n        \"        <RowDefinition Height=\\\"300\\\" />\\r\\n\" +\n        \"    </Grid.RowDefinitions>\\r\\n\" +\n        \"    <Grid.ColumnDefinitions>\\r\\n\" +\n        \"        <ColumnDefinition />\\r\\n\" +\n        \"        <ColumnDefinition />\\r\\n\" +\n        \"    </Grid.ColumnDefinitions>\\r\\n\" +\n        \"    <!-- Rest of your XAML code here -->\\r\\n\" +\n        \"</Grid>\";\n\n    [ObservableProperty]\n    string gridSpaceBetweenRowColumnCSharpCode = \"public class GridSpacingPage : ContentPage\\r\\n{\\r\\n    public GridSpacingPage()\\r\\n    {\\r\\n        Grid grid = new Grid\\r\\n        {\\r\\n            RowSpacing = 6,\\r\\n            ColumnSpacing = 6,\\r\\n            ...\\r\\n        };\\r\\n        ...\\r\\n\\r\\n        Content = grid;\\r\\n    }\\r\\n}\";\n\n\n    [ObservableProperty]\n    string gridWithNineCellsXamlCode =\n    \"<Grid>\\r\\n\" +\n    \"    <Grid.RowDefinitions>\\r\\n\" +\n    \"        <RowDefinition />\\r\\n\" +\n    \"        <RowDefinition />\\r\\n\" +\n    \"        <RowDefinition />\\r\\n\" +\n    \"    </Grid.RowDefinitions>\\r\\n\" +\n    \"    <Grid.ColumnDefinitions>\\r\\n\" +\n    \"        <ColumnDefinition />\\r\\n\" +\n    \"        <ColumnDefinition />\\r\\n\" +\n    \"        <ColumnDefinition />\\r\\n\" +\n    \"    </Grid.ColumnDefinitions>\\r\\n\" +\n    \"    <!-- Rest of your XAML code here -->\\r\\n\" +\n    \"</Grid>\";\n\n    [ObservableProperty]\n    string gridWithNineCellsCSharpCode = \"public class GridAlignmentPage : ContentPage\\r\\n{\\r\\n    public GridAlignmentPage()\\r\\n    {\\r\\n        Grid grid = new Grid\\r\\n        {\\r\\n            RowDefinitions =\\r\\n            {\\r\\n                new RowDefinition(),\\r\\n                new RowDefinition(),\\r\\n                new RowDefinition()\\r\\n            },\\r\\n            ColumnDefinitions =\\r\\n            {\\r\\n                new ColumnDefinition(),\\r\\n                new ColumnDefinition(),\\r\\n                new ColumnDefinition()\\r\\n            }\\r\\n        };\\r\\n\\r\\n        // Row 0\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.AliceBlue\\r\\n        });\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Upper left\\\",\\r\\n            HorizontalOptions = LayoutOptions.Start,\\r\\n            VerticalOptions = LayoutOptions.Start\\r\\n        });\\r\\n\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.LightSkyBlue\\r\\n        }, 1, 0);\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Upper center\\\",\\r\\n            HorizontalOptions = LayoutOptions.Center,\\r\\n            VerticalOptions = LayoutOptions.Start\\r\\n        }, 1, 0);\\r\\n\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.CadetBlue\\r\\n        }, 2, 0);\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Upper right\\\",\\r\\n            HorizontalOptions = LayoutOptions.End,\\r\\n            VerticalOptions = LayoutOptions.Start\\r\\n        }, 2, 0);\\r\\n\\r\\n        // Row 1\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.CornflowerBlue\\r\\n        }, 0, 1);\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Center left\\\",\\r\\n            HorizontalOptions = LayoutOptions.Start,\\r\\n            VerticalOptions = LayoutOptions.Center\\r\\n        }, 0, 1);\\r\\n\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.DodgerBlue\\r\\n        }, 1, 1);\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Center center\\\",\\r\\n            HorizontalOptions = LayoutOptions.Center,\\r\\n            VerticalOptions = LayoutOptions.Center\\r\\n        }, 1, 1);\\r\\n\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.DarkSlateBlue\\r\\n        }, 2, 1);\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Center right\\\",\\r\\n            HorizontalOptions = LayoutOptions.End,\\r\\n            VerticalOptions = LayoutOptions.Center\\r\\n        }, 2, 1);\\r\\n\\r\\n        // Row 2\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.SteelBlue\\r\\n        }, 0, 2);\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Lower left\\\",\\r\\n            HorizontalOptions = LayoutOptions.Start,\\r\\n            VerticalOptions = LayoutOptions.End\\r\\n        }, 0, 2);\\r\\n\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.LightBlue\\r\\n        }, 1, 2);\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Lower center\\\",\\r\\n            HorizontalOptions = LayoutOptions.Center,\\r\\n            VerticalOptions = LayoutOptions.End\\r\\n        }, 1, 2);\\r\\n\\r\\n        grid.Add(new BoxView\\r\\n        {\\r\\n            Color = Colors.BlueViolet\\r\\n        }, 2, 2);\\r\\n        grid.Add(new Label\\r\\n        {\\r\\n            Text = \\\"Lower right\\\",\\r\\n            HorizontalOptions = LayoutOptions.End,\\r\\n            VerticalOptions = LayoutOptions.End\\r\\n        }, 2, 2);\\r\\n\\r\\n        Title = \\\"Grid alignment demo\\\";\\r\\n        Content = grid;\\r\\n    }\\r\\n}\";\n\n    [ObservableProperty]\n    string gridObjectXamlCode =\n    \"<Grid>\\r\\n\" +\n    \"    <Grid.RowDefinitions>\\r\\n\" +\n    \"        <RowDefinition Height=\\\"500\\\" />\\r\\n\" +\n    \"        <RowDefinition Height=\\\"Auto\\\" />\\r\\n\" +\n    \"    </Grid.RowDefinitions>\\r\\n\" +\n    \"    <!-- Rest of your XAML code here -->\\r\\n\" +\n    \"</Grid>\";\n\n    [ObservableProperty]\n    string gridObjectCSharpCode = \"public class ColorSlidersGridPage : ContentPage\\r\\n{\\r\\n    BoxView boxView;\\r\\n    Slider redSlider;\\r\\n    Slider greenSlider;\\r\\n    Slider blueSlider;\\r\\n\\r\\n    public ColorSlidersGridPage()\\r\\n    {\\r\\n        // Create an implicit style for the Labels\\r\\n        Style labelStyle = new Style(typeof(Label))\\r\\n        {\\r\\n            Setters =\\r\\n            {\\r\\n                new Setter { Property = Label.HorizontalTextAlignmentProperty, Value = TextAlignment.Center }\\r\\n            }\\r\\n        };\\r\\n        Resources.Add(labelStyle);\\r\\n\\r\\n        // Root page layout\\r\\n        Grid rootGrid = new Grid\\r\\n        {\\r\\n            RowDefinitions =\\r\\n            {\\r\\n                new RowDefinition { HeightRequest = 500 },\\r\\n                new RowDefinition()\\r\\n            }\\r\\n        };\\r\\n\\r\\n        boxView = new BoxView { Color = Colors.Black };\\r\\n        rootGrid.Add(boxView);\\r\\n\\r\\n        // Child page layout\\r\\n        Grid childGrid = new Grid\\r\\n        {\\r\\n            Margin = new Thickness(20),\\r\\n            RowDefinitions =\\r\\n            {\\r\\n                new RowDefinition(),\\r\\n                new RowDefinition(),\\r\\n                new RowDefinition(),\\r\\n                new RowDefinition(),\\r\\n                new RowDefinition(),\\r\\n                new RowDefinition()\\r\\n            }\\r\\n        };\\r\\n\\r\\n        DoubleToIntConverter doubleToInt = new DoubleToIntConverter();\\r\\n\\r\\n        redSlider = new Slider();\\r\\n        redSlider.ValueChanged += OnSliderValueChanged;\\r\\n        childGrid.Add(redSlider);\\r\\n\\r\\n        Label redLabel = new Label();\\r\\n        redLabel.SetBinding(Label.TextProperty, new Binding(\\\"Value\\\", converter: doubleToInt, converterParameter: \\\"255\\\", stringFormat: \\\"Red = {0}\\\", source: redSlider));\\r\\n        Grid.SetRow(redLabel, 1);\\r\\n        childGrid.Add(redLabel);\\r\\n\\r\\n        greenSlider = new Slider();\\r\\n        greenSlider.ValueChanged += OnSliderValueChanged;\\r\\n        Grid.SetRow(greenSlider, 2);\\r\\n        childGrid.Add(greenSlider);\\r\\n\\r\\n        Label greenLabel = new Label();\\r\\n        greenLabel.SetBinding(Label.TextProperty, new Binding(\\\"Value\\\", converter: doubleToInt, converterParameter: \\\"255\\\", stringFormat: \\\"Green = {0}\\\", source: greenSlider));\\r\\n        Grid.SetRow(greenLabel, 3);\\r\\n        childGrid.Add(greenLabel);\\r\\n\\r\\n        blueSlider = new Slider();\\r\\n        blueSlider.ValueChanged += OnSliderValueChanged;\\r\\n        Grid.SetRow(blueSlider, 4);\\r\\n        childGrid.Add(blueSlider);\\r\\n\\r\\n        Label blueLabel = new Label();\\r\\n        blueLabel.SetBinding(Label.TextProperty, new Binding(\\\"Value\\\", converter: doubleToInt, converterParameter: \\\"255\\\", stringFormat: \\\"Blue = {0}\\\", source: blueSlider));\\r\\n        Grid.SetRow(blueLabel, 5);\\r\\n        childGrid.Add(blueLabel);\\r\\n\\r\\n        // Place the child Grid in the root Grid\\r\\n        rootGrid.Add(childGrid, 0, 1);\\r\\n\\r\\n        Title = \\\"Nested Grids demo\\\";\\r\\n        Content = rootGrid;\\r\\n    }\\r\\n\\r\\n    void OnSliderValueChanged(object sender, ValueChangedEventArgs e)\\r\\n    {\\r\\n        boxView.Color = new Color(redSlider.Value, greenSlider.Value, blueSlider.Value);\\r\\n    }\\r\\n}\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Layouts/HorizontalStackLayout/HorizontalStackLayoutControlInfo.cs",
    "content": "namespace MAUIsland.Core;\nclass HorizontalStackLayoutControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(HorizontalStackLayout);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_align_space_evenly_horizontal_20_regular\n    };\n    public string ControlDetail => \"HorizontalStackLayout organizes child views in a one-dimensional horizontal stack, and is a more performant alternative to a StackLayout. In addition, a HorizontalStackLayout can be used as a parent layout that contains other child layouts.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/layouts/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Stable;\n    public GalleryCardType CardType => GalleryCardType.Layout;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"layout-stack\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Layouts/HorizontalStackLayout/HorizontalStackLayoutPageViewModel.cs",
    "content": "using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\npublic partial class HorizontalStackLayoutPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public HorizontalStackLayoutPageViewModel(IAppNavigator appNavigator,\n                                              IGitHubService gitHubService,\n                                              DiscordRpcClient discordRpcClient,\n                                              IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                                : base(appNavigator,\n                                                       gitHubService,\n                                                       discordRpcClient,\n                                                       gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string horizontalStackLayoutRectangleLabelXamlCode =\n    \"<HorizontalStackLayout Margin=\\\"20\\\">\\r\\n\" +\n    \"    <Rectangle\\r\\n\" +\n    \"        Fill=\\\"Red\\\"\\r\\n\" +\n    \"        HeightRequest=\\\"30\\\"\\r\\n\" +\n    \"        WidthRequest=\\\"30\\\" />\\r\\n\" +\n    \"    <Label\\r\\n\" +\n    \"        FontSize=\\\"18\\\"\\r\\n\" +\n    \"        Text=\\\"Red\\\"\\r\\n\" +\n    \"        TextColor=\\\"Blue\\\" />\\r\\n\" +\n    \"</HorizontalStackLayout>\";\n\n    [ObservableProperty]\n    string spaceBetweenChildViewsXamlCode =\n        \"<HorizontalStackLayout Margin=\\\"20\\\" Spacing=\\\"10\\\">\\r\\n\" +\n        \"    <Rectangle\\r\\n\" +\n        \"        Fill=\\\"Red\\\"\\r\\n\" +\n        \"        HeightRequest=\\\"30\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"30\\\" />\\r\\n\" +\n        \"    <Label\\r\\n\" +\n        \"        FontSize=\\\"18\\\"\\r\\n\" +\n        \"        Text=\\\"Red\\\"\\r\\n\" +\n        \"        TextColor=\\\"Blue\\\" />\\r\\n\" +\n        \"</HorizontalStackLayout>\";\n\n    [ObservableProperty]\n    string positionAndSizeChildViewsXamlCode =\n        \"<HorizontalStackLayout Margin=\\\"20\\\" HeightRequest=\\\"200\\\">\\r\\n\" +\n        \"    <Label\\r\\n\" +\n        \"        BackgroundColor=\\\"Gray\\\"\\r\\n\" +\n        \"        Text=\\\"Start\\\"\\r\\n\" +\n        \"        TextColor=\\\"Blue\\\"\\r\\n\" +\n        \"        VerticalOptions=\\\"Start\\\" />\\r\\n\" +\n        \"    <Label\\r\\n\" +\n        \"        BackgroundColor=\\\"Gray\\\"\\r\\n\" +\n        \"        Text=\\\"Center\\\"\\r\\n\" +\n        \"        TextColor=\\\"Blue\\\"\\r\\n\" +\n        \"        VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"    <Label\\r\\n\" +\n        \"        BackgroundColor=\\\"Gray\\\"\\r\\n\" +\n        \"        Text=\\\"End\\\"\\r\\n\" +\n        \"        TextColor=\\\"Blue\\\"\\r\\n\" +\n        \"        VerticalOptions=\\\"End\\\" />\\r\\n\" +\n        \"    <Label\\r\\n\" +\n        \"        BackgroundColor=\\\"Gray\\\"\\r\\n\" +\n        \"        Text=\\\"Fill\\\"\\r\\n\" +\n        \"        TextColor=\\\"Blue\\\"\\r\\n\" +\n        \"        VerticalOptions=\\\"Fill\\\" />\\r\\n\" +\n        \"</HorizontalStackLayout>\";\n\n    [ObservableProperty]\n    string nestHorizontalStackLayoutObjectXamlCode =\n        \"<HorizontalStackLayout Margin=\\\"20\\\" Spacing=\\\"6\\\">\\r\\n\" +\n        \"    <Label Text=\\\"Primary colors:\\\" TextColor=\\\"Blue\\\" />\\r\\n\" +\n        \"    <VerticalStackLayout Spacing=\\\"6\\\">\\r\\n\" +\n        \"        <Rectangle\\r\\n\" +\n        \"            Fill=\\\"Red\\\"\\r\\n\" +\n        \"            HeightRequest=\\\"30\\\"\\r\\n\" +\n        \"            WidthRequest=\\\"30\\\" />\\r\\n\" +\n        \"        <Rectangle\\r\\n\" +\n        \"            Fill=\\\"Yellow\\\"\\r\\n\" +\n        \"            HeightRequest=\\\"30\\\"\\r\\n\" +\n        \"            WidthRequest=\\\"30\\\" />\\r\\n\" +\n        \"        <Rectangle\\r\\n\" +\n        \"            Fill=\\\"Blue\\\"\\r\\n\" +\n        \"            HeightRequest=\\\"30\\\"\\r\\n\" +\n        \"            WidthRequest=\\\"30\\\" />\\r\\n\" +\n        \"    </VerticalStackLayout>\\r\\n\" +\n        \"    <Label Text=\\\"Secondary colors:\\\" TextColor=\\\"Blue\\\" />\\r\\n\" +\n        \"    <VerticalStackLayout Spacing=\\\"6\\\">\\r\\n\" +\n        \"        <Rectangle\\r\\n\" +\n        \"            Fill=\\\"Green\\\"\\r\\n\" +\n        \"            HeightRequest=\\\"30\\\"\\r\\n\" +\n        \"            WidthRequest=\\\"30\\\" />\\r\\n\" +\n        \"        <Rectangle\\r\\n\" +\n        \"            Fill=\\\"Orange\\\"\\r\\n\" +\n        \"            HeightRequest=\\\"30\\\"\\r\\n\" +\n        \"            WidthRequest=\\\"30\\\" />\\r\\n\" +\n        \"        <Rectangle\\r\\n\" +\n        \"            Fill=\\\"Purple\\\"\\r\\n\" +\n        \"            HeightRequest=\\\"30\\\"\\r\\n\" +\n        \"            WidthRequest=\\\"30\\\" />\\r\\n\" +\n        \"    </VerticalStackLayout>\\r\\n\" +\n        \"</HorizontalStackLayout>\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Layouts/StackLayout/StackLayoutControlInfo.cs",
    "content": "namespace MAUIsland.Core;\nclass StackLayoutControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(StackLayout);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_phone_vertical_scroll_20_regular\n    };\n    public string ControlDetail => \"StackLayout organizes child views in a one-dimensional stack, either horizontally or vertically. By default, a StackLayout is oriented vertically. In addition, a StackLayout can be used as a parent layout that contains other child layouts.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/layouts/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Deprecated;\n    public GalleryCardType CardType => GalleryCardType.Layout;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"layout-stack\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Layouts/StackLayout/StackLayoutPageViewModel.cs",
    "content": "using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\npublic partial class StackLayoutPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public StackLayoutPageViewModel(IAppNavigator appNavigator,\n                                   IGitHubService gitHubService,\n                                   DiscordRpcClient discordRpcClient,\n                                   IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                    : base(appNavigator,\n                                            gitHubService,\n                                            discordRpcClient,\n                                            gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string verticalOrientationXamlCode = \"<StackLayout Margin=\\\"20\\\">\\n\" +\n                                      \"    <Label Text=\\\"Primary colors\\\" />\\n\" +\n                                      \"    <BoxView HeightRequest=\\\"40\\\" Color=\\\"Red\\\" />\\n\" +\n                                      \"    <BoxView HeightRequest=\\\"40\\\" Color=\\\"Yellow\\\" />\\n\" +\n                                      \"    <BoxView HeightRequest=\\\"40\\\" Color=\\\"Blue\\\" />\\n\" +\n                                      \"    <Label Text=\\\"Secondary colors\\\" />\\n\" +\n                                      \"    <BoxView HeightRequest=\\\"40\\\" Color=\\\"Green\\\" />\\n\" +\n                                      \"    <BoxView HeightRequest=\\\"40\\\" Color=\\\"Orange\\\" />\\n\" +\n                                      \"    <BoxView HeightRequest=\\\"40\\\" Color=\\\"Purple\\\" />\\n\" +\n                                      \"</StackLayout>\";\n\n    [ObservableProperty]\n    string verticalOrientationCSharpCode = \"public class VerticalStackLayoutPage : ContentPage\\n\" +\n                                        \"{\\n\" +\n                                        \"    public VerticalStackLayoutPage()\\n\" +\n                                        \"    {\\n\" +\n                                        \"        Title = \\\"Vertical StackLayout demo\\\";\\n\" +\n                                        \"\\n\" +\n                                        \"        StackLayout stackLayout = new StackLayout { Margin = new Thickness(20) };\\n\" +\n                                        \"\\n\" +\n                                        \"        stackLayout.Add(new Label { Text = \\\"Primary colors\\\" });\\n\" +\n                                        \"        stackLayout.Add(new BoxView { Color = Colors.Red, HeightRequest = 40 });\\n\" +\n                                        \"        stackLayout.Add(new BoxView { Color = Colors.Yellow, HeightRequest = 40 });\\n\" +\n                                        \"        stackLayout.Add(new BoxView { Color = Colors.Blue, HeightRequest = 40 });\\n\" +\n                                        \"        stackLayout.Add(new Label { Text = \\\"Secondary colors\\\" });\\n\" +\n                                        \"        stackLayout.Add(new BoxView { Color = Colors.Green, HeightRequest = 40 });\\n\" +\n                                        \"        stackLayout.Add(new BoxView { Color = Colors.Orange, HeightRequest = 40 });\\n\" +\n                                        \"        stackLayout.Add(new BoxView { Color = Colors.Purple, HeightRequest = 40 });\\n\" +\n                                        \"\\n\" +\n                                        \"        Content = stackLayout;\\n\" +\n                                        \"    }\\n\" +\n                                        \"}\";\n\n\n    [ObservableProperty]\n    string horizontalOrientationXamlCode = \"<StackLayout Margin=\\\"20\\\"\\n\" +\n                                        \"            HorizontalOptions=\\\"Center\\\"\\n\" +\n                                        \"            Orientation=\\\"Horizontal\\\">\\n\" +\n                                        \"    <BoxView WidthRequest=\\\"40\\\" Color=\\\"Red\\\" />\\n\" +\n                                        \"    <BoxView WidthRequest=\\\"40\\\" Color=\\\"Yellow\\\" />\\n\" +\n                                        \"    <BoxView WidthRequest=\\\"40\\\" Color=\\\"Blue\\\" />\\n\" +\n                                        \"    <BoxView WidthRequest=\\\"40\\\" Color=\\\"Green\\\" />\\n\" +\n                                        \"    <BoxView WidthRequest=\\\"40\\\" Color=\\\"Orange\\\" />\\n\" +\n                                        \"    <BoxView WidthRequest=\\\"40\\\" Color=\\\"Purple\\\" />\\n\" +\n                                        \"</StackLayout>\";\n\n\n    [ObservableProperty]\n    string horizontalOrientationCSharpCode = \"public class HorizontalStackLayoutPage : ContentPage\\n\" +\n                                          \"{\\n\" +\n                                          \"    public HorizontalStackLayoutPage()\\n\" +\n                                          \"    {\\n\" +\n                                          \"        Title = \\\"Horizontal StackLayout demo\\\";\\n\" +\n                                          \"\\n\" +\n                                          \"        StackLayout stackLayout = new StackLayout\\n\" +\n                                          \"        {\\n\" +\n                                          \"            Margin = new Thickness(20),\\n\" +\n                                          \"            Orientation = StackOrientation.Horizontal,\\n\" +\n                                          \"            HorizontalOptions = LayoutOptions.Center\\n\" +\n                                          \"        };\\n\" +\n                                          \"\\n\" +\n                                          \"        stackLayout.Add(new BoxView { Color = Colors.Red, HeightRequest = 120, WidthRequest = 120 });\\n\" +\n                                          \"        stackLayout.Add(new BoxView { Color = Colors.Yellow, HeightRequest = 120, WidthRequest = 120 });\\n\" +\n                                          \"        stackLayout.Add(new BoxView { Color = Colors.Blue, HeightRequest = 120, WidthRequest = 120 });\\n\" +\n                                          \"        stackLayout.Add(new BoxView { Color = Colors.Green, HeightRequest = 120, WidthRequest = 120 });\\n\" +\n                                          \"        stackLayout.Add(new BoxView { Color = Colors.Orange, HeightRequest = 120, WidthRequest = 120 });\\n\" +\n                                          \"        stackLayout.Add(new BoxView { Color = Colors.Purple, HeightRequest = 120, WidthRequest = 120 });\\n\" +\n                                          \"\\n\" +\n                                          \"        Content = stackLayout;\\n\" +\n                                          \"    }\\n\" +\n                                          \"}\";\n\n\n    [ObservableProperty]\n    string spaceBetweenChildViewsXamlCode = \"<StackLayout Margin=\\\"20\\\" Spacing=\\\"8\\\">\\n\" +\n                                            \"    <Label Text=\\\"Primary colors\\\" />\\n\" +\n                                            \"    <BoxView HeightRequest=\\\"40\\\" Color=\\\"Red\\\" />\\n\" +\n                                            \"    <BoxView HeightRequest=\\\"40\\\" Color=\\\"Yellow\\\" />\\n\" +\n                                            \"    <BoxView HeightRequest=\\\"40\\\" Color=\\\"Blue\\\" />\\n\" +\n                                            \"    <Label Text=\\\"Secondary colors\\\" />\\n\" +\n                                            \"    <BoxView HeightRequest=\\\"40\\\" Color=\\\"Green\\\" />\\n\" +\n                                            \"    <BoxView HeightRequest=\\\"40\\\" Color=\\\"Orange\\\" />\\n\" +\n                                            \"    <BoxView HeightRequest=\\\"40\\\" Color=\\\"Purple\\\" />\\n\" +\n                                            \"</StackLayout>\";\n\n    [ObservableProperty]\n    string spaceBetweenChildViewsCSharpCode = \"public class StackLayoutSpacingPage : ContentPage\\r\\n\" +\n                                          \"{\\r\\n\" +\n                                          \"    public StackLayoutSpacingPage()\\r\\n\" +\n                                          \"    {\\r\\n\" +\n                                          \"        Title = \\\"StackLayout Spacing demo\\\";\\r\\n\" +\n                                          \"\\r\\n\" +\n                                          \"        StackLayout stackLayout = new StackLayout\\r\\n\" +\n                                          \"        {\\r\\n\" +\n                                          \"            Margin = new Thickness(20),\\r\\n\" +\n                                          \"            Spacing = 8\\r\\n\" +\n                                          \"        };\\r\\n\" +\n                                          \"\\r\\n\" +\n                                          \"        stackLayout.Add(new Label { Text = \\\"Primary colors\\\" });\\r\\n\" +\n                                          \"        stackLayout.Add(new BoxView { Color = Colors.Red, HeightRequest = 40 });\\r\\n\" +\n                                          \"        stackLayout.Add(new BoxView { Color = Colors.Yellow, HeightRequest = 40 });\\r\\n\" +\n                                          \"        stackLayout.Add(new BoxView { Color = Colors.Blue, HeightRequest = 40 });\\r\\n\" +\n                                          \"        stackLayout.Add(new Label { Text = \\\"Secondary colors\\\" });\\r\\n\" +\n                                          \"        stackLayout.Add(new BoxView { Color = Colors.Green, HeightRequest = 40 });\\r\\n\" +\n                                          \"        stackLayout.Add(new BoxView { Color = Colors.Orange, HeightRequest = 40 });\\r\\n\" +\n                                          \"        stackLayout.Add(new BoxView { Color = Colors.Purple, HeightRequest = 40 });\\r\\n\" +\n                                          \"\\r\\n\" +\n                                          \"        Content = stackLayout;\\r\\n\" +\n                                          \"    }\\r\\n\" +\n                                          \"}\";\n\n    [ObservableProperty]\n    string positionAndSizeOfChildViewsXamlCode = \"<StackLayout Margin=\\\"20\\\"\\r\\n\" +\n                                             \"             Spacing=\\\"6\\\">\\r\\n\" +\n                                             \"    <Label Text=\\\"Start\\\"\\r\\n\" +\n                                             \"           BackgroundColor=\\\"Gray\\\"\\r\\n\" +\n                                             \"           HorizontalOptions=\\\"Start\\\" />\\r\\n\" +\n                                             \"    <Label Text=\\\"Center\\\"\\r\\n\" +\n                                             \"           BackgroundColor=\\\"Gray\\\"\\r\\n\" +\n                                             \"           HorizontalOptions=\\\"Center\\\" />\\r\\n\" +\n                                             \"    <Label Text=\\\"End\\\"\\r\\n\" +\n                                             \"           BackgroundColor=\\\"Gray\\\"\\r\\n\" +\n                                             \"           HorizontalOptions=\\\"End\\\" />\\r\\n\" +\n                                             \"    <Label Text=\\\"Fill\\\"\\r\\n\" +\n                                             \"           BackgroundColor=\\\"Gray\\\"\\r\\n\" +\n                                             \"           HorizontalOptions=\\\"Fill\\\" />\\r\\n\" +\n                                             \"</StackLayout>\";\n\n    [ObservableProperty]\n    string positionAndSizeOfChildViewsCSharpCode = \"public class AlignmentPage : ContentPage\\r\\n\" +\n                                                   \"{\\r\\n\" +\n                                                   \"    public AlignmentPage()\\r\\n\" +\n                                                   \"    {\\r\\n\" +\n                                                   \"        Title = \\\"Alignment demo\\\";\\r\\n\" +\n                                                   \"\\r\\n\" +\n                                                   \"        StackLayout stackLayout = new StackLayout\\r\\n\" +\n                                                   \"        {\\r\\n\" +\n                                                   \"            Margin = new Thickness(20),\\r\\n\" +\n                                                   \"            Spacing = 6\\r\\n\" +\n                                                   \"        };\\r\\n\" +\n                                                   \"\\r\\n\" +\n                                                   \"        stackLayout.Add(new Label { Text = \\\"Start\\\", BackgroundColor = Colors.Gray, HorizontalOptions = LayoutOptions.Start });\\r\\n\" +\n                                                   \"        stackLayout.Add(new Label { Text = \\\"Center\\\", BackgroundColor = Colors.Gray, HorizontalOptions = LayoutOptions.Center });\\r\\n\" +\n                                                   \"        stackLayout.Add(new Label { Text = \\\"End\\\", BackgroundColor = Colors.Gray, HorizontalOptions = LayoutOptions.End });\\r\\n\" +\n                                                   \"        stackLayout.Add(new Label { Text = \\\"Fill\\\", BackgroundColor = Colors.Gray, HorizontalOptions = LayoutOptions.Fill });\\r\\n\" +\n                                                   \"\\r\\n\" +\n                                                   \"        Content = stackLayout;\\r\\n\" +\n                                                   \"    }\\r\\n\" +\n                                                   \"}\";\n\n\n    [ObservableProperty]\n    string nestedStackLayoutObjectsXamlCode = \"<StackLayout Margin=\\\"20\\\" Spacing=\\\"8\\\">\\r\\n                        <Label Text=\\\"Primary colors\\\" />\\r\\n                        <Frame Padding=\\\"8\\\" BorderColor=\\\"white\\\">\\r\\n                            <StackLayout Orientation=\\\"Horizontal\\\" Spacing=\\\"15\\\">\\r\\n                                <BoxView WidthRequest=\\\"40\\\" Color=\\\"Red\\\" />\\r\\n                                <Label\\r\\n                                    FontSize=\\\"18\\\"\\r\\n                                    Text=\\\"Red\\\"\\r\\n                                    VerticalOptions=\\\"Center\\\" />\\r\\n                            </StackLayout>\\r\\n                        </Frame>\\r\\n                        <Frame Padding=\\\"8\\\" BorderColor=\\\"white\\\">\\r\\n                            <StackLayout Orientation=\\\"Horizontal\\\" Spacing=\\\"15\\\">\\r\\n                                <BoxView WidthRequest=\\\"40\\\" Color=\\\"Yellow\\\" />\\r\\n                                <Label\\r\\n                                    FontSize=\\\"18\\\"\\r\\n                                    Text=\\\"Yellow\\\"\\r\\n                                    VerticalOptions=\\\"Center\\\" />\\r\\n                            </StackLayout>\\r\\n                        </Frame>\\r\\n                        <Frame Padding=\\\"8\\\" BorderColor=\\\"white\\\">\\r\\n                            <StackLayout Orientation=\\\"Horizontal\\\" Spacing=\\\"15\\\">\\r\\n                                <BoxView WidthRequest=\\\"40\\\" Color=\\\"Blue\\\" />\\r\\n                                <Label\\r\\n                                    FontSize=\\\"18\\\"\\r\\n                                    Text=\\\"Blue\\\"\\r\\n                                    VerticalOptions=\\\"Center\\\" />\\r\\n                            </StackLayout>\\r\\n                        </Frame>\\r\\n                    </StackLayout>\\r\\n                    <StackLayout Margin=\\\"20\\\" Spacing=\\\"8\\\">\\r\\n                        <Label Text=\\\"Secondary colors\\\" />\\r\\n                        <Frame Padding=\\\"8\\\" BorderColor=\\\"white\\\">\\r\\n                            <StackLayout Orientation=\\\"Horizontal\\\" Spacing=\\\"15\\\">\\r\\n                                <BoxView WidthRequest=\\\"40\\\" Color=\\\"Green\\\" />\\r\\n                                <Label\\r\\n                                    FontSize=\\\"18\\\"\\r\\n                                    Text=\\\"Green\\\"\\r\\n                                    VerticalOptions=\\\"Center\\\" />\\r\\n                            </StackLayout>\\r\\n                        </Frame>\\r\\n                        <Frame Padding=\\\"8\\\" BorderColor=\\\"white\\\">\\r\\n                            <StackLayout Orientation=\\\"Horizontal\\\" Spacing=\\\"15\\\">\\r\\n                                <BoxView WidthRequest=\\\"40\\\" Color=\\\"Orange\\\" />\\r\\n                                <Label\\r\\n                                    FontSize=\\\"18\\\"\\r\\n                                    Text=\\\"Orange\\\"\\r\\n                                    VerticalOptions=\\\"Center\\\" />\\r\\n                            </StackLayout>\\r\\n                        </Frame>\\r\\n                        <Frame Padding=\\\"8\\\" BorderColor=\\\"white\\\">\\r\\n                            <StackLayout Orientation=\\\"Horizontal\\\" Spacing=\\\"15\\\">\\r\\n                                <BoxView WidthRequest=\\\"40\\\" Color=\\\"Purple\\\" />\\r\\n                                <Label\\r\\n                                    FontSize=\\\"18\\\"\\r\\n                                    Text=\\\"Purple\\\"\\r\\n                                    VerticalOptions=\\\"Center\\\" />\\r\\n                            </StackLayout>\\r\\n                        </Frame>\\r\\n                    </StackLayout>\";\n\n    [ObservableProperty]\n    string nestedStackLayoutObjectCSharpCode = \"public class CombinedStackLayoutPage : ContentPage\\r\\n{\\r\\n    public CombinedStackLayoutPage()\\r\\n    {\\r\\n        Title = \\\"Combined StackLayouts demo\\\";\\r\\n\\r\\n        Frame frame1 = new Frame\\r\\n        {\\r\\n            BorderColor = Colors.Black,\\r\\n            Padding = new Thickness(5)\\r\\n        };\\r\\n        StackLayout frame1StackLayout = new StackLayout\\r\\n        {\\r\\n            Orientation = StackOrientation.Horizontal,\\r\\n            Spacing = 15\\r\\n        };\\r\\n        frame1StackLayout.Add(new BoxView { Color = Colors.Red, WidthRequest = 40 });\\r\\n        frame1StackLayout.Add(new Label { Text = \\\"Red\\\", FontSize = 22, VerticalOptions = LayoutOptions.Center });\\r\\n        frame1.Content = frame1StackLayout;\\r\\n\\r\\n        Frame frame2 = new Frame\\r\\n        {\\r\\n            BorderColor = Colors.Black,\\r\\n            Padding = new Thickness(5)\\r\\n        };\\r\\n        StackLayout frame2StackLayout = new StackLayout\\r\\n        {\\r\\n            Orientation = StackOrientation.Horizontal,\\r\\n            Spacing = 15\\r\\n        };\\r\\n        frame2StackLayout.Add(new BoxView { Color = Colors.Yellow, WidthRequest = 40 });\\r\\n        frame2StackLayout.Add(new Label { Text = \\\"Yellow\\\", FontSize = 22, VerticalOptions = LayoutOptions.Center });\\r\\n        frame2.Content = frame2StackLayout;\\r\\n\\r\\n        Frame frame3 = new Frame\\r\\n        {\\r\\n            BorderColor = Colors.Black,\\r\\n            Padding = new Thickness(5)\\r\\n        };\\r\\n        StackLayout frame3StackLayout = new StackLayout\\r\\n        {\\r\\n            Orientation = StackOrientation.Horizontal,\\r\\n            Spacing = 15\\r\\n        };\\r\\n        frame3StackLayout.Add(new BoxView { Color = Colors.Blue, WidthRequest = 40 });\\r\\n        frame3StackLayout.Add(new Label { Text = \\\"Blue\\\", FontSize = 22, VerticalOptions = LayoutOptions.Center });\\r\\n        frame3.Content = frame3StackLayout;\\r\\n\\r\\n        ...\\r\\n\\r\\n        StackLayout stackLayout = new StackLayout { Margin = new Thickness(20) };\\r\\n        stackLayout.Add(new Label { Text = \\\"Primary colors\\\" });\\r\\n        stackLayout.Add(frame1);\\r\\n        stackLayout.Add(frame2);\\r\\n        stackLayout.Add(frame3);\\r\\n        stackLayout.Add(new Label { Text = \\\"Secondary colors\\\" });\\r\\n        stackLayout.Add(frame4);\\r\\n        stackLayout.Add(frame5);\\r\\n        stackLayout.Add(frame6);\\r\\n\\r\\n        Content = stackLayout;\\r\\n    }\\r\\n}\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Layouts/VerticalStackLayout/VerticalStackLayoutControlInfo.cs",
    "content": "namespace MAUIsland.Core;\nclass VerticalStackLayoutControlInfo : IBuiltInGalleryCardInfo\n{\n    public string ControlName => nameof(VerticalStackLayout);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_align_space_evenly_vertical_20_regular\n    };\n    public string ControlDetail => \"VerticalStackLayout organizes child views in a one-dimensional vertical stack, and is a more performant alternative to a StackLayout. In addition, a VerticalStackLayout can be used as a parent layout that contains other child layouts.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/maui/user-interface/layouts/{ControlName}\";\n    public string GroupName => ControlGroupInfo.BuiltInControls;\n    public BuiltInGalleryCardStatus Status => BuiltInGalleryCardStatus.Stable;\n    public GalleryCardType CardType => GalleryCardType.Layout;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n    public string GitHubAuthorIssueName => \"dotnet\";\n    public string GitHubRepositoryIssueName => \"maui\";\n    public List<string> GitHubIssueLabels => new List<string>() { \"layout-stack\" };\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/BuiltIn/Layouts/VerticalStackLayout/VerticalStackLayoutPageViewModel.cs",
    "content": "using DiscordRPC;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\npublic partial class VerticalStackLayoutPageViewModel : BaseBuiltInPageControlViewModel\n{\n    #region [ Fields ]\n\n    #endregion\n\n    #region [ CTor ]\n    public VerticalStackLayoutPageViewModel(IAppNavigator appNavigator,\n                                           IGitHubService gitHubService,\n                                           DiscordRpcClient discordRpcClient,\n                                           IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                            : base(appNavigator,\n                                                    gitHubService,\n                                                    discordRpcClient,\n                                                    gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string verticalStackLayoutLabelRectangleXamlCode = \"<VerticalStackLayout Margin=\\\"20\\\">\\r\\n                        <Label Text=\\\"Primary colors\\\" TextColor=\\\"Blue\\\" />\\r\\n                        <Rectangle\\r\\n                            Fill=\\\"Red\\\"\\r\\n                            HeightRequest=\\\"30\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\\r\\n                        <Rectangle\\r\\n                            Fill=\\\"Yellow\\\"\\r\\n                            HeightRequest=\\\"30\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\\r\\n                        <Rectangle\\r\\n                            Fill=\\\"Blue\\\"\\r\\n                            HeightRequest=\\\"30\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\\r\\n                        <Label Text=\\\"Secondary colors\\\" TextColor=\\\"Blue\\\" />\\r\\n                        <Rectangle\\r\\n                            Fill=\\\"Green\\\"\\r\\n                            HeightRequest=\\\"30\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\\r\\n                        <Rectangle\\r\\n                            Fill=\\\"Orange\\\"\\r\\n                            HeightRequest=\\\"30\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\\r\\n                        <Rectangle\\r\\n                            Fill=\\\"Purple\\\"\\r\\n                            HeightRequest=\\\"30\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\\r\\n                    </VerticalStackLayout>\";\n\n    [ObservableProperty]\n    string spaceBetweenChildViewsXamlCode = \"<VerticalStackLayout Margin=\\\"20\\\" Spacing=\\\"8\\\">\\r\\n                        <Label Text=\\\"Primary colors\\\" TextColor=\\\"Blue\\\" />\\r\\n                        <Rectangle\\r\\n                            Fill=\\\"Red\\\"\\r\\n                            HeightRequest=\\\"30\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\\r\\n                        <Rectangle\\r\\n                            Fill=\\\"Yellow\\\"\\r\\n                            HeightRequest=\\\"30\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\\r\\n                        <Rectangle\\r\\n                            Fill=\\\"Blue\\\"\\r\\n                            HeightRequest=\\\"30\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\\r\\n                        <Label Text=\\\"Secondary colors\\\" TextColor=\\\"Blue\\\" />\\r\\n                        <Rectangle\\r\\n                            Fill=\\\"Green\\\"\\r\\n                            HeightRequest=\\\"30\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\\r\\n                        <Rectangle\\r\\n                            Fill=\\\"Orange\\\"\\r\\n                            HeightRequest=\\\"30\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\\r\\n                        <Rectangle\\r\\n                            Fill=\\\"Purple\\\"\\r\\n                            HeightRequest=\\\"30\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\\r\\n                    </VerticalStackLayout>\";\n\n    [ObservableProperty]\n    string positionAndSizeChildViewsXamlCode = \"<VerticalStackLayout Margin=\\\"20\\\" Spacing=\\\"6\\\">\\r\\n                        <Label\\r\\n                            BackgroundColor=\\\"Gray\\\"\\r\\n                            HorizontalOptions=\\\"Start\\\"\\r\\n                            Text=\\\"Start\\\"\\r\\n                            TextColor=\\\"blue\\\" />\\r\\n                        <Label\\r\\n                            BackgroundColor=\\\"Gray\\\"\\r\\n                            HorizontalOptions=\\\"Center\\\"\\r\\n                            Text=\\\"Center\\\"\\r\\n                            TextColor=\\\"blue\\\" />\\r\\n                        <Label\\r\\n                            BackgroundColor=\\\"Gray\\\"\\r\\n                            HorizontalOptions=\\\"End\\\"\\r\\n                            Text=\\\"End\\\"\\r\\n                            TextColor=\\\"blue\\\" />\\r\\n                        <Label\\r\\n                            BackgroundColor=\\\"Gray\\\"\\r\\n                            HorizontalOptions=\\\"Fill\\\"\\r\\n                            Text=\\\"Fill\\\"\\r\\n                            TextColor=\\\"blue\\\" />\\r\\n                    </VerticalStackLayout>\";\n\n    [ObservableProperty]\n    string nestVerticalStackLayoutObjectsXamlCode = \"<VerticalStackLayout Margin=\\\"20\\\" Spacing=\\\"8\\\">\\r\\n                    <Label Text=\\\"Primary colors\\\" TextColor=\\\"Blue\\\" />\\r\\n                    <Frame Padding=\\\"8\\\" BorderColor=\\\"white\\\">\\r\\n                        <HorizontalStackLayout Spacing=\\\"15\\\">\\r\\n                            <Rectangle\\r\\n                                Fill=\\\"Red\\\"\\r\\n                                HeightRequest=\\\"30\\\"\\r\\n                                WidthRequest=\\\"30\\\" />\\r\\n                            <Label FontSize=\\\"18\\\" Text=\\\"Red\\\" />\\r\\n                        </HorizontalStackLayout>\\r\\n                    </Frame>\\r\\n                    <Frame Padding=\\\"8\\\" BorderColor=\\\"white\\\">\\r\\n                        <HorizontalStackLayout Spacing=\\\"15\\\">\\r\\n                            <Rectangle\\r\\n                                Fill=\\\"Yellow\\\"\\r\\n                                HeightRequest=\\\"30\\\"\\r\\n                                WidthRequest=\\\"30\\\" />\\r\\n                            <Label FontSize=\\\"18\\\" Text=\\\"Yellow\\\" />\\r\\n                        </HorizontalStackLayout>\\r\\n                    </Frame>\\r\\n                    <Frame Padding=\\\"8\\\" BorderColor=\\\"white\\\">\\r\\n                        <HorizontalStackLayout Spacing=\\\"15\\\">\\r\\n                            <Rectangle\\r\\n                                Fill=\\\"Blue\\\"\\r\\n                                HeightRequest=\\\"30\\\"\\r\\n                                WidthRequest=\\\"30\\\" />\\r\\n                            <Label FontSize=\\\"18\\\" Text=\\\"Blue\\\" />\\r\\n                        </HorizontalStackLayout>\\r\\n                    </Frame>\\r\\n                </VerticalStackLayout>\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IBuiltInGalleryCardInfo>();\n\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n\n        await RefreshControlIssues(true,\n                                   ControlInformation.ControlName,\n                                   ControlInformation.GitHubAuthorIssueName,\n                                   ControlInformation.GitHubRepositoryIssueName,\n                                   ControlInformation.GitHubIssueLabels);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Controls/AcrylicView/AcrylicViewControlInfo.cs",
    "content": "namespace MAUIsland.Core;\nclass AcrylicViewControlInfo : IGithubGalleryCardInfo\n{\n    public string RepositoryName => \"AcrylicView.MAUI\";\n    public string AuthorName => \"sswi\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_tab_in_private_24_regular\n    };\n    public string ControlName => \"AcrylicView.MAUI\";\n    public string ControlDetail => \"Acrylic is a type of Brush that creates a translucent texture. It can be applied to app surfaces to add depth and help establish a visual hierarchy. It is based on a Fluent Design System component that adds physical texture (material) and depth to your app. Acrylic’s most noticeable characteristic is its transparency. There are two acrylic blend types that change what’s visible through the material: Background acrylic reveals the desktop wallpaper and other windows that are behind the currently active app, adding depth between application windows while celebrating the user’s personalization preferences. In-app acrylic adds a sense of depth within the app frame, providing both focus and hierarchy.\";\n    public string ControlRoute => $\"MAUIsland.AcrylicViewPage\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Community/Controls/AcrylicView\";\n    public string DocumentUrl => \"https://github.com/sswi/AcrylicView.MAUI\"; //SvnUrl\n    public string GroupName => ControlGroupInfo.GitHubCommunity;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => GalleryCardStatus.NotCompleted;\n    public DateTime LastUpdate => default;\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Controls/AcrylicView/AcrylicViewPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class AcrylicViewPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public AcrylicViewPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation;\n\n    [ObservableProperty]\n    string getStartedCode =\n    \"using Xe.AcrylicView;\\r\\n\" +\n    \"\\r\\n\" +\n    \"public static class MauiProgram\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    public static MauiApp CreateMauiApp()\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        var builder = MauiApp.CreateBuilder();\\r\\n\" +\n    \"        builder\\r\\n\" +\n    \"            .UseMauiApp<App>()\\r\\n\" +\n    \"            .UseAcrylicView()\\r\\n\" +\n    \"            .ConfigureFonts(fonts =>\\r\\n\" +\n    \"            {\\r\\n\" +\n    \"                fonts.AddFont(\\\"OpenSans-Regular.ttf\\\", \\\"OpenSansRegular\\\");\\r\\n\" +\n    \"                fonts.AddFont(\\\"OpenSans-Semibold.ttf\\\", \\\"OpenSansSemibold\\\");\\r\\n\" +\n    \"            });\\r\\n\" +\n    \"        return builder.Build();\\r\\n\" +\n    \"    }\\r\\n\" +\n    \"}\";\n\n\n    [ObservableProperty]\n    string acrylicViewXamlCode =\n    \"<VerticalStackLayout Spacing=\\\"10\\\">\\r\\n\" +\n    \"    <Label Text=\\\"AcrylicView\\\" />\\r\\n\" +\n    \"    <Grid>\\r\\n\" +\n    \"        <skia:SKLottieView\\r\\n\" +\n    \"            HeightRequest=\\\"100\\\"\\r\\n\" +\n    \"            HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n    \"            RepeatCount=\\\"-1\\\"\\r\\n\" +\n    \"            SemanticProperties.Description=\\\"Cute dot net bot waving hi to you!\\\"\\r\\n\" +\n    \"            Source=\\\"dotnetbot.json\\\"\\r\\n\" +\n    \"            VerticalOptions=\\\"Center\\\"\\r\\n\" +\n    \"            WidthRequest=\\\"100\\\" />\\r\\n\" +\n    \"        <ui:AcrylicView\\r\\n\" +\n    \"            Margin=\\\"10\\\"\\r\\n\" +\n    \"            BorderColor=\\\"OrangeRed\\\"\\r\\n\" +\n    \"            BorderThickness=\\\"1,2\\\"\\r\\n\" +\n    \"            CornerRadius=\\\"50,10,30,20\\\"\\r\\n\" +\n    \"            EffectStyle=\\\"Custom\\\"\\r\\n\" +\n    \"            HeightRequest=\\\"100\\\"\\r\\n\" +\n    \"            TintColor=\\\"OrangeRed\\\"\\r\\n\" +\n    \"            TintOpacity=\\\".15 \\\"\\r\\n\" +\n    \"            VerticalOptions=\\\"Center\\\">\\r\\n\" +\n    \"            <Grid>\\r\\n\" +\n    \"                <Label\\r\\n\" +\n    \"                    FontSize=\\\"25\\\"\\r\\n\" +\n    \"                    HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n    \"                    Text=\\\"Hello Word\\\"\\r\\n\" +\n    \"                    TextColor=\\\"OrangeRed\\\"\\r\\n\" +\n    \"                    VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n    \"            </Grid>\\r\\n\" +\n    \"        </ui:AcrylicView>\\r\\n\" +\n    \"    </Grid>\\r\\n\" +\n    \"</VerticalStackLayout>\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n    }\n    #endregion\n\n    #region [ Relay commands ]\n\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n\n    [RelayCommand]\n    async Task CopyToClipboardAsync(string text)\n    {\n        await Clipboard.Default.SetTextAsync(text);\n        await AppNavigator.ShowSnackbarAsync(\"Code copied to clipboard\", null, null);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Controls/DataGrid/DataGridControlInfo.cs",
    "content": "namespace MAUIsland.Core;\nclass DataGridControlInfo : IGithubGalleryCardInfo\n{\n    public string RepositoryName => \"Maui.DataGrid\";\n    public string AuthorName => \"akgulebubekir\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Glyph = FluentUIIcon.Ic_fluent_document_table_24_regular\n    };\n    public string ControlName => \"DataGrid\";\n    public string ControlDetail => \"MAUI.Datagrid is a library allows us to create complex data grids or tables for displaying record data, it supports sorting and virtualization, so creating another card demonstrates the use cases of this library\";\n    public string ControlRoute => \"MAUIsland.DataGridPage\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Community/Layouts/DataGrid\";\n    public string DocumentUrl => \"https://github.com/akgulebubekir/Maui.DataGrid\";  //SvnUrl\n    public string GroupName => ControlGroupInfo.GitHubCommunity;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => default;\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Controls/DataGrid/DataGridPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class DataGridPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ Fields ]\n    private readonly IControlsService MauiControlsService;\n    private readonly IGitHubRepositorySyncService GitHubRepositorySyncService;\n    #endregion\n\n    #region [ CTor ]\n    public DataGridPageViewModel(IAppNavigator appNavigator,\n                                 IControlsService controlsService,\n                                 IGitHubRepositorySyncService gitHubRepositorySyncService)\n        : base(appNavigator)\n    {\n        this.MauiControlsService = controlsService;\n        this.GitHubRepositorySyncService = gitHubRepositorySyncService;\n    }\n    #endregion\n\n    #region [ Properties ]\n    [ObservableProperty]\n    bool isRefreshing;\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation;\n\n    [ObservableProperty]\n    IGalleryCardInfo selectedControl;\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> controlGroupList = new();\n\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> controlGroupListEmtyList = new();\n\n    [ObservableProperty]\n    GitHubRepositoryLocalDbModel selectedGithubControl;\n\n    [ObservableProperty]\n    ObservableCollection<GitHubRepositoryLocalDbModel> githubControlGroupList = new();\n\n    [ObservableProperty]\n    string normalDataGridTip =\n        \"A tip when using the DataGrid, data from the ItemsSource is passed to each column. Each DataGridColumn has a property named PropertyName. This property should be assigned the name of the property from the ItemsSource model that you want to bind to the column. Once this is done, the {x:Binding} expression can be used in the CellTemplate to bind to that specific property\";\n\n    [ObservableProperty]\n    string xamlNormalDataGridTemplate =\n        \"<DataTemplate x:Key=\\\"DataGridItemColumnTemplate\\\">\\r\\n\" +\n        \"   <Label Text=\\\"{x:Binding}\\\" \\r\\n\" +\n        \"          TextColor=\\\"Black\\\" \\r\\n\" +\n        \"          VerticalOptions=\\\"Center\\\" \\r\\n\" +\n        \"          HorizontalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"</DataTemplate>\";\n\n    [ObservableProperty]\n    string xamlNormalDataGrid =\n        \"<datagird:DataGrid ItemsSource=\\\"{x:Binding ControlGroupList}\\\" \\r\\n\" +\n        \"                   SelectedItem=\\\"{x:Binding SelectedControl}\\\"\\r\\n\" +\n        \"                   IsRefreshing=\\\"{x:Binding IsRefreshing}\\\"\\r\\n\" +\n        \"                   RowHeight=\\\"80\\\" \\r\\n\" +\n        \"                   HeaderHeight=\\\"50\\\"\\r\\n\" +\n        \"                   HeaderBackground=\\\"#35abc3\\\"\\r\\n\" +\n        \"                   BorderColor=\\\"Gray\\\">\\r\\n\" +\n        \"   <datagird:DataGrid.Columns>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Control\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"ControlIcon\\\" \\r\\n\" +\n        \"                                Width=\\\"80\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\">\\r\\n\" +\n        \"           <datagird:DataGridColumn.CellTemplate>\\r\\n\" +\n        \"               <DataTemplate>\\r\\n\" +\n        \"                   <Frame BackgroundColor=\\\"#35abc3\\\"\\r\\n\" +\n        \"                          BorderColor=\\\"Transparent\\\"\\r\\n\" +\n        \"                          HeightRequest=\\\"60\\\"\\r\\n\" +\n        \"                          WidthRequest=\\\"60\\\"\\r\\n\" +\n        \"                          VerticalOptions=\\\"Center\\\" \\r\\n\" +\n        \"                          HorizontalOptions=\\\"Center\\\">\\r\\n\" +\n        \"                       <Image Source=\\\"{x:Binding}\\\" \\r\\n\" +\n        \"                              VerticalOptions=\\\"CenterAndExpand\\\" \\r\\n\" +\n        \"                              HorizontalOptions=\\\"CenterAndExpand\\\"/>\\r\\n\" +\n        \"                   </Frame>\\r\\n\" +\n        \"               </DataTemplate>\\r\\n\" +\n        \"           </datagird:DataGridColumn.CellTemplate>\\r\\n\" +\n        \"       </datagird:DataGridColumn>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Name\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"ControlName\\\" \\r\\n\" +\n        \"                                Width=\\\"140\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\"\\r\\n\" +\n        \"                                CellTemplate=\\\"{x:StaticResource DataGridItemColumnTemplate}\\\"/>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Type\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"CardType\\\" \\r\\n\" +\n        \"                                Width=\\\"120\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\">\\r\\n\" +\n        \"           <datagird:DataGridColumn.CellTemplate>\\r\\n\" +\n        \"               <DataTemplate>\\r\\n\" +\n        \"                   <Frame BackgroundColor=\\\"ForestGreen\\\"\\r\\n\" +\n        \"                          BorderColor=\\\"LightGreen\\\"\\r\\n\" +\n        \"                          VerticalOptions=\\\"Center\\\" \\r\\n\" +\n        \"                          HorizontalOptions=\\\"Center\\\">\\r\\n\" +\n        \"                       <Label Text=\\\"{x:Binding}\\\" \\r\\n\" +\n        \"                              VerticalOptions=\\\"Center\\\" \\r\\n\" +\n        \"                              HorizontalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"                   </Frame>\\r\\n\" +\n        \"               </DataTemplate>\\r\\n\" +\n        \"           </datagird:DataGridColumn.CellTemplate>\\r\\n\" +\n        \"       </datagird:DataGridColumn>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Detail\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"ControlDetail\\\" \\r\\n\" +\n        \"                                Width=\\\"650\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\"\\r\\n\" +\n        \"                                CellTemplate=\\\"{x:StaticResource DataGridItemColumnTemplate}\\\"/>\\r\\n\" +\n        \"   </datagird:DataGrid.Columns>\\r\\n\" +\n        \"</datagird:DataGrid>\";\n\n    [ObservableProperty]\n    string cSharpNormalDataGrid =\n        \"[ObservableProperty]\\r\\n\" +\n        \"IGalleryCardInfo selectedControl;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"ObservableCollection<IGalleryCardInfo> controlGroupList = new();\";\n\n    [ObservableProperty]\n    string xamlRowsColorDataGrid =\n        \"<datagird:DataGrid ItemsSource=\\\"{x:Binding GithubControlGroupList}\\\" \\r\\n\" +\n        \"                   SelectedItem=\\\"{x:Binding SelectedGithubControl}\\\"\\r\\n\" +\n        \"                   IsRefreshing=\\\"{x:Binding IsRefreshing}\\\"\\r\\n\" +\n        \"                   RowHeight=\\\"80\\\" \\r\\n\" +\n        \"                   HeaderHeight=\\\"50\\\" \\r\\n\" +\n        \"                   HeaderBackground=\\\"#e0e6f7\\\">\\r\\n\" +\n        \"   <datagird:DataGrid.RowsBackgroundColorPalette>\\r\\n\" +\n        \"       <datagird:PaletteCollection>\\r\\n\" +\n        \"           <Color>#F2F2F2</Color>\\r\\n\" +\n        \"           <Color>#FFFFFF</Color>\\r\\n\" +\n        \"       </datagird:PaletteCollection>\\r\\n\" +\n        \"   </datagird:DataGrid.RowsBackgroundColorPalette>\\r\\n\" +\n        \"   <datagird:DataGrid.Columns>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Avatar\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"OwnerAvatarUrl\\\" \\r\\n\" +\n        \"                                Width=\\\"80\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\">\\r\\n\" +\n        \"           <datagird:DataGridColumn.CellTemplate>\\r\\n\" +\n        \"               <DataTemplate>\\r\\n\" +\n        \"                   <Image Source=\\\"{x:Binding}\\\" \\r\\n\" +\n        \"                          VerticalOptions=\\\"Center\\\" \\r\\n\" +\n        \"                          HorizontalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"               </DataTemplate>\\r\\n\" +\n        \"           </datagird:DataGridColumn.CellTemplate>\\r\\n\" +\n        \"       </datagird:DataGridColumn>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Name\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"Name\\\" \\r\\n\" +\n        \"                                Width=\\\"140\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\"\\r\\n\" +\n        \"                                CellTemplate=\\\"{x:StaticResource DataGridItemColumnTemplate}\\\"/>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Forks Count\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"ForksCount\\\" \\r\\n\" +\n        \"                                Width=\\\"100\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\"\\r\\n\" +\n        \"                                CellTemplate=\\\"{x:StaticResource DataGridItemColumnTemplate}\\\"/>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Stargazers Count\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"StargazersCount\\\" \\r\\n\" +\n        \"                                Width=\\\"120\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\"\\r\\n\" +\n        \"                                CellTemplate=\\\"{x:StaticResource DataGridItemColumnTemplate}\\\"/>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Issues Count\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"OpenIssuesCount\\\" \\r\\n\" +\n        \"                                Width=\\\"100\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\"\\r\\n\" +\n        \"                                CellTemplate=\\\"{x:StaticResource DataGridItemColumnTemplate}\\\"/>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"License\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"LicenseName\\\" \\r\\n\" +\n        \"                                Width=\\\"100\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\"\\r\\n\" +\n        \"                                CellTemplate=\\\"{x:StaticResource DataGridItemColumnTemplate}\\\"/>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Link\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"SvnUrl\\\" \\r\\n\" +\n        \"                                Width=\\\"350\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\"\\r\\n\" +\n        \"                                CellTemplate=\\\"{x:StaticResource DataGridItemColumnTemplate}\\\"/>\\r\\n\" +\n        \"   </datagird:DataGrid.Columns>\\r\\n\" +\n        \"</datagird:DataGrid>\";\n\n    [ObservableProperty]\n    string cSharpRowsColorDataGrid =\n        \"[ObservableProperty]\\r\\n\" +\n        \"GitHubRepositoryLocalDbModel selectedGithubControl;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"ObservableCollection<GitHubRepositoryLocalDbModel> githubControlGroupList = new();\";\n\n    [ObservableProperty]\n    string xamlEmptyListDataGrid =\n        \"<datagird:DataGrid ItemsSource=\\\"{x:Binding ControlGroupListEmtyList}\\\"\\r\\n\" +\n        \"                   IsRefreshing=\\\"{x:Binding IsRefreshing}\\\"\\r\\n\" +\n        \"                   RowHeight=\\\"80\\\" \\r\\n\" +\n        \"                   HeaderHeight=\\\"50\\\" \\r\\n\" +\n        \"                   HeaderBackground=\\\"#e0e6f7\\\">\\r\\n\" +\n        \"   <datagird:DataGrid.NoDataView>\\r\\n\" +\n        \"       <ContentView>\\r\\n\" +\n        \"           <Label Text=\\\"Nothing to see here!\\\" \\r\\n\" +\n        \"                  VerticalOptions=\\\"Center\\\" \\r\\n\" +\n        \"                  HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                  SemanticProperties.HeadingLevel=\\\"Level1\\\"/>\\r\\n\" +\n        \"       </ContentView>\\r\\n\" +\n        \"   </datagird:DataGrid.NoDataView>\\r\\n\" +\n        \"   <datagird:DataGrid.Columns>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Control Name\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"ControlName\\\" \\r\\n\" +\n        \"                                Width=\\\"140\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\"\\r\\n\" +\n        \"                                CellTemplate=\\\"{x:StaticResource DataGridItemColumnTemplate}\\\"/>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Type\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"CardType\\\" \\r\\n\" +\n        \"                                Width=\\\"120\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\"\\r\\n\" +\n        \"                                CellTemplate=\\\"{x:StaticResource DataGridItemColumnTemplate}\\\"/>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Group Name\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"GroupName\\\" \\r\\n\" +\n        \"                                Width=\\\"140\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\"\\r\\n\" +\n        \"                                CellTemplate=\\\"{x:StaticResource DataGridItemColumnTemplate}\\\"/>\\r\\n\" +\n        \"       <datagird:DataGridColumn Title=\\\"Control Detail\\\" \\r\\n\" +\n        \"                                PropertyName=\\\"ControlDetail\\\" \\r\\n\" +\n        \"                                Width=\\\"600\\\" \\r\\n\" +\n        \"                                SortingEnabled=\\\"True\\\"\\r\\n\" +\n        \"                                CellTemplate=\\\"{x:StaticResource DataGridItemColumnTemplate}\\\"/>\\r\\n\" +\n        \"   </datagird:DataGrid.Columns>\\r\\n\" +\n        \"</datagird:DataGrid>\";\n\n    [ObservableProperty]\n    string cSharpEmptyListDataGrid =\n        \"[ObservableProperty]\\r\\n\" +\n        \"ObservableCollection<IGalleryCardInfo> controlGroupListEmtyList = new();\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n        LoadDataAsync().FireAndForget();\n\n    }\n    #endregion\n\n    #region [ Relay commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n        IsRefreshing = true;\n\n        ControlGroupList.Clear();\n        GithubControlGroupList.Clear();\n\n        var controls = await MauiControlsService.GetControlsAsync(ControlInformation.GroupName);\n        foreach (var item in controls)\n        {\n            ControlGroupList.Add(item);\n        }\n\n        var githubControls = await GitHubRepositorySyncService.GetAllAsync();\n        foreach (var item in githubControls)\n        {\n            GithubControlGroupList.Add(item);\n        }\n\n        IsRefreshing = false;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Controls/LiveCharts2/LiveCharts2ControlInfo.cs",
    "content": "namespace MAUIsland.Core;\nclass LiveCharts2ControlInfo : IGithubGalleryCardInfo\n{\n    public string RepositoryName => \"LiveCharts2\";\n    public string AuthorName => \"beto-rodriguez\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Glyph = FluentUIIcon.Ic_fluent_chart_multiple_24_regular\n    };\n    public string ControlName => \"LiveCharts2\";\n    public string ControlDetail => \"LiveCharts2 is a library developed by beto-rodriguez. It’s a simple, flexible, interactive, and powerful tool for creating charts, maps, and gauges in .Net. It’s designed to run on multiple platforms including Maui, Uno Platform, Blazor-wasm, WPF, WinForms, Xamarin, Avalonia, WinUI, and UWP. The library is designed to be highly flexible and can be easily moved to any other drawing engine. It also supports high-performance data visualization.\";\n    public string ControlRoute => \"MAUIsland.LiveCharts2Page\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Community/Controls/LiveCharts2\";\n    public string DocumentUrl => \"https://livecharts.dev/docs/maui/2.0.0-rc2/gallery\";\n    public string GroupName => ControlGroupInfo.GitHubCommunity;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => GalleryCardStatus.Completed;\n    public DateTime LastUpdate => default;\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Controls/LiveCharts2/LiveCharts2PageViewModel.cs",
    "content": "﻿using LiveChartsCore;\nusing LiveChartsCore.ConditionalDraw;\nusing LiveChartsCore.Measure;\nusing LiveChartsCore.SkiaSharpView;\nusing LiveChartsCore.SkiaSharpView.Extensions;\nusing LiveChartsCore.SkiaSharpView.Painting;\nusing LiveChartsCore.SkiaSharpView.VisualElements;\nusing LiveChartsCore.Themes;\nusing SkiaSharp;\n\nnamespace MAUIsland.Core;\npublic partial class LiveCharts2PageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ Fields ]\n\n\n    private readonly Random _r = new();\n    private PilotInfo[] _racingData;\n    #endregion\n\n    #region [ CTor ]\n    public LiveCharts2PageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n        InitRacingBars();\n    }\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n    }\n\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation;\n\n    #region [ Basic Bars ]\n\n    [ObservableProperty]\n    string basicBarsTitle = \"Basic Bars\";\n\n    [ObservableProperty]\n    string basicBarsCSharpCode =\n    \"public ISeries[] BasicBarsSeries { get; set; } =\\r\\n\" +\n    \"{\\r\\n\" +\n    \"        new ColumnSeries<double>\\r\\n\" +\n    \"        {\\r\\n\" +\n    \"            Name = \\\"Mary\\\",\\r\\n\" +\n    \"            Values = new double[] { 2, 5, 4 }\\r\\n\" +\n    \"        },\\r\\n\" +\n    \"        new ColumnSeries<double>\\r\\n\" +\n    \"        {\\r\\n\" +\n    \"            Name = \\\"Ana\\\",\\r\\n\" +\n    \"            Values = new double[] { 3, 1, 6 }\\r\\n\" +\n    \"        }\\r\\n\" +\n    \"};\\r\\n\" +\n    \"\\r\\n\" +\n    \"public Axis[] BasicBarsXAxes { get; set; } =\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    new Axis\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        Labels = new string[] { \\\"Category 1\\\", \\\"Category 2\\\", \\\"Category 3\\\" },\\r\\n\" +\n    \"        LabelsRotation = 0,\\r\\n\" +\n    \"        LabelsPaint = new SolidColorPaint(SKColors.White),\\r\\n\" +\n    \"        SeparatorsPaint = new SolidColorPaint(new SKColor(200, 200, 200)),\\r\\n\" +\n    \"        SeparatorsAtCenter = false,\\r\\n\" +\n    \"        TicksPaint = new SolidColorPaint(new SKColor(35, 35, 35)),\\r\\n\" +\n    \"        TicksAtCenter = true,\\r\\n\" +\n    \"        ForceStepToMin = true,\\r\\n\" +\n    \"        MinStep = 1\\r\\n\" +\n    \"    }\\r\\n\" +\n    \"};\\r\\n\" +\n    \"\\r\\n\" +\n    \"public Axis[] BasicBarsYAxes { get; set; } =\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    new Axis\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"       LabelsPaint = new SolidColorPaint(SKColors.White),\\r\\n\" +\n    \"    }\\r\\n\" +\n    \"};\\r\\n\" +\n    \"\\r\\n\" +\n    \"public SolidColorPaint LegendTextPaint { get; set; } =\\r\\n\" +\n    \"    new SolidColorPaint\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        Color = new SKColor(255, 255, 255),\\r\\n\" +\n    \"        SKTypeface = SKTypeface.FromFamilyName(\\\"Courier New\\\")\\r\\n\" +\n    \"    };\\r\\n\" +\n    \"\\r\\n\" +\n    \"public SolidColorPaint LegendBackgroundPaint { get; set; } =\\r\\n\" +\n    \"    new SolidColorPaint(new SKColor(146, 228, 146));\";\n\n\n    [ObservableProperty]\n    string basicBarsXamlCode =\n    \"<lvc:CartesianChart\\r\\n\" +\n    \"    HeightRequest=\\\"300\\\"\\r\\n\" +\n    \"    LegendPosition=\\\"Right\\\"\\r\\n\" +\n    \"    Series=\\\"{Binding BasicBarsSeries}\\\"\\r\\n\" +\n    \"    XAxes=\\\"{Binding BasicBarsXAxes}\\\"\\r\\n\" +\n    \"    YAxes=\\\"{Binding BasicBarsYAxes}\\\"\\r\\n\" +\n    \"    LegendBackgroundPaint=\\\"{Binding LegendBackgroundPaint}\\\"\\r\\n\" +\n    \"    LegendTextPaint=\\\"{Binding LegendTextPaint}\\\" />\";\n\n\n    public ISeries[] BasicBarsSeries { get; set; } =\n    {\n            new ColumnSeries<double>\n            {\n                Name = \"Mary\",\n                Values = new double[] { 2, 5, 4 }\n            },\n            new ColumnSeries<double>\n            {\n                Name = \"Ana\",\n                Values = new double[] { 3, 1, 6 }\n            }\n        };\n\n    public Axis[] BasicBarsXAxes { get; set; } =\n    {\n        new Axis\n        {\n            Labels = new string[] { \"Category 1\", \"Category 2\", \"Category 3\" },\n            LabelsRotation = 0,\n            LabelsPaint = new SolidColorPaint(SKColors.White),\n            SeparatorsPaint = new SolidColorPaint(new SKColor(200, 200, 200)),\n            SeparatorsAtCenter = false,\n            TicksPaint = new SolidColorPaint(new SKColor(35, 35, 35)),\n            TicksAtCenter = true,\n            ForceStepToMin = true,\n            MinStep = 1\n        }\n    };\n\n    public Axis[] BasicBarsYAxes { get; set; } =\n    {\n        new Axis\n        {\n           LabelsPaint = new SolidColorPaint(SKColors.White),\n        }\n    };\n\n    public SolidColorPaint LegendTextPaint { get; set; } =\n        new SolidColorPaint\n        {\n            Color = new SKColor(255, 255, 255),\n            SKTypeface = SKTypeface.FromFamilyName(\"Courier New\")\n        };\n\n    public SolidColorPaint LegendBackgroundPaint { get; set; } =\n        new SolidColorPaint(new SKColor(146, 228, 146));\n\n    #endregion\n\n    #region [ Bars With Background ]\n\n    [ObservableProperty]\n    string barsWithBackgroundTitle = \"Bars With Background\";\n\n    [ObservableProperty]\n    string barsWithBackgroundCSharpCode =\n    \"public ISeries[] BarsWithBackgroundSeries { get; set; } =\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    new ColumnSeries<double>\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        IsHoverable = false, // disables the series from the tooltips \\r\\n\" +\n    \"        Values = new double[] { 10, 10, 10, 10, 10, 10, 10 },\\r\\n\" +\n    \"        Stroke = null,\\r\\n\" +\n    \"        Fill = new SolidColorPaint(new SKColor(30, 30, 30, 30)),\\r\\n\" +\n    \"        IgnoresBarPosition = true\\r\\n\" +\n    \"    },\\r\\n\" +\n    \"    new ColumnSeries<double>\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        Values = new double[] { 3, 10, 5, 3, 7, 3, 8 },\\r\\n\" +\n    \"        Stroke = null,\\r\\n\" +\n    \"        Fill = new SolidColorPaint(SKColors.CornflowerBlue),\\r\\n\" +\n    \"        IgnoresBarPosition = true\\r\\n\" +\n    \"    }\\r\\n\" +\n    \"};\\r\\n\" +\n    \"\\r\\n\" +\n    \"public Axis[] BarsWithBackgroundYAxes { get; set; } =\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    new Axis \\r\\n\" +\n    \"    { \\r\\n\" +\n    \"        MinLimit = 0, \\r\\n\" +\n    \"        MaxLimit = 10,\\r\\n\" +\n    \"        LabelsPaint = new SolidColorPaint(SKColors.White), \\r\\n\" +\n    \"    }\\r\\n\" +\n    \"};\\r\\n\" +\n    \"\\r\\n\" +\n    \"public Axis[] BarsWithBackgroundXAxes { get; set; } =\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    new Axis\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        LabelsPaint = new SolidColorPaint(SKColors.White),\\r\\n\" +\n    \"    }\\r\\n\" +\n    \"};\";\n\n\n    [ObservableProperty]\n    string barsWithBackgroundXamlCode =\n    \"<lvc:CartesianChart\\r\\n\" +\n    \"    HeightRequest=\\\"300\\\"\\r\\n\" +\n    \"    Series=\\\"{Binding BarsWithBackgroundSeries}\\\"\\r\\n\" +\n    \"    XAxes=\\\"{Binding BarsWithBackgroundXAxes}\\\"\\r\\n\" +\n    \"    YAxes=\\\"{Binding BarsWithBackgroundYAxes}\\\" />\";\n\n\n    public ISeries[] BarsWithBackgroundSeries { get; set; } =\n{\n            new ColumnSeries<double>\n            {\n                IsHoverable = false, // disables the series from the tooltips \n                Values = new double[] { 10, 10, 10, 10, 10, 10, 10 },\n                Stroke = null,\n                Fill = new SolidColorPaint(new SKColor(30, 30, 30, 30)),\n                IgnoresBarPosition = true\n            },\n            new ColumnSeries<double>\n            {\n                Values = new double[] { 3, 10, 5, 3, 7, 3, 8 },\n                Stroke = null,\n                Fill = new SolidColorPaint(SKColors.CornflowerBlue),\n                IgnoresBarPosition = true\n            }\n        };\n\n    public Axis[] BarsWithBackgroundYAxes { get; set; } =\n    {\n            new Axis\n            {\n                MinLimit = 0,\n                MaxLimit = 10,\n                LabelsPaint = new SolidColorPaint(SKColors.White),\n            }\n        };\n\n\n    public Axis[] BarsWithBackgroundXAxes { get; set; } =\n    {\n            new Axis\n            {\n                LabelsPaint = new SolidColorPaint(SKColors.White),\n            }\n    };\n    #endregion\n\n    #region [ Racing Bars ]\n\n    [ObservableProperty]\n    string racingBarsTitle = \"Racing Bars\";\n\n    [ObservableProperty]\n    string racingBarsCSharpCode = \"[ObservableProperty]\\r\\n    ISeries[] racingSeries;\\r\\n\\r\\n    [ObservableProperty]\\r\\n    Axis[] xRacingAxes = { new Axis { SeparatorsPaint = new SolidColorPaint(new SKColor(220, 220, 220)) } };\\r\\n\\r\\n    [ObservableProperty]\\r\\n    Axis[] yRacingAxes = { new Axis { IsVisible = false } };\\r\\n\\r\\n    public bool IsReading { get; set; } = true; void InitRacingBars()\\r\\n    {\\r\\n\\r\\n        // generate some paints for each pilot:\\r\\n        var paints = Enumerable.Range(0, 7)\\r\\n            .Select(i => new SolidColorPaint(ColorPalletes.MaterialDesign500[i].AsSKColor()))\\r\\n            .ToArray();\\r\\n\\r\\n        // generate some data for each pilot:\\r\\n        _racingData = new PilotInfo[]\\r\\n        {\\r\\n            new(\\\"Tsunoda\\\",   500,  paints[0]),\\r\\n            new(\\\"Sainz\\\",     450,  paints[1]),\\r\\n            new(\\\"Riccardo\\\",  520,  paints[2]),\\r\\n            new(\\\"Bottas\\\",    550,  paints[3]),\\r\\n            new(\\\"Perez\\\",     660,  paints[4]),\\r\\n            new(\\\"Verstapen\\\", 920,  paints[5]),\\r\\n            new(\\\"Hamilton\\\",  1000, paints[6])\\r\\n        };\\r\\n\\r\\n        var rowSeries = new RowSeries<PilotInfo>\\r\\n        {\\r\\n            Values = _racingData.OrderBy(x => x.Value).ToArray(),\\r\\n            DataLabelsPaint = new SolidColorPaint(new SKColor(245, 245, 245)),\\r\\n            DataLabelsPosition = DataLabelsPosition.End,\\r\\n            DataLabelsTranslate = new(-1, 0),\\r\\n            DataLabelsFormatter = point => $\\\"{point.Model!.Name} {point.Coordinate.PrimaryValue}\\\",\\r\\n            MaxBarWidth = 50,\\r\\n            Padding = 10,\\r\\n        }.OnPointMeasured(point =>\\r\\n        {\\r\\n            // assign a different color to each point\\r\\n            if (point.Visual is null) return;\\r\\n            point.Visual.Fill = point.Model!.Paint;\\r\\n        });\\r\\n\\r\\n        RacingSeries = new[] { rowSeries };\\r\\n\\r\\n        StartRace().FireAndForget();\\r\\n    }\\r\\n\\r\\n    async Task StartRace()\\r\\n    {\\r\\n        await Task.Delay(1000);\\r\\n\\r\\n\\r\\n        while (IsReading)\\r\\n        {\\r\\n            // do a random change to the data\\r\\n            foreach (var item in _racingData)\\r\\n                item.Value += _r.Next(0, 100);\\r\\n\\r\\n            RacingSeries[0].Values =\\r\\n                _racingData.OrderBy(x => x.Value).ToArray();\\r\\n\\r\\n            await Task.Delay(100);\\r\\n        }\\r\\n    }\";\n\n    [ObservableProperty]\n    string racingBarsXamlCode = \"<lvc:CartesianChart\\r\\n                        HeightRequest=\\\"300\\\"\\r\\n                        Series=\\\"{Binding RacingSeries}\\\"\\r\\n                        TooltipPosition=\\\"Hidden\\\"\\r\\n                        XAxes=\\\"{Binding XRacingAxes}\\\"\\r\\n                        YAxes=\\\"{Binding YRacingAxes}\\\" />\";\n\n    [ObservableProperty]\n    ISeries[] racingSeries;\n\n    [ObservableProperty]\n    Axis[] xRacingAxes =\n    {\n        new Axis\n        {\n            LabelsPaint = new SolidColorPaint(SKColors.White),\n            SeparatorsPaint = new SolidColorPaint(new SKColor(220, 220, 220))\n        }\n    };\n\n    [ObservableProperty]\n    Axis[] yRacingAxes = { new Axis { IsVisible = false } };\n\n    public bool IsReading { get; set; } = true;\n    #endregion\n\n    #region [ Line Series ]\n\n    [ObservableProperty]\n    string lineSeriesTitle = \"Line Series\";\n\n    [ObservableProperty]\n    string lineSeriesCSharpCode = \"public ISeries[] LineSeries { get; set; } =\\r\\n    {\\r\\n        new LineSeries<double>\\r\\n        {\\r\\n            Values = new double[] { 2, 1, 3, 5, 3, 4, 6 },\\r\\n            Fill = null\\r\\n        }\\r\\n    };\\r\\n\\r\\n    public LabelVisual LineSeriesVisualTitle { get; set; } =\\r\\n        new LabelVisual\\r\\n        {\\r\\n            Text = \\\"My chart title\\\",\\r\\n            TextSize = 25,\\r\\n            Padding = new LiveChartsCore.Drawing.Padding(15),\\r\\n            Paint = new SolidColorPaint(SKColors.DarkSlateGray)\\r\\n        };\";\n\n    [ObservableProperty]\n    string lineSeriesXamlCode = \"<lvc:CartesianChart\\r\\n                        Title=\\\"{Binding LineSeriesVisualTitle}\\\"\\r\\n                        HeightRequest=\\\"300\\\"\\r\\n                        Series=\\\"{Binding LineSeries}\\\" />\";\n\n    public ISeries[] LineSeries { get; set; } =\n    {\n        new LineSeries<double>\n        {\n            Values = new double[] { 2, 1, 3, 5, 3, 4, 6 },\n            Fill = null\n        }\n    };\n\n    public LabelVisual LineSeriesVisualTitle { get; set; } =\n    new LabelVisual\n    {\n        Text = \"Line chart title\",\n        TextSize = 25,\n        Padding = new LiveChartsCore.Drawing.Padding(15),\n        Paint = new SolidColorPaint(SKColors.White)\n    };\n\n    public ISeries[] LineSeries2 { get; set; } =\n    {\n        new LineSeries<int>\n        {\n            Values = new ObservableCollection<int> { 200, 558, 458, 249 },\n            Fill = null\n        }\n    };\n\n    public List<Axis> LineSeries2XAxis { get; set; } = new List<Axis>()\n    {\n        new Axis\n        {\n            Name = \"Employee name\",\n            NamePaint = new SolidColorPaint(SKColors.White),\n            Labels = new string[] { \"Anne\", \"Johnny\", \"Zac\", \"Rosa\" },\n            LabelsPaint = new SolidColorPaint(SKColors.White)\n        }\n    };\n\n    public List<Axis> LineSeries2YAxis { get; set; } = new List<Axis>()\n    {\n        new Axis\n        {\n            Name = \"Salary\",\n            NamePaint = new SolidColorPaint(SKColors.White),\n            Labeler = Labelers.Default,\n            LabelsPaint = new SolidColorPaint(SKColors.White)\n        }\n    };\n\n\n    #endregion\n\n    #region [ Stacked Column Bars ]\n\n    [ObservableProperty]\n    string stackedBarsTitle = \"Stacked Column Bars\";\n\n    [ObservableProperty]\n    string stackBarsCSharpCode = \"public ISeries[] StackedSeries { get; set; } =\\r\\n    {\\r\\n        new StackedColumnSeries<int>\\r\\n        {\\r\\n            Values = new List<int> { 3, 5, -3, 2, 5, -4, -2 },\\r\\n            Stroke = null,\\r\\n            DataLabelsPaint = new SolidColorPaint(new SKColor(45, 45, 45)),\\r\\n            DataLabelsSize = 14,\\r\\n            DataLabelsPosition = DataLabelsPosition.Middle\\r\\n        },\\r\\n        new StackedColumnSeries<int>\\r\\n        {\\r\\n            Values = new List<int> { 4, 2, -3, 2, 3, 4, -2 },\\r\\n            Stroke = null,\\r\\n            DataLabelsPaint = new SolidColorPaint(new SKColor(45, 45, 45)),\\r\\n            DataLabelsSize = 14,\\r\\n            DataLabelsPosition = DataLabelsPosition.Middle\\r\\n        },\\r\\n        new StackedColumnSeries<int>\\r\\n        {\\r\\n            Values = new List<int> { -2, 6, 6, 5, 4, 3, -2 },\\r\\n            Stroke = null,\\r\\n            DataLabelsPaint = new SolidColorPaint(new SKColor(45, 45, 45)),\\r\\n            DataLabelsSize = 14,\\r\\n            DataLabelsPosition = DataLabelsPosition.Middle\\r\\n        }\\r\\n    };\";\n\n    [ObservableProperty]\n    string stackBarsXamlCode = \"<lvc:CartesianChart HeightRequest=\\\"300\\\" Series=\\\"{Binding StackedSeries}\\\" />\";\n\n    public ISeries[] StackedSeries { get; set; } =\n    {\n        new StackedColumnSeries<int>\n        {\n            Values = new List<int> { 3, 5, -3, 2, 5, -4, -2 },\n            Stroke = null,\n            DataLabelsPaint = new SolidColorPaint(new SKColor(45, 45, 45)),\n            DataLabelsSize = 14,\n            DataLabelsPosition = DataLabelsPosition.Middle\n        },\n        new StackedColumnSeries<int>\n        {\n            Values = new List<int> { 4, 2, -3, 2, 3, 4, -2 },\n            Stroke = null,\n            DataLabelsPaint = new SolidColorPaint(new SKColor(45, 45, 45)),\n            DataLabelsSize = 14,\n            DataLabelsPosition = DataLabelsPosition.Middle\n        },\n        new StackedColumnSeries<int>\n        {\n            Values = new List<int> { -2, 6, 6, 5, 4, 3, -2 },\n            Stroke = null,\n            DataLabelsPaint = new SolidColorPaint(new SKColor(45, 45, 45)),\n            DataLabelsSize = 14,\n            DataLabelsPosition = DataLabelsPosition.Middle\n        }\n    };\n    #endregion\n\n    #region [ Pie Chart ]\n\n    [ObservableProperty]\n    string pieChartTitle = \"Pie Chart\";\n\n    [ObservableProperty]\n    string pieChartXamlCode = @\"\n<Grid ColumnDefinitions=\"\"*,*,*\"\">\n    <lvc:PieChart\n        Title=\"\"{x:Binding PieChartVisualTitle}\"\"\n        HeightRequest=\"\"300\"\"\n        HorizontalOptions=\"\"Center\"\"\n        Series=\"\"{Binding PieSeries}\"\"\n        WidthRequest=\"\"300\"\" />\n    <lvc:PieChart\n        Title=\"\"{x:Binding DoughnutPieChartVisualTitle}\"\"\n        Grid.Column=\"\"1\"\"\n        HeightRequest=\"\"300\"\"\n        Series=\"\"{Binding PieSeries2}\"\"\n        WidthRequest=\"\"300\"\" />\n    <lvc:PieChart\n        Title=\"\"{x:Binding PushoutPieChartVisualTitle}\"\"\n        Grid.Column=\"\"2\"\"\n        HeightRequest=\"\"300\"\"\n        Series=\"\"{Binding PieSeries3}\"\"\n        WidthRequest=\"\"300\"\" />\n</Grid>\";\n\n    [ObservableProperty]\n    string pieChartCSharpCode = @\"\n// You can create pie series collections easily:\npublic IEnumerable<ISeries> PieSeries { get; set; } =\n    new[] { 2, 4, 1, 4, 3 }.AsPieSeries();\n\n// This collection allows customizing the series:\npublic IEnumerable<ISeries> PieSeries2 { get; set; } =\n    new[] { 2, 4, 1, 4, 3 }.AsPieSeries((value, series) =>\n    {\n        series.MaxRadialColumnWidth = 60;\n    });\n\n// Here's another pie series with a push-out feature:\npublic IEnumerable<ISeries> PieSeries3 { get; set; } =\n    new[] { 6, 5, 4, 3, 2 }.AsPieSeries((value, series) =>\n    {\n        // Pushes out the slice with the value of 6.\n        if (value == 6)\n        {\n            series.Pushout = 30;\n        }\n    });\n\n// Titles for the pie charts.\npublic LabelVisual PieChartVisualTitle { get; set; } =\n    new LabelVisual\n    {\n        Text = \"\"My pie chart title\"\",\n        TextSize = 25,\n        Padding = new LiveChartsCore.Drawing.Padding(15),\n        Paint = new SolidColorPaint(SKColors.DarkSlateGray)\n    };\n\npublic LabelVisual DoughnutPieChartVisualTitle { get; set; } =\n    new LabelVisual\n    {\n        Text = \"\"My doughnut chart title\"\",\n        TextSize = 25,\n        Padding = new LiveChartsCore.Drawing.Padding(15),\n        Paint = new SolidColorPaint(SKColors.DarkSlateGray)\n    };\n\npublic LabelVisual PushoutPieChartVisualTitle { get; set; } =\n    new LabelVisual\n    {\n        Text = \"\"My push-out style chart title\"\",\n        TextSize = 25,\n        Padding = new LiveChartsCore.Drawing.Padding(15),\n        Paint = new SolidColorPaint(SKColors.DarkSlateGray)\n    };\n\";\n\n    [ObservableProperty]\n    string pieChart4XamlCode = @\"\n<lvc:PieChart\n    Title=\"\"{x:Binding PieChartWithLegendVisualTitle}\"\"\n    HeightRequest=\"\"400\"\"\n    LegendPosition=\"\"Right\"\"\n    LegendTextPaint=\"\"{x:Binding LegendTextPaint}\"\"\n    Series=\"\"{x:Binding PieSeries4}\"\"\n    WidthRequest=\"\"400\"\" />\";\n\n    [ObservableProperty]\n    string pieChart4CSharpCode = @\"\n// Creating a new pie series collection with specific values and colors:\npublic IEnumerable<ISeries> PieSeries4 { get; set; } = new List<ISeries>\n{\n    new PieSeries<double>\n    {\n        Values = new List<double> { 8 },\n        Name = \"\"Android\"\",\n        Fill = new SolidColorPaint(SKColors.Green)\n    },\n    new PieSeries<double>\n    {\n        Values = new List<double> { 6 },\n        Name = \"\"IOS\"\",\n        Fill = new SolidColorPaint(SKColors.Red)\n    },\n    new PieSeries<double>\n    {\n        Values = new List<double> { 4 },\n        Name = \"\"Windows\"\",\n        Fill = new SolidColorPaint(SKColors.Blue)\n    }\n};\n\n// Title for the pie chart with a legend.\npublic LabelVisual PieChartWithLegendVisualTitle { get; set; } =\n    new LabelVisual\n    {\n        Text = \"\"Pie Chart With Legend\"\",\n        TextSize = 25,\n        Padding = new LiveChartsCore.Drawing.Padding(15),\n        Paint = new SolidColorPaint(SKColors.White)\n    };\n\";\n\n    // you can convert any array, list or IEnumerable<T> to a pie series collection:\n    public IEnumerable<ISeries> PieSeries { get; set; } =\n        new[] { 2, 4, 1, 4, 3 }.AsPieSeries();\n\n    // the expression above is equivalent to the next series collection:\n    public IEnumerable<ISeries> PieSeries2 { get; set; } =\n        new[] { 2, 4, 1, 4, 3 }.AsPieSeries((value, series) =>\n        {\n            series.MaxRadialColumnWidth = 60;\n        });\n\n    public IEnumerable<ISeries> PieSeries3 { get; set; } =\n    new[] { 6, 5, 4, 3, 2 }.AsPieSeries((value, series) =>\n    {\n        // pushes out the slice with the value of 6 to 30 pixels.\n        if (value != 6) return;\n\n        series.Pushout = 30;\n    });\n    public IEnumerable<ISeries> PieSeries4 { get; set; } = new List<ISeries>\n    {\n        new PieSeries<double>\n        {\n            Values = new List<double> { 8 },\n            Name = \"Android\",\n            Fill = new SolidColorPaint(SKColors.Green)\n        },\n        new PieSeries<double>\n        {\n            Values = new List<double> { 6 },\n            Name = \"IOS\",\n            Fill = new SolidColorPaint(SKColors.Red)\n        },\n        new PieSeries<double>\n        {\n            Values = new List<double> { 4 },\n            Name = \"Windows\",\n            Fill = new SolidColorPaint(SKColors.Blue)\n        }\n    };\n\n    public LabelVisual PieChartVisualTitle { get; set; } =\n        new LabelVisual\n        {\n            Text = \"My pie chart title\",\n            TextSize = 25,\n            Padding = new LiveChartsCore.Drawing.Padding(15),\n            Paint = new SolidColorPaint(SKColors.White)\n        };\n\n    public LabelVisual DoughnutPieChartVisualTitle { get; set; } =\n    new LabelVisual\n    {\n        Text = \"My doughnut chart title\",\n        TextSize = 25,\n        Padding = new LiveChartsCore.Drawing.Padding(15),\n        Paint = new SolidColorPaint(SKColors.White)\n    };\n    public LabelVisual PushoutPieChartVisualTitle { get; set; } =\n    new LabelVisual\n    {\n        Text = \"My push out style chart title\",\n        TextSize = 25,\n        Padding = new LiveChartsCore.Drawing.Padding(15),\n        Paint = new SolidColorPaint(SKColors.White)\n    };\n    public LabelVisual PieChartWithLegendVisualTitle { get; set; } =\n    new LabelVisual\n    {\n        Text = \"Pie Chart With Legend\",\n        TextSize = 25,\n        Padding = new LiveChartsCore.Drawing.Padding(15),\n        Paint = new SolidColorPaint(SKColors.White)\n    };\n    #endregion\n\n    #region [ Radial Area ]\n\n    [ObservableProperty]\n    string radialAreaTitle = \"Radial Area\";\n\n    public ISeries[] Series { get; set; } =\n    {\n        new PolarLineSeries<int>\n        {\n            Values = new[] { 7, 9, 2, 2, 9 },\n            LineSmoothness = 0,\n            GeometrySize= 0,\n            Name = \"C#\",\n            Fill = new SolidColorPaint(SKColors.Blue)\n        },\n        new PolarLineSeries<int>\n        {\n            Values = new[] { 5, 9, 8, 4, 3 },\n            LineSmoothness = 0,\n            GeometrySize = 0,\n            Name = \"Java\",\n            Fill = new SolidColorPaint(SKColors.Red)\n        }\n    };\n\n    public PolarAxis[] AngleAxes { get; set; } =\n    {\n        new PolarAxis\n        {\n            LabelsRotation = LiveCharts.TangentAngle,\n            Labels = new[] { \"Desktop\", \"Web\", \"Mobile\", \"AL/ML\", \"Game\" }\n        }\n    };\n    [ObservableProperty]\n    string radialAreaCSharpCode =\n    \"public ISeries[] Series { get; set; } =\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    new PolarLineSeries<int>\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        Values = new[] { 7, 5, 7, 5, 6 },\\r\\n\" +\n    \"        LineSmoothness = 0,\\r\\n\" +\n    \"        GeometrySize= 0,\\r\\n\" +\n    \"        Fill = new SolidColorPaint(SKColors.Blue.WithAlpha(90))\\r\\n\" +\n    \"    },\\r\\n\" +\n    \"    new PolarLineSeries<int>\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        Values = new[] { 2, 7, 5, 9, 7 },\\r\\n\" +\n    \"        LineSmoothness = 0,\\r\\n\" +\n    \"        GeometrySize = 0,\\r\\n\" +\n    \"        Fill = new SolidColorPaint(SKColors.Red.WithAlpha(90))\\r\\n\" +\n    \"    }\\r\\n\" +\n    \"};\\r\\n\\r\\n\" +\n    \"public PolarAxis[] AngleAxes { get; set; } =\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    new PolarAxis\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        LabelsRotation = LiveCharts.TangentAngle,\\r\\n\" +\n    \"        Labels = new[] { \\\"Desktop\\\", \\\"Web\\\", \\\"Mobile\\\", \\\"AL/ML\\\", \\\"Game\\\" }\\r\\n\" +\n    \"    }\\r\\n\" +\n    \"};\";\n\n    [ObservableProperty]\n    string radialAreaXamlCode =\n    \"<lvc:PolarChart\\r\\n\" +\n    \"    AngleAxes=\\\"{Binding AngleAxes}\\\"\\r\\n\" +\n    \"    HeightRequest=\\\"400\\\"\\r\\n\" +\n    \"    InitialRotation=\\\"-45\\\"\\r\\n\" +\n    \"    Series=\\\"{Binding Series}\\\" />\";\n\n    #endregion\n\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    #endregion\n\n    #region [ Methods ]\n\n    void InitRacingBars()\n    {\n\n        // generate some paints for each pilot:\n        var paints = Enumerable.Range(0, 7)\n            .Select(i => new SolidColorPaint(ColorPalletes.MaterialDesign500[i].AsSKColor()))\n            .ToArray();\n\n        // generate some data for each pilot:\n        _racingData = new PilotInfo[]\n        {\n            new(\"Tsunoda\",   500,  paints[0]),\n            new(\"Sainz\",     450,  paints[1]),\n            new(\"Riccardo\",  520,  paints[2]),\n            new(\"Bottas\",    550,  paints[3]),\n            new(\"Perez\",     660,  paints[4]),\n            new(\"Verstapen\", 920,  paints[5]),\n            new(\"Hamilton\",  1000, paints[6])\n        };\n\n        var rowSeries = new RowSeries<PilotInfo>\n        {\n            Values = _racingData.OrderBy(x => x.Value).ToArray(),\n            DataLabelsPaint = new SolidColorPaint(new SKColor(245, 245, 245)),\n            DataLabelsPosition = DataLabelsPosition.End,\n            DataLabelsTranslate = new(-1, 0),\n            DataLabelsFormatter = point => $\"{point.Model!.Name} {point.Coordinate.PrimaryValue}\",\n            MaxBarWidth = 50,\n            Padding = 10,\n        }.OnPointMeasured(point =>\n        {\n            // assign a different color to each point\n            if (point.Visual is null) return;\n            point.Visual.Fill = point.Model!.Paint;\n        });\n\n        RacingSeries = new[] { rowSeries };\n\n        StartRace().FireAndForget();\n    }\n\n    async Task StartRace()\n    {\n        await Task.Delay(1000);\n\n\n        while (IsReading)\n        {\n            // do a random change to the data\n            foreach (var item in _racingData)\n                item.Value += _r.Next(0, 100);\n\n            RacingSeries[0].Values =\n                _racingData.OrderBy(x => x.Value).ToArray();\n\n            await Task.Delay(100);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Controls/LiveCharts2/Models/PilotInfo.cs",
    "content": "﻿using LiveChartsCore.Defaults;\nusing LiveChartsCore.SkiaSharpView.Painting;\n\nnamespace MAUIsland.Core;\n\npublic class PilotInfo : ObservableValue\n{\n    public PilotInfo(string name, int value, SolidColorPaint paint)\n    {\n        Name = name;\n        Paint = paint;\n        // the ObservableValue.Value property is used by the chart\n        Value = value;\n    }\n\n    public string Name { get; set; }\n    public SolidColorPaint Paint { get; set; }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Controls/OverFlower/OverFlowerControlInfo.cs",
    "content": "namespace MAUIsland.Core;\nclass OverFlowerControlInfo : IGithubGalleryCardInfo\n{\n    public string RepositoryName => \"OverFlower\";\n    public string AuthorName => \"nor0x\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_24_regular\n    };\n    public string ControlName => \"OverFlower\";\n    public string ControlDetail => \"Simple control to display scrolling overflow content!\";\n    public string ControlRoute => \"MAUIsland.OverFlowerPage\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Community/Controls/OverFlower\";\n    public string DocumentUrl => \"https://github.com/nor0x/OverFlower\";  //SvnUrl\n    public string GroupName => ControlGroupInfo.GitHubCommunity;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => default;\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Controls/OverFlower/OverFlowerPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class OverFlowerPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public OverFlowerPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation;\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n    }\n    #endregion\n\n    #region [ Relay commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Helpers/OCR/OCRControlInfo.cs",
    "content": "namespace MAUIsland.Core;\nclass OCRControlInfo : IGithubGalleryCardInfo\n{\n    public string RepositoryName => \"ocr\";\n    public string AuthorName => \"kfrancis\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_tab_in_private_24_regular\n    };\n    public string ControlName => \"OCR\";\n    public string ControlDetail => \"OCR provides a plugin designed to facilitate Optical Character Recognition (OCR) using only platform APIs. This plugin is available for both Xamarin and MAUI (Multi-platform App UI), making it easier for developers to integrate OCR capabilities into their applications without relying on external dependencies like Tesseract.\";\n    public string ControlRoute => $\"MAUIsland.OCRPage\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Community/Helpers/OCR\";\n    public string DocumentUrl => \"https://github.com/kfrancis/ocr\"; //SvnUrl\n    public string GroupName => ControlGroupInfo.GitHubCommunity;\n    public GalleryCardType CardType => GalleryCardType.Helper;\n    public GalleryCardStatus CardStatus => GalleryCardStatus.NotCompleted;\n    public DateTime LastUpdate => default;\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Helpers/OCR/OCRPageViewModel.cs",
    "content": "using Plugin.Maui.OCR;\n\nnamespace MAUIsland.Core;\npublic partial class OCRPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ Fields ]\n\n    private readonly IFilePicker filePicker;\n    #endregion\n\n    #region [ CTor ]\n    public OCRPageViewModel(\n        IFilePicker filePicker,\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n        this.filePicker = filePicker;\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    string headerFeatures = \"Key features of the repository include:\";\n\n    [ObservableProperty]\n    List<string> features = new()\n    {\n        \"Platform Compatibility: The plugin supports iOS, Android, Windows, and macOS across both Xamarin and MAUI platforms, although some features are still a work in progress for certain platforms.\",\n        \"Ease of Use: It simplifies OCR integration by eliminating the need to deal with platform-specific intricacies and external libraries. Developers can use straightforward methods to process images and extract text.\",\n        \"Installation: The plugin can be easily installed via NuGet packages for both MAUI and Xamarin. Instructions for setup and initialization are provided in the repository.\",\n        \"Pattern Matching: The plugin includes advanced features like pattern matching, which can be used to recognize specific text patterns such as dates, phone numbers, or custom formats.\",\n        \"Permissions: Guidance on necessary permissions for iOS and Android is provided, ensuring smooth setup and execution of OCR functionalities.\"\n    };\n\n    [ObservableProperty]\n    string uploadAnImageHeader = \"Upload an image to extract text\";\n\n    [ObservableProperty]\n    ImageSource imageSourceSample = default!;\n\n    [ObservableProperty]\n    string extractedText = string.Empty;\n\n    [ObservableProperty]\n    string extractStatus = string.Empty;\n\n    [ObservableProperty]\n    bool isTryHard = false;\n\n    [ObservableProperty]\n    string tryHardTip = \"The tryhard boolean in OCR libraries, particularly those using Tesseract, is typically a parameter that influences the level of effort or accuracy applied during the text recognition process. When tryhard is set to true, the OCR engine might perform additional processing steps, such as multiple passes over the image, more extensive image preprocessing, or more aggressive error correction, in an attempt to improve the accuracy of the recognized text.\";\n\n    [ObservableProperty]\n    string installPluginHeader = \"Install Plugin\";\n\n    [ObservableProperty]\n    string mauiNugetLink = \"https://www.nuget.org/packages/Plugin.Maui.OCR/\";\n\n    [ObservableProperty]\n    string xamarinNugetLink = \"https://www.nuget.org/packages/Plugin.Xamarin.OCR/\";\n\n    [ObservableProperty]\n    string dotNetMauiInstallNugetCLICommand = \"dotnet add package Plugin.Maui.OCR\";\n\n    [ObservableProperty]\n    string xamarinInstallNugetCLICommand = \"dotnet add package Plugin.Xamarin.OCR\";\n\n    [ObservableProperty]\n    string mauiSetupAndUsageHeader = \"MAUI Setup and Usage\";\n\n    [ObservableProperty]\n    string mauiSetupAndUsage = \"For MAUI, to initialize make sure you use the MauiAppBuilder extension UseOcr() like so:\";\n\n    [ObservableProperty]\n    string mauiProgramSetupCSharpCode = \"public static class MauiProgram\\r\\n{\\r\\n\\tpublic static MauiApp CreateMauiApp()\\r\\n\\t{\\r\\n\\t\\tvar builder = MauiApp.CreateBuilder();\\r\\n\\t\\tbuilder\\r\\n\\t\\t\\t.UseMauiApp<App>()\\r\\n\\t\\t\\t.ConfigureFonts(fonts =>\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\tfonts.AddFont(\\\"OpenSans-Regular.ttf\\\", \\\"OpenSansRegular\\\");\\r\\n\\t\\t\\t\\tfonts.AddFont(\\\"OpenSans-Semibold.ttf\\\", \\\"OpenSansSemibold\\\");\\r\\n\\t\\t\\t}).\\r\\n\\t\\t\\tUseOcr();  // <-- add this line\\r\\n\\r\\n\\t\\treturn builder.Build();\\r\\n\\t}\\r\\n}\";\n\n    [ObservableProperty]\n    string mauiSetupAndUsage1 = \"And then you can just inject IOcrService into your classes and use it like so:\";\n\n    [ObservableProperty]\n    string mauiSetupAndUsageCSharpCode = \"/// <summary>\\r\\n/// Takes a photo and processes it using the OCR service.\\r\\n/// </summary>\\r\\n/// <param name=\\\"photo\\\">The photo to process.</param>\\r\\n/// <returns>The OCR result.</returns>\\r\\nprivate async Task<OcrResult> ProcessPhoto(FileResult photo)\\r\\n{\\r\\n    // Open a stream to the photo\\r\\n    using var sourceStream = await photo.OpenReadAsync();\\r\\n\\r\\n    // Create a byte array to hold the image data\\r\\n    var imageData = new byte[sourceStream.Length];\\r\\n\\r\\n    // Read the stream into the byte array\\r\\n    await sourceStream.ReadAsync(imageData);\\r\\n\\r\\n    // Process the image data using the OCR service\\r\\n    return await _ocr.RecognizeTextAsync(imageData);\\r\\n}\";\n\n    [ObservableProperty]\n    string permissionsHeader = \"Permissions\";\n\n    [ObservableProperty]\n    string permissions = \"Before you can start using Feature, you will need to request the proper permissions on each platform.\";\n\n    [ObservableProperty]\n    string permissions1 = \"IOS\";\n\n    [ObservableProperty]\n    string permissions2 = \"If you're handling camera, you'll need the usual permissions for that.\";\n\n    [ObservableProperty]\n    string permissions3 = \"Android\";\n\n    [ObservableProperty]\n    string permissions4 = \"If you're handling camera, you'll need the usual permissions for that. The only extra part you'll want in the AndroidManifest.xml is the following:\";\n\n    [ObservableProperty]\n    string permissionsXMLCode = \"<application ..>\\r\\n  <meta-data android:name=\\\"com.google.mlkit.vision.DEPENDENCIES\\\" android:value=\\\"ocr\\\" />\\r\\n</application>\";\n\n    [ObservableProperty]\n    string permissions5 = \"This will cause the model necessary to be installed when the application is installed.\";\n\n    [ObservableProperty]\n    string patternMatchingHeader = \"Pattern Matching\";\n\n    [ObservableProperty]\n    string patternMatching = \"One of the more common things I do with OCR is recognize a text pattern. For example, I might want to read a date, a phone number or an email address. This is where the OcrPatternConfig class comes in.\";\n\n    [ObservableProperty]\n    string patternMatching1 = \"Let's say you want to recognize an Ontario Health Card Number (HCN) in the text of your image. Numbers of those types have some specific qualities that make it easy to match.\";\n\n    [ObservableProperty]\n    List<string> patternMatchingList = new()\n    {\n        \"An Ontario HCN is 10 digits long.\",\n        \"The number must be Luhn valid (meaning it has a check digit and it's correct).\"\n    };\n\n    [ObservableProperty]\n    string patternMatching2 = \"To do this, you can create an OcrPatternConfig object like so:\";\n\n    [ObservableProperty]\n    string patternMatchinCSharpCode = \"bool IsValidLuhn(string number)\\r\\n{\\r\\n    // Convert the string to an array of digits\\r\\n    int[] digits = number.Select(d => int.Parse(d.ToString())).ToArray();\\r\\n    int checkDigit = 0;\\r\\n\\r\\n    // Luhn algorithm implementation\\r\\n    for (int i = digits.Length - 2; i >= 0; i--)\\r\\n    {\\r\\n        int currentDigit = digits[i];\\r\\n        if ((digits.Length - 2 - i) % 2 == 0) // check if it's an even index from the right\\r\\n        {\\r\\n            currentDigit *= 2;\\r\\n            if (currentDigit > 9)\\r\\n            {\\r\\n                currentDigit -= 9;\\r\\n            }\\r\\n        }\\r\\n        checkDigit += currentDigit;\\r\\n    }\\r\\n\\r\\n    return (10 - (checkDigit % 10)) % 10 == digits.Last();\\r\\n}\\r\\n\\r\\nvar ohipPattern = new OcrPatternConfig(@\\\"\\\\d{10}\\\", IsLuhnValid);\\r\\n\\r\\nvar options = new OcrOptions.Builder().SetTryHard(true).SetPatternConfig(ohipPattern).Build();\\r\\n\\r\\nvar result = await OcrPlugin.Default.RecognizeTextAsync(imageData, options);\\r\\n\\r\\nvar patientHcn = result.MatchedValues.FirstOrDefault(); // This will be the HCN (and only the HCN) if it's found\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n    }\n    #endregion\n\n    #region [ Relay commands ]\n\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n\n    [RelayCommand]\n    async Task CopyToClipboardAsync(string text)\n    {\n        await Clipboard.Default.SetTextAsync(text);\n        //await AppNavigator.ShowSnackbarAsync(\"Code copied to clipboard\", null, null);\n    }\n\n\n    [RelayCommand]\n    async Task OpenFileAsync()\n    {\n        var pickedImage = await filePicker.OpenMediaPickerAsync();\n\n        var imagefile = await filePicker.UploadImageFile(pickedImage);\n\n        if (imagefile is null || imagefile.byteBase64 is null)\n            return;\n\n        ImageSourceSample = ImageSource.FromStream(() =>\n            filePicker.ByteArrayToStream(filePicker.StringToByteBase64(imagefile.byteBase64))\n        );\n\n        await ExtractTextAsync(imagefile, IsTryHard);\n    }\n    #endregion\n\n    #region [ Methods - Private ]\n\n    async Task ExtractTextAsync(ImageFile imageFile, bool isTryHard = false)\n    {\n        ExtractedText = string.Empty;\n        byte[] imageBytes = Convert.FromBase64String(imageFile.byteBase64);\n        var ocrResult = await OcrPlugin.Default.RecognizeTextAsync(imageBytes, isTryHard);\n\n        if (!ocrResult.Success)\n        {\n            ExtractStatus = \"Extraction is unsuccess\";\n            return;\n        }\n\n        ExtractedText = ocrResult.AllText;\n        ExtractStatus = string.Empty;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Helpers/SQLite-net/SQLiteNETControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\npublic class SQLiteNETControlInfo : IGithubGalleryCardInfo\n{\n    public string RepositoryName => \"sqlite-net\";\n    public string AuthorName => \"praeclarum\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Glyph = FluentUIIcon.Ic_fluent_database_search_24_regular\n    };\n    public string ControlName => \"sqlite-net\";\n    public string ControlDetail => \"SQLite-net is an open source, minimal library to allow .NET, .NET Core, and Mono applications to store data in SQLite 3 databases. It was first designed to work with Xamarin.iOS, but has since grown up to work on all the platforms (Xamarin.*, .NET, UWP, Azure, etc.).\";\n    public string ControlRoute => \"MAUIsland.SQLiteNETPage\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Community/Helpers/SQLite-net\";\n    public string DocumentUrl => \"https://github.com/praeclarum/sqlite-net\";\n    public string GroupName => ControlGroupInfo.GitHubCommunity;\n    public GalleryCardType CardType => GalleryCardType.Helper;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => default;\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Helpers/SQLite-net/SQLiteNETPageViewModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class SQLiteNETPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public SQLiteNETPageViewModel(\n    IAppNavigator appNavigator\n) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation;\n\n    [ObservableProperty]\n    string intro = \"SQLite-net is an open source, minimal library to allow .NET, .NET Core, and Mono applications to store data in SQLite 3 databases. It was first designed to work with Xamarin.iOS, but has since grown up to work on all the platforms (Xamarin.*, .NET, UWP, Azure, etc.).\";\n\n    [ObservableProperty]\n    string headerFeatures = \"SQLite-net was designed as a quick and convenient database layer. Its design follows from these goals:\";\n\n    [ObservableProperty]\n    string[] features = new string[]\n    {\n        \"Very easy to integrate with existing projects and runs on all the .NET platforms.\",\n        \"Thin wrapper over SQLite that is fast and efficient. (This library should not be the performance bottleneck of your queries.)\",\n        \"Very simple methods for executing CRUD operations and queries safely (using parameters) and for retrieving the results of those query in a strongly typed fashion.\",\n        \"Works with your data model without forcing you to change your classes. (Contains a small reflection-driven ORM layer.)\",\n    };\n\n    [ObservableProperty]\n    string headerNuget = \"NuGet Installation\";\n\n    [ObservableProperty]\n    string nuget = \"Install-Package sqlite-net-pcl\";\n\n    [ObservableProperty]\n    string nugetImportant = \"You will need to add the NuGet package to both your .NET Standard library project and your platform-dependent app project.\";\n\n    [ObservableProperty]\n    string headerExample = \"Example\";\n\n    [ObservableProperty]\n    string example = \"The library contains simple attributes that you can use to control the construction of tables. In a simple stock program, you might use:\";\n\n    [ObservableProperty]\n    string code = @\"\npublic class Stock\n{\n    [PrimaryKey, AutoIncrement]\n    public int Id { get; set; }\n    public string Symbol { get; set; }\n}\n\npublic class Valuation\n{\n    [PrimaryKey, AutoIncrement]\n    public int Id { get; set; }\n    [Indexed]\n    public int StockId { get; set; }\n    public DateTime Time { get; set; }\n    public decimal Price { get; set; }\n    [Ignore]\n    public string IgnoreField { get; set; }\n}\";\n\n    [ObservableProperty]\n    string example2 = \"Once you've defined the objects in your model you have a choice of APIs. You can use the \\\"synchronous API\\\" where calls block one at a time, or you can use the \\\"asynchronous API\\\" where calls do not block. You may care to use the asynchronous API for mobile applications in order to increase responsiveness.\\r\\n\\r\\nBoth APIs are explained in the two sections below.\";\n\n    [ObservableProperty]\n    string headerSynchronous = \"Synchronous API\";\n\n    [ObservableProperty]\n    string headerAsynchronous = \"Asynchronous API\";\n\n    [ObservableProperty]\n    string headerManualSQL = \"Manual SQL\";\n\n    [ObservableProperty]\n    string headerSQLCipher = \"Using SQLCipher\";\n\n    [ObservableProperty]\n    string synchronous = \"Once you have defined your entity, you can automatically generate tables in your database by calling CreateTable:\";\n\n    [ObservableProperty]\n    string asynchronous = \"The asynchronous library uses the Task Parallel Library (TPL). As such, normal use of Task objects, and the async and await keywords will work for you.\\r\\n\\r\\nOnce you have defined your entity, you can automatically generate tables by calling CreateTableAsync:\";\n\n    [ObservableProperty]\n    string asynchronous1 = \"You can insert rows in the database using Insert. If the table contains an auto-incremented primary key, then the value for that key will be available to you after the insert:\";\n\n    [ObservableProperty]\n    string asynchronous2 = \"Similar methods exist for UpdateAsync and DeleteAsync.\\r\\n\\r\\nQuerying for data is most straightforwardly done using the Table method. This will return an AsyncTableQuery instance back, whereupon you can add predicates for constraining via WHERE clauses and/or adding ORDER BY. The database is not physically touched until one of the special retrieval methods - ToListAsync, FirstAsync, or FirstOrDefaultAsync - is called.\";\n\n    [ObservableProperty]\n    string asynchronous3 = \"There are a number of low-level methods available. You can also query the database directly via the QueryAsync method. Over and above the change operations provided by InsertAsync etc you can issue ExecuteAsync methods to change sets of data directly within the database.\\r\\n\\r\\nAnother helpful method is ExecuteScalarAsync. This allows you to return a scalar value from the database easily:\";\n\n    [ObservableProperty]\n    string manualSQL = \"sqlite-net is normally used as a light ORM (object-relational-mapper) using the methods CreateTable and Table. However, you can also use it as a convenient way to manually execute queries.\";\n\n    [ObservableProperty]\n    string manualSQL1 = \"Here is an example of creating a table, inserting into it (with a parameterized command), and querying it without using ORM features.\";\n\n    [ObservableProperty]\n    string sqlCipher = \"You can use an encrypted database by using the\";\n\n    [ObservableProperty]\n    string sqlCipherLink = \"https://www.nuget.org/packages/sqlite-net-sqlcipher\";\n\n    [ObservableProperty]\n    string optionSQLCipher = \"The database key is set in the SqliteConnectionString passed to the connection constructor:\";\n\n    [ObservableProperty]\n    string option2SQLCipher = \"If you need set pragmas to control the encryption, actions can be passed to the connection string:\";\n\n    [ObservableProperty]\n    string codeSynchronous = @\"\n// Get an absolute path to the database file\nvar databasePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), \"\"MyData.db\"\");\n\nvar db = new SQLiteConnection(databasePath);\ndb.CreateTable<Stock>();\ndb.CreateTable<Valuation>();\";\n\n    [ObservableProperty]\n    string codeAsynchronous = @\"\n// Get an absolute path to the database file\nvar databasePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), \"\"MyData.db\"\");\n\nvar db = new SQLiteAsyncConnection(databasePath);\n\nawait db.CreateTableAsync<Stock>();\n\nConsole.WriteLine(\"\"Table created!\"\");\";\n\n    [ObservableProperty]\n    string codeAsynchronous1 = @\"\nvar stock = new Stock()\n{\n    Symbol = \"\"AAPL\"\"\n};\n\nawait db.InsertAsync(stock);\n\nConsole.WriteLine(\"\"Auto stock id: {0}\"\", stock.Id);\n\";\n\n    [ObservableProperty]\n    string codeAsynchronous2 = @\"\nvar query = db.Table<Stock>().Where(s => s.Symbol.StartsWith(\"\"A\"\"));\n\nvar result = await query.ToListAsync();\n\nforeach (var s in result)\n    Console.WriteLine(\"\"Stock: \"\" + s.Symbol);\n\";\n\n    [ObservableProperty]\n    string codeAsynchronous3 = @\"\nvar count = await db.ExecuteScalarAsync<int>(\"\"select count(*) from Stock\"\");\n\nConsole.WriteLine(string.Format(\"\"Found '{0}' stock items.\"\", count));\n\";\n\n    [ObservableProperty]\n    string codeManualSQL = @\"\ndb.Execute(\"\"create table Stock(Symbol varchar(100) not null)\"\");\ndb.Execute(\"\"insert into Stock(Symbol) values (?)\"\", \"\"MSFT\"\");\nvar stocks = db.Query<Stock>(\"\"select * from Stock\"\");\n\";\n\n    [ObservableProperty]\n    string synchronousInsert = \"You can insert rows in the database using Insert. If the table contains an auto-incremented primary key, then the value for that key will be available to you after the insert:\";\n\n    [ObservableProperty]\n    string codeSynchronousInsert = @\"\npublic static void AddStock(SQLiteConnection db, string symbol) {\n    var stock = new Stock() {\n        Symbol = symbol\n    };\n    db.Insert(stock);\n    Console.WriteLine(\"\"{0} == {1}\"\", stock.Symbol, stock.Id);\n}\";\n\n    [ObservableProperty]\n    string codeSQLCipher = \"var options = new SQLiteConnectionString(databasePath, true,\\r\\n\\tkey: \\\"password\\\");\\r\\nvar encryptedDb = new SQLiteAsyncConnection(options);\";\n\n    [ObservableProperty]\n    string code2SQLCipher = \"var options2 = new SQLiteConnectionString (databasePath, true,\\r\\n\\tkey: \\\"password\\\",\\r\\n\\tpreKeyAction: db => db.Execute(\\\"PRAGMA cipher_default_use_hmac = OFF;\\\"),\\r\\n\\tpostKeyAction: db => db.Execute (\\\"PRAGMA kdf_iter = 128000;\\\"));\\r\\nvar encryptedDb2 = new SQLiteAsyncConnection (options2);\";\n\n    [ObservableProperty]\n    string synchronousUpdateAndDelete = \"Similar methods exist for Update and Delete.\";\n\n    [ObservableProperty]\n    string synchronousQuery = \"The most straightforward way to query for data is using the Table method. This can take predicates for constraining via WHERE clauses and/or adding ORDER BY clauses:\";\n\n    [ObservableProperty]\n    string codeSynchronousQuery = @\"\nvar query = db.Table<Stock>().Where(s => s.Symbol.StartsWith(\"\"A\"\"));\n\nvar result = await query.ToListAsync();\n\nforeach (var s in result)\n    Console.WriteLine(\"\"Stock: \"\" + s.Symbol);\";\n\n    [ObservableProperty]\n    string synchronousLowLevelQuery = \"You can also query the database at a low-level using the Query method:\";\n\n    [ObservableProperty]\n    string codeSynchronousLowLevelQuery = \"public static IEnumerable<Valuation> QueryValuations (SQLiteConnection db, Stock stock) {\\r\\n\\treturn db.Query<Valuation> (\\\"select * from Valuation where StockId = ?\\\", stock.Id);\\r\\n}\";\n\n    [ObservableProperty]\n    string genericParameterQuery = \"The generic parameter to the Query method specifies the type of object to create for each row. It can be one of your table classes, or any other class whose public properties match the column returned by the query. For instance, we could rewrite the above query as:\";\n\n    [ObservableProperty]\n    string executeMethod = \"You can perform low-level updates of the database using the Execute method.\";\n\n    [ObservableProperty]\n    string codeGenericParameterQuery = \"public class Val\\r\\n{\\r\\n\\tpublic decimal Money { get; set; }\\r\\n\\tpublic DateTime Date { get; set; }\\r\\n}\\r\\n\\r\\npublic static IEnumerable<Val> QueryVals (SQLiteConnection db, Stock stock) {\\r\\n\\treturn db.Query<Val> (\\\"select \\\\\\\"Price\\\\\\\" as \\\\\\\"Money\\\\\\\", \\\\\\\"Time\\\\\\\" as \\\\\\\"Date\\\\\\\" from Valuation where StockId = ?\\\", stock.Id);\\r\\n}\";\n\n    [ObservableProperty]\n    string lowLevelMethods = \"There are a number of low-level methods available. You can also query the database directly via the QueryAsync method. Over and above the change operations provided by InsertAsync etc you can issue ExecuteAsync methods to change sets of data directly within the database.\";\n\n    [ObservableProperty]\n    string executeScalarAsync = \"Another helpful method is ExecuteScalarAsync. This allows you to return a scalar value from the database easily:\";\n\n    [ObservableProperty]\n    string codeExecuteScalarAsync = \"var count = await db.ExecuteScalarAsync<int>(\\\"select count(*) from Stock\\\");\\r\\n\\r\\nConsole.WriteLine(string.Format(\\\"Found '{0}' stock items.\\\", count));\";\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task CopyToClipboardAsync(string text)\n    {\n        await Clipboard.Default.SetTextAsync(text);\n        await AppNavigator.ShowSnackbarAsync(\"Code copied to clipboard\", null, null);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Helpers/ZXingNetMaui/ZXingNetMauiControlInfo.cs",
    "content": "namespace MAUIsland.Core;\nclass ZXingNetMauIGalleryCardInfo : IGithubGalleryCardInfo\n{\n    public string RepositoryName => \"ZXing.Net.Maui\";\n    public string AuthorName => \"Redth\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_barcode_scanner_24_regular\n    };\n    public string ControlName => \"ZXing.Net.Maui\";\n    public string ControlDetail => \"The successor to ZXing.Net.Mobile is a C#/.NET library based on the open source Barcode Library: ZXing (Zebra Crossing), using the ZXing.Net Port. It works with Xamarin.iOS, Xamarin.Android, Tizen, and UWP. The goal of ZXing.Net.Mobile is to make scanning barcodes as effortless and painless as possible in your own applications.\";\n    public string ControlRoute => \"MAUIsland.ZXingNetMauiPage\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Community/Helpers/ZXingNetMaui\";\n    public string DocumentUrl => \"https://github.com/Redth/ZXing.Net.Maui\";  //SvnUrl\n    public string GroupName => ControlGroupInfo.GitHubCommunity;\n    public GalleryCardType CardType => GalleryCardType.Helper;\n    public GalleryCardStatus CardStatus => GalleryCardStatus.Completed;\n    public DateTime LastUpdate => default;\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Community/Helpers/ZXingNetMaui/ZXingNetMauiPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class ZXingNetMauiPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public ZXingNetMauiPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation;\n\n    [ObservableProperty]\n    string packageReference = \"<PackageReference Include=\\\"ZXing.Net.Maui.Controls\\\" Version=\\\"0.4.0\\\" />\";\n\n    [ObservableProperty]\n    string dotnetCLI = \"dotnet add package ZXing.Net.Maui.Controls --version 0.4.0\";\n\n    [ObservableProperty]\n    string serviceRegisterCode = \"// Add the using to the top\\r\\nusing ZXing.Net.Maui;\\r\\n\\r\\n// ... other code \\r\\n\\r\\npublic static MauiApp Create()\\r\\n{\\r\\n\\tvar builder = MauiApp.CreateBuilder();\\r\\n\\r\\n\\tbuilder\\r\\n\\t\\t.UseMauiApp<App>()\\r\\n\\t\\t.UseBarcodeReader(); // Make sure to add this line\\r\\n\\r\\n\\treturn builder.Build();\\r\\n}\";\n\n    [ObservableProperty]\n    string androidManifest = \"<uses-permission android:name=\\\"android.permission.CAMERA\\\" />\";\n\n    [ObservableProperty]\n    string iosInfoPlist = \"<key>NSCameraUsageDescription</key>\\r\\n<string>This app uses barcode scanning to...</string>\";\n\n    [ObservableProperty]\n    string xamlNameSpace = \"xmlns:zxing=\\\"clr-namespace:ZXing.Net.Maui.Controls;assembly=ZXing.Net.MAUI.Controls\\\"\";\n\n    [ObservableProperty]\n    string declareControlCode = \"<zxing:CameraBarcodeReaderView\\r\\n  x:Name=\\\"cameraBarcodeReaderView\\\"\\r\\n  BarcodesDetected=\\\"BarcodesDetected\\\" />\";\n\n    [ObservableProperty]\n    string configReaderOptions = \"cameraBarcodeReaderView.Options = new BarcodeReaderOptions\\r\\n{\\r\\n  Formats = BarcodeFormats.OneDimensional,\\r\\n  AutoRotate = true,\\r\\n  Multiple = true\\r\\n};\";\n\n    [ObservableProperty]\n    string toggleTorch = \"cameraBarcodeReaderView.IsTorchOn = !cameraBarcodeReaderView.IsTorchOn;\";\n\n    [ObservableProperty]\n    string flipBetweenRearFrontCamera = \"cameraBarcodeReaderView.CameraLocation\\r\\n  = cameraBarcodeReaderView.CameraLocation == CameraLocation.Rear ? CameraLocation.Front : CameraLocation.Rear;\";\n\n    [ObservableProperty]\n    string detectBarCode = \"protected void BarcodesDetected(object sender, BarcodeDetectionEventArgs e)\\r\\n{\\r\\n  foreach (var barcode in e.Results)\\r\\n    Console.WriteLine($\\\"Barcodes: {barcode.Format} -> {barcode.Value}\\\");\\r\\n}\";\n\n    [ObservableProperty]\n    string barCodeGeneratorView = \"<zxing:BarcodeGeneratorView\\r\\n  HeightRequest=\\\"100\\\"\\r\\n  WidthRequest=\\\"100\\\"\\r\\n  ForegroundColor=\\\"DarkBlue\\\"\\r\\n  Value=\\\"https://dotnet.microsoft.com\\\"\\r\\n  Format=\\\"QrCode\\\"\\r\\n  Margin=\\\"3\\\" />\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n    }\n    #endregion\n\n    #region [ Relay commands ]\n\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialButton/MaterialButtonControlInfo.cs",
    "content": "namespace MAUIsland.Core;\nclass MaterialButtonControlInfo : IMaterialUIGalleryCardInfo\n{\n    public string ControlName => nameof(Material.Components.Maui.Button);\n    public string ControlRoute => \"MAUIsland.MaterialButtonPage\";\n    public List<PlatformInfo> SupportedPlatformsInfo => new() { new() { Id = \"1\", Name = \"Android\", Logo = \"androidlogo.png\" },\n                                                                new() { Id = \"2\", Name = \"IOS\", Logo = \"ioslogo.png\" },\n                                                                new() { Id = \"3\", Name = \"Windows\", Logo = \"windowslogo.png\"} };\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_add_circle_24_regular\n    };\n    public string ControlDetail => \"Buttons allow users to take actions, and make choices, with a single tap.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialButton\";\n    public string DocumentUrl => $\"https://mdc-maui.github.io/button\";\n    public string GroupName => ControlGroupInfo.MaterialComponent;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n\n    public string MaterialIcon => IconPacks.IconKind.Material.Add;\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialButton/MaterialButtonPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class MaterialButtonPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public MaterialButtonPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    List<MaterialComponentProperty> properties = default!;\n\n    [ObservableProperty]\n    List<MaterialComponentEvent> events = default!;\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    string buttonXamlCode = \"<mdc:Button Style=\\\"{DynamicResource ElevatedButtonStyle}\\\" Text=\\\"Elevated\\\" />\\r\\n<mdc:Button Style=\\\"{DynamicResource FilledButtonStyle}\\\" Text=\\\"Filled\\\" />\\r\\n<mdc:Button Style=\\\"{DynamicResource FilledTonalButtonStyle}\\\" Text=\\\"FilledTonal\\\" />\\r\\n<mdc:Button Style=\\\"{DynamicResource OutlinedButtonStyle}\\\" Text=\\\"Outlined\\\" />\\r\\n<mdc:Button Style=\\\"{StaticResource TextButtonStyle}\\\" Text=\\\"Text\\\" />\\r\\n\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n        Properties = new List<MaterialComponentProperty>()\n        {\n            new(){ Name = \"Text\", DataType = \"string\", DefaultValue = \"Empty\" },\n            new(){ Name = \"IconData\", DataType = \"string\", DefaultValue = \"Empty\" },\n            new(){ Name = \"BackgroundColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"FontColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"FontSize\", DataType = \"float\", DefaultValue = \"14\" },\n            new(){ Name = \"FontFamily\", DataType = \"string\", DefaultValue = string.Empty },\n            new(){ Name = \"FontWeight\", DataType = \"FontWeight\", DefaultValue = \"Regular\" },\n            new(){ Name = \"FontIsItalic\", DataType = \"bool\", DefaultValue = \"false\" },\n            new(){ Name = \"Shape\", DataType = \"Shape\", DefaultValue = \"style\" },\n            new(){ Name = \"Elevation\", DataType = \"Elevation\", DefaultValue = \"14\" },\n            new(){ Name = \"OutlineWidth\", DataType = \"int\", DefaultValue = \"style\" },\n            new(){ Name = \"OutlineColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"StateLayerColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"RippleDuration\", DataType = \"float\", DefaultValue = \"0.5\" },\n            new(){ Name = \"RippleEasing\", DataType = \"Easing\", DefaultValue = \"SinInOut\" },\n            new(){ Name = \"Style\", DataType = \"Style\", DefaultValue = \"Filled\" },\n            new(){ Name = \"Command\", DataType = \"ICommand\", DefaultValue = string.Empty },\n            new(){ Name = \"CommandParameter\", DataType = \"object\", DefaultValue = string.Empty },\n        };\n\n        Events = new List<MaterialComponentEvent>()\n        {\n            new() { Name = \"Clicked\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"Pressed\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"Released\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"LongPressed\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"RightClicked (Desktop only)\", DataType= \"EventHandler<TouchEventArgs>\"}\n        };\n    }\n\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialChip/MaterialChipControlInfo.cs",
    "content": "using Material.Components.Maui;\n\nnamespace MAUIsland.Core;\npublic class MaterialChipControlInfo : IMaterialUIGalleryCardInfo\n{\n    public string ControlName => nameof(Chip);\n    public string ControlRoute => \"MAUIsland.MaterialChipPage\";\n    public List<PlatformInfo> SupportedPlatformsInfo => new() { new() { Id = \"1\", Name = \"Android\", Logo = \"androidlogo.png\" },\n                                                                new() { Id = \"2\", Name = \"IOS\", Logo = \"ioslogo.png\" },\n                                                                new() { Id = \"3\", Name = \"Windows\", Logo = \"windowslogo.png\"} };\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_oval_24_regular\n    };\n    public string ControlDetail => \"Chips are compact elements that represent an input, attribute, or action.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialChip\";\n    public string DocumentUrl => $\"https://mdc-maui.github.io/chip\";\n    public string GroupName => ControlGroupInfo.MaterialComponent;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n\n    public string MaterialIcon => IconPacks.IconKind.Material.Label;\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialChip/MaterialChipPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class MaterialChipPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public MaterialChipPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    string chipXamlCode = \"<mdc:Chip Text=\\\"chip\\\" Style=\\\"{DynamicResource AssistChipStyle}\\\" />\\r\\n<mdc:Chip Text=\\\"chip\\\" Style=\\\"{DynamicResource AssistElevatedChipStyle}\\\" />\\r\\n<mdc:Chip Text=\\\"chip\\\" Style=\\\"{DynamicResource FilterChipStyle}\\\" />\\r\\n<mdc:Chip Text=\\\"chip\\\" Style=\\\"{DynamicResource FilterElevatedChipStyle}\\\" />\\r\\n<mdc:Chip Text=\\\"chip\\\" Style=\\\"{DynamicResource InputChipStyle}\\\" />\\r\\n<mdc:Chip Text=\\\"chip\\\" Style=\\\"{DynamicResource SuggestionChipStyle}\\\" />\\r\\n<mdc:Chip Text=\\\"chip\\\" Style=\\\"{DynamicResource SuggestionElevatedChipStyle}\\\" />\\r\\n\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialComboBox/MaterialComboBoxControlInfo.cs",
    "content": "using Material.Components.Maui;\n\nnamespace MAUIsland.Core;\nclass MaterialComboBoxControlInfo : IMaterialUIGalleryCardInfo\n{\n    public string ControlName => nameof(ComboBox);\n    public string ControlRoute => \"MAUIsland.MaterialComboBoxPage\";\n    public List<PlatformInfo> SupportedPlatformsInfo => new() { new() { Id = \"1\", Name = \"Android\", Logo = \"androidlogo.png\" },\n                                                                new() { Id = \"2\", Name = \"IOS\", Logo = \"ioslogo.png\" },\n                                                                new() { Id = \"3\", Name = \"Windows\", Logo = \"windowslogo.png\"} };\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_caret_down_24_regular\n    };\n    public string ControlDetail => \"ComboBox displays a short list of items, from which the user can select an item.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialComboBox\";\n    public string DocumentUrl => $\"https://mdc-maui.github.io/combo-box\";\n    public string GroupName => ControlGroupInfo.MaterialComponent;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n\n    public string MaterialIcon => IconPacks.IconKind.Material.ArrowDropDown;\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialComboBox/MaterialComboBoxPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class MaterialComboBoxPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public MaterialComboBoxPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n\n    [ObservableProperty]\n    List<MaterialComponentProperty> properties = default!;\n\n    [ObservableProperty]\n    List<MaterialComponentEvent> events = default!;\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    string comboBoxXamlCode = \"<mdc:ComboBox Style=\\\"{DynamicResource FilledComboBoxStyle}\\\">\\r\\n\\t<mdc:ComboBoxItem Text=\\\"item 1\\\" />\\r\\n\\t<mdc:ComboBoxItem Text=\\\"item 2\\\" />\\r\\n</mdc:ComboBox>\\r\\n<mdc:ComboBox Style=\\\"{DynamicResource OutlinedComboBoxStyle}\\\">\\r\\n\\t<mdc:ComboBoxItem Text=\\\"item 1\\\" />\\r\\n\\t<mdc:ComboBoxItem Text=\\\"item 2\\\" />\\r\\n</mdc:ComboBox>\\r\\n\";\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n        Properties = new List<MaterialComponentProperty>()\n        {\n            new(){ Name = \"Items\", DataType = \"ObservableCollection<MenuItem>\", DefaultValue = string.Empty },\n            new(){ Name = \"ItemsSource\", DataType = \"IList\", DefaultValue = string.Empty },\n            new(){ Name = \"SelectedIndex\", DataType = \"int\", DefaultValue = \"-1\" },\n            new(){ Name = \"SelectedItem\", DataType = \"MenuItem\", DefaultValue = string.Empty },\n            new(){ Name = \"LabelText\", DataType = \"string\", DefaultValue = \"Label text\" },\n            new(){ Name = \"LabelFontColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"ActiveIndicatorHeight\", DataType = \"int\", DefaultValue = \"style\" },\n            new(){ Name = \"ActiveIndicatorColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"BackgroundColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"IFontColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"FontFamily\", DataType = \"string\", DefaultValue = string.Empty },\n            new(){ Name = \"FontSize\", DataType = \"float\", DefaultValue = \"14\" },\n            new(){ Name = \"FontWeight\", DataType = \"Color\", DefaultValue = \"400\" },\n            new(){ Name = \"FontIsItalic\", DataType = \"bool\", DefaultValue = \"false\" },\n            new(){ Name = \"OutlineWidth\", DataType = \"int\", DefaultValue = \"style\" },\n            new(){ Name = \"OutlineColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"StateLayerColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"RippleDuration\", DataType = \"int\", DefaultValue = \"0.5\" },\n            new(){ Name = \"RippleEasing\", DataType = \"Easing\", DefaultValue = \"SinInOut\" },\n            new(){ Name = \"ContextMenu\", DataType = \"ContextMenu\", DefaultValue = string.Empty },\n            new(){ Name = \"Style\", DataType = \"Style\", DefaultValue = \"Filled\" },\n            new(){ Name = \"Command\", DataType = \"ICommand\", DefaultValue = string.Empty },\n            new(){ Name = \"CommandParameter\", DataType = \"object\", DefaultValue = string.Empty },\n        };\n\n        Events = new List<MaterialComponentEvent>()\n        {\n            new() { Name = \"SelectedChanged\", DataType = \"EventHandler<SelectedItemChangedEventArgs>\" },\n            new() { Name = \"Clicked\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"Pressed\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"Released\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"LongPressed\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"RightClicked (Desktop only)\", DataType= \"EventHandler<TouchEventArgs>\"}\n        };\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialContextMenu/MaterialContextMenuControlInfo.cs",
    "content": "using Material.Components.Maui;\n\nnamespace MAUIsland.Core;\npublic class MaterialContextMenuControlInfo : IMaterialUIGalleryCardInfo\n{\n    public string ControlName => nameof(ContextMenu);\n    public string ControlRoute => \"MAUIsland.MaterialContextMenuPage\";\n    public List<PlatformInfo> SupportedPlatformsInfo => new() { new() { Id = \"1\", Name = \"Android\", Logo = \"androidlogo.png\" },\n                                                                new() { Id = \"2\", Name = \"IOS\", Logo = \"ioslogo.png\" },\n                                                                new() { Id = \"3\", Name = \"Windows\", Logo = \"windowslogo.png\"} };\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_list_24_regular\n    };\n    public string ControlDetail => \"ContextMenu display a list of choices on a temporary surface, It can be included in the component that has the touch event.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialContextMenu\";\n    public string DocumentUrl => $\"https://mdc-maui.github.io/context-menu\";\n    public string GroupName => ControlGroupInfo.MaterialComponent;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n\n    public string MaterialIcon => IconPacks.IconKind.Material.List;\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialContextMenu/MaterialContextMenuPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class MaterialContextMenuPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public MaterialContextMenuPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    List<MaterialComponentProperty> properties = default!;\n\n    [ObservableProperty]\n    List<MaterialComponentEvent> events = default!;\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    string contextMenuXamlCode = \"<mdc:ContextMenu>\\r\\n\\t<mdc:ContextMenu.Items>\\r\\n\\t\\t<mdc:ContextMenuFlyoutItem Text=\\\"Item 1\\\" />\\r\\n\\t\\t<mdc:ContextMenuFlyoutItem Text=\\\"Item 2\\\" />\\r\\n\\t\\t<mdc:ContextMenuFlyoutItem Text=\\\"Item 3\\\" />\\r\\n\\t</mdc:ContextMenu.Items>\\r\\n</mdc:ContextMenu>\\r\\n\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n        Properties = new List<MaterialComponentProperty>()\n        {\n            new(){ Name = \"Items\", DataType = \"ObservableCollection<MenuItem>\", DefaultValue = string.Empty },\n            new(){ Name = \"ItemsSource\", DataType = \"IList\", DefaultValue = string.Empty },\n            new(){ Name = \"Result\", DataType = \"object\", DefaultValue = string.Empty },\n            new(){ Name = \"BackgroundColor\", DataType = \"Color\", DefaultValue = \"SurfaceContainerColor\" },\n            new(){ Name = \"Shape\", DataType = \"Shape\", DefaultValue = \"4\" },\n            new(){ Name = \"Elevation\", DataType = \"Elevation\", DefaultValue = \"Level2\" },\n        };\n\n        Events = new List<MaterialComponentEvent>()\n        {\n            new() { Name = \"Closed\", DataType= \"EventHandler<object>\"}\n        };\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialFAB/MaterialFABControlInfo.cs",
    "content": "using Material.Components.Maui;\n\nnamespace MAUIsland.Core;\npublic class MaterialFABControlInfo : IMaterialUIGalleryCardInfo\n{\n    public string ControlName => nameof(FAB);\n    public string ControlRoute => \"MAUIsland.MaterialFABPage\";\n    public List<PlatformInfo> SupportedPlatformsInfo => new() { new() { Id = \"1\", Name = \"Android\", Logo = \"androidlogo.png\" },\n                                                                new() { Id = \"2\", Name = \"IOS\", Logo = \"ioslogo.png\" },\n                                                                new() { Id = \"3\", Name = \"Windows\", Logo = \"windowslogo.png\"} };\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_add_square_24_regular\n    };\n    public string ControlDetail => \"Floating action buttons (FABs) help people take primary actions.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialFAB\";\n    public string DocumentUrl => $\"https://mdc-maui.github.io/FAB\";\n    public string GroupName => ControlGroupInfo.MaterialComponent;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n\n    public string MaterialIcon => IconPacks.IconKind.Material.AddBox;\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialFAB/MaterialFABPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class MaterialFABPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public MaterialFABPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    List<MaterialComponentProperty> properties = default!;\n\n    [ObservableProperty]\n    List<MaterialComponentEvent> events = default!;\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    string fabXamlCode = \"<mdc:FAB IconKind=\\\"Add\\\" Style=\\\"{DynamicResource SecondaryFABStyle}\\\" />\\r\\n                        <mdc:FAB IconKind=\\\"Add\\\" Style=\\\"{DynamicResource SurfaceFABStyle}\\\" />\\r\\n                        <mdc:FAB IconKind=\\\"Add\\\" Style=\\\"{DynamicResource TertiaryFABStyle}\\\" />\\r\\n                        <mdc:FAB\\r\\n                            IconKind=\\\"Add\\\"\\r\\n                            IsExtended=\\\"True\\\"\\r\\n                            Style=\\\"{DynamicResource SecondaryFABStyle}\\\"\\r\\n                            Text=\\\"Extended\\\" />\\r\\n                        <mdc:FAB IconKind=\\\"Add\\\" Style=\\\"{DynamicResource LargeSecondaryFABStyle}\\\" />\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n        Properties = new List<MaterialComponentProperty>()\n        {\n            new(){ Name = \"IconData\", DataType = \"string\", DefaultValue = string.Empty },\n            new(){ Name = \"BackgroundColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"Shape\", DataType = \"Shape\", DefaultValue = \"Large\" },\n            new(){ Name = \"Elevation\", DataType = \"Elevation\", DefaultValue = \"Level3\" },\n            new(){ Name = \"StateLayerColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"RippleDuration\", DataType = \"float\", DefaultValue = \"0.5\" },\n            new(){ Name = \"RippleEasing\", DataType = \"Easing\", DefaultValue = \"SinInOut\" },\n            new(){ Name = \"ContextMenu\", DataType = \"ContextMenu\", DefaultValue = string.Empty },\n            new(){ Name = \"Style\", DataType = \"Style\", DefaultValue = \"Surface\" },\n            new(){ Name = \"Command\", DataType = \"ICommand\", DefaultValue = string.Empty },\n            new(){ Name = \"CommandParameter\", DataType = \"object\", DefaultValue = string.Empty },\n        };\n\n\n        Events = new List<MaterialComponentEvent>()\n        {\n            new() { Name = \"Clicked\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"Pressed\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"Released\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"LongPressed\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"RightClicked (Desktop only)\", DataType= \"EventHandler<TouchEventArgs>\"}\n        };\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialProgressIndicator/MaterialProgressIndicatorControlInfo.cs",
    "content": "namespace MAUIsland.Core;\npublic class MaterialProgressIndicatorControlInfo : IMaterialUIGalleryCardInfo\n{\n    public string ControlName => nameof(Material.Components.Maui.ProgressIndicator);\n    public string ControlRoute => \"MAUIsland.MaterialProgressIndicatorPage\";\n    public List<PlatformInfo> SupportedPlatformsInfo => new() { new() { Id = \"1\", Name = \"Android\", Logo = \"androidlogo.png\" },\n                                                                new() { Id = \"2\", Name = \"IOS\", Logo = \"ioslogo.png\" },\n                                                                new() { Id = \"3\", Name = \"Windows\", Logo = \"windowslogo.png\"} };\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_add_circle_24_regular\n    };\n    public string ControlDetail => \"Progress indicators show the status of a process in real time.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialProgressIndicator\";\n    public string DocumentUrl => $\"https://mdc-maui.github.io/progress-indicator\";\n    public string GroupName => ControlGroupInfo.MaterialComponent;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n\n    public string MaterialIcon => IconPacks.IconKind.Material.PublishedWithChanges;\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialProgressIndicator/MaterialProgressIndicatorPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class MaterialProgressIndicatorPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public MaterialProgressIndicatorPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    List<MaterialComponentProperty> properties = default!;\n\n    [ObservableProperty]\n    List<MaterialComponentEvent> events = default!;\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    string progressIndicatorXamlCode = \"<mdc:ProgressIndicator Style=\\\"{DynamicResource CircularProgressIndicatorStyle}\\\" />\\r\\n <mdc:ProgressIndicator Style=\\\"{DynamicResource LinearProgressIndicatorStyle}\\\" />\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n        Properties = new List<MaterialComponentProperty>()\n        {\n            new(){ Name = \"Percent\", DataType = \"float\", DefaultValue = \"-1\" },\n            new(){ Name = \"AnimationDuration\", DataType = \"float\", DefaultValue = \"1.5\" },\n            new(){ Name = \"ActiveIndicatorHeight\", DataType = \"int\", DefaultValue = \"4\" },\n            new(){ Name = \"ActiveIndicatorColor\", DataType = \"Color\", DefaultValue = \"PrimaryColor\" },\n            new(){ Name = \"BackgroundColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"Command\", DataType = \"ICommand\", DefaultValue = string.Empty },\n            new(){ Name = \"CommandParameter\", DataType = \"object\", DefaultValue = string.Empty },\n        };\n\n        Events = new List<MaterialComponentEvent>()\n        {\n            new() { Name = \"PercentChanged\", DataType= \"EventHandler<ValueChangedEventArgs>\"}\n        };\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialRadioButton/MaterialRadioButtonControlInfo.cs",
    "content": "namespace MAUIsland.Core;\npublic class MaterialRadioButtonControlInfo : IMaterialUIGalleryCardInfo\n{\n    public string ControlName => nameof(Material.Components.Maui.RadioButton);\n    public string ControlRoute => \"MAUIsland.MaterialRadioButtonPage\";\n    public List<PlatformInfo> SupportedPlatformsInfo => new() { new() { Id = \"1\", Name = \"Android\", Logo = \"androidlogo.png\" },\n                                                                new() { Id = \"2\", Name = \"IOS\", Logo = \"ioslogo.png\" },\n                                                                new() { Id = \"3\", Name = \"Windows\", Logo = \"windowslogo.png\"} };\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_add_circle_24_regular\n    };\n    public string ControlDetail => \"Radio buttons let people select one option from a set of options.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialRadioButton\";\n    public string DocumentUrl => $\"https://mdc-maui.github.io/radio-button\";\n    public string GroupName => ControlGroupInfo.MaterialComponent;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n\n    public string MaterialIcon => IconPacks.IconKind.Material.RadioButtonChecked;\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialRadioButton/MaterialRadioButtonPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class MaterialRadioButtonPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public MaterialRadioButtonPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    List<MaterialComponentProperty> properties = default!;\n\n    [ObservableProperty]\n    List<MaterialComponentProperty> radioItemProperties = default!;\n\n    [ObservableProperty]\n    List<MaterialComponentEvent> events = default!;\n\n    [ObservableProperty]\n    List<MaterialComponentEvent> radioItemEvents = default!;\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    string radioButtonXamlCode = \"<mdc:RadioButton Orientation=\\\"Horizontal\\\">\\r\\n                        <mdc:RadioItem Text=\\\"item 1\\\" />\\r\\n                        <mdc:RadioItem Text=\\\"item 2\\\" />\\r\\n                        <mdc:RadioItem Text=\\\"item 3\\\" />\\r\\n                    </mdc:RadioButton>\\r\\n                    <mdc:RadioButton Orientation=\\\"Vertical\\\">\\r\\n                        <mdc:RadioItem Text=\\\"item 1\\\" />\\r\\n                        <mdc:RadioItem Text=\\\"item 2\\\" />\\r\\n                        <mdc:RadioItem Text=\\\"item 3\\\" />\\r\\n                    </mdc:RadioButton>\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n        Properties = new List<MaterialComponentProperty>()\n        {\n            new(){ Name = \"Items\", DataType = \"ObservableCollection<RadioItem>\", DefaultValue = string.Empty },\n            new(){ Name = \"SelectedIndex\", DataType = \"int\", DefaultValue = \"-1\" },\n            new(){ Name = \"SelectItem\", DataType = \"RadioItem\", DefaultValue = string.Empty },\n            new(){ Name = \"Orientation\", DataType = \"StackOrientation\", DefaultValue = \"Horizontal\" },\n            new(){ Name = \"Spacing\", DataType = \"double\", DefaultValue = \"0\" },\n            new(){ Name = \"HorizontalSpacing\", DataType = \"double\", DefaultValue = \"0\" },\n            new(){ Name = \"VerticalSpacing\", DataType = \"double\", DefaultValue = \"0\" },\n            new(){ Name = \"Command\", DataType = \"ICommand\", DefaultValue = string.Empty },\n            new(){ Name = \"CommandParameter\", DataType = \"object\", DefaultValue = string.Empty },\n        };\n\n        Events = new List<MaterialComponentEvent>()\n        {\n            new() { Name = \"SelectedIndexChanged\", DataType= \"EventHandler<SelectedItemChangedEventArgs>\"}\n        };\n\n        RadioItemProperties = new List<MaterialComponentProperty>()\n        {\n            new(){ Name = \"ActivedColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"IsSelected\", DataType = \"bool\", DefaultValue = \"false\" },\n            new(){ Name = \"Text\", DataType = \"string\", DefaultValue = string.Empty },\n            new(){ Name = \"FontColor\", DataType = \"Color\", DefaultValue = \"OnSurfaceVariantColor\" },\n            new(){ Name = \"FontSize\", DataType = \"float\", DefaultValue = \"16\" },\n            new(){ Name = \"FontFamily\", DataType = \"string\", DefaultValue = string.Empty },\n            new(){ Name = \"FontWeight\", DataType = \"FontWeight\", DefaultValue = \"Medium\" },\n            new(){ Name = \"FontIsItalic\", DataType = \"bool\", DefaultValue = \"false\" },\n            new(){ Name = \"StateLayerColor\", DataType = \"Color\", DefaultValue = \"PrimaryColor\" },\n        };\n\n        RadioItemEvents = new List<MaterialComponentEvent>()\n        {\n            new() { Name = \"Clicked\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"Pressed\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"Released\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"LongPressed\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"RightClicked (Desktop only)\", DataType= \"EventHandler<TouchEventArgs>\"}\n        };\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialSwitch/MaterialSwitchControlInfo.cs",
    "content": "namespace MAUIsland.Core;\npublic class MaterialSwitchControlInfo : IMaterialUIGalleryCardInfo\n{\n    public string ControlName => nameof(Material.Components.Maui.Switch);\n    public string ControlRoute => \"MAUIsland.MaterialSwitchPage\";\n\n    public List<PlatformInfo> SupportedPlatformsInfo => new() { new() { Id = \"1\", Name = \"Android\", Logo = \"androidlogo.png\" },\n                                                                new() { Id = \"2\", Name = \"IOS\", Logo = \"ioslogo.png\" },\n                                                                new() { Id = \"3\", Name = \"Windows\", Logo = \"windowslogo.png\"} };\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_toggle_left_24_regular\n    };\n    public string ControlDetail => \"Switches toggle the state of a single setting on or off.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialSwitch\";\n    public string DocumentUrl => $\"https://mdc-maui.github.io/switch\";\n    public string GroupName => ControlGroupInfo.MaterialComponent;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n\n    public string MaterialIcon => IconPacks.IconKind.Material.ToggleOn;\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialSwitch/MaterialSwitchPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class MaterialSwitchPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public MaterialSwitchPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    List<MaterialComponentProperty> properties = default!;\n\n    [ObservableProperty]\n    List<MaterialComponentEvent> events = default!;\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    string switchXamlCode = \"<mdc:Switch />\\r\\n<mdc:Switch HasIcon=\\\"False\\\" />\\r\\n<mdc:Switch IsChecked=\\\"True\\\" />\\r\\n\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n        Properties = new List<MaterialComponentProperty>()\n        {\n            new(){ Name = \"IsSelected\", DataType = \"bool\", DefaultValue = \"false\" },\n            new(){ Name = \"ThumbColor\", DataType = \"Color\", DefaultValue = \"OutlineColor\" },\n            new(){ Name = \"IconData\", DataType = \"string\", DefaultValue = string.Empty },\n            new(){ Name = \"IconColor\", DataType = \"Color\", DefaultValue = \"SurfaceContainerHighestColor\" },\n            new(){ Name = \"BackgroundColor\", DataType = \"Color\", DefaultValue = \"SurfaceContainerHighestColor\" },\n            new(){ Name = \"Shape\", DataType = \"Shape\", DefaultValue = \"full\" },\n            new(){ Name = \"OutlineColor\", DataType = \"Color\", DefaultValue = \"OutlineColor\" },\n            new(){ Name = \"StateLayerColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"Command\", DataType = \"ICommand\", DefaultValue = string.Empty },\n            new(){ Name = \"CommandParameter\", DataType = \"object\", DefaultValue = string.Empty },\n        };\n\n        Events = new List<MaterialComponentEvent>()\n        {\n            new() { Name = \"SelectedChanged\", DataType = \"EventHandler<CheckedChangedEventArgs>\" },\n            new() { Name = \"Clicked\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"Pressed\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"Released\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"LongPressed\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"RightClicked (Desktop only)\", DataType= \"EventHandler<TouchEventArgs>\"}\n        };\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialTextFields/MaterialTextFieldControlInfo.cs",
    "content": "using Material.Components.Maui;\n\nnamespace MAUIsland.Core;\npublic class MaterialTextFieldControlInfo : IMaterialUIGalleryCardInfo\n{\n    public string ControlName => nameof(TextField);\n    public string ControlRoute => \"MAUIsland.MaterialTextFieldPage\";\n\n    public List<PlatformInfo> SupportedPlatformsInfo => new() { new() { Id = \"1\", Name = \"Android\", Logo = \"androidlogo.png\" },\n                                                                new() { Id = \"2\", Name = \"IOS\", Logo = \"ioslogo.png\" },\n                                                                new() { Id = \"3\", Name = \"Windows\", Logo = \"windowslogo.png\"} };\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_text_field_24_regular\n    };\n    public string ControlDetail => \"Text fields allow users to enter text into a UI.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Features/Gallery/Pages/Material/MaterialTextField\";\n    public string DocumentUrl => $\"https://mdc-maui.github.io/text-field\";\n    public string GroupName => ControlGroupInfo.MaterialComponent;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n\n    public string MaterialIcon => IconPacks.IconKind.Material.TextFields;\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Controls/MaterialTextFields/MaterialTextFieldPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class MaterialTextFieldPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public MaterialTextFieldPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    List<MaterialComponentProperty> properties = default!;\n\n    [ObservableProperty]\n    List<MaterialComponentEvent> events = default!;\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    string textFieldXamlCode = \"<mdc:TextField\\r\\n IconData=\\\"{Static icon:Material.Search}\\\"\\r\\n Style=\\\"{DynamicResource FilledTextFieldStyle}\\\"\\r\\n WidthRequest=\\\"250\\\" />\\r\\n     <mdc:TextField\\r\\n   IconData=\\\"{Static icon:Material.Password}\\\"\\r\\n  IsError=\\\"True\\\"\\r\\n  Style=\\\"{DynamicResource OutlinedTextFieldStyle}\\\"\\r\\n  SupportingText=\\\"Incorrect password\\\"\\r\\n                            TrailingIconData=\\\"Close\\\"\\r\\n                            WidthRequest=\\\"300\\\" />\";\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n        Properties = new List<MaterialComponentProperty>()\n        {\n            new(){ Name = \"InputType\", DataType = \"InputType\", DefaultValue = \"None\" },\n            new(){ Name = \"Text\", DataType = \"string\", DefaultValue = string.Empty },\n            new(){ Name = \"FontColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"FontSize\", DataType = \"float\", DefaultValue = \"16\" },\n            new(){ Name = \"FontFamily\", DataType = \"string\", DefaultValue = string.Empty },\n            new(){ Name = \"FontWeight\", DataType = \"FontWeight\", DefaultValue = \"Regular\" },\n            new(){ Name = \"FontIsItalic\", DataType = \"bool\", DefaultValue = \"false\" },\n            new(){ Name = \"CaretColor\", DataType = \"Color\", DefaultValue = \"style\" },\n            new(){ Name = \"SelectionRange\", DataType = \"TextRange\", DefaultValue = \"0\" },\n            new(){ Name = \"TextAlignment\", DataType = \"TextAlignment\", DefaultValue = \"Start\" },\n            new(){ Name = \"IconData\", DataType = \"string\", DefaultValue = string.Empty },\n            new(){ Name = \"IconColor\", DataType = \"Color\", DefaultValue = \"OnSurfaceVariantColor\" },\n            new(){ Name = \"TrailingIconData\", DataType = \"string\", DefaultValue = string.Empty },\n            new(){ Name = \"TrailingIconColor\", DataType = \"Color\", DefaultValue = \"OnSurfaceVariantColor\" },\n            new(){ Name = \"ActiveIndicatorHeight\", DataType = \"int\", DefaultValue = string.Empty },\n            new(){ Name = \"ActiveIndicatorColor\", DataType = \"Color\", DefaultValue = \"OnSurfaceVariantColor\" },\n            new(){ Name = \"LabelText\", DataType = \"string\", DefaultValue = string.Empty },\n            new(){ Name = \"LabelFontColor\", DataType = \"Color\", DefaultValue = \"OnSurfaceVariantColor\" },\n            new(){ Name = \"SupportingText\", DataType = \"string\", DefaultValue = string.Empty },\n            new(){ Name = \"SupportingFontColor\", DataType = \"Color\", DefaultValue = \"OnSurfaceVariantColor\" },\n            new(){ Name = \"BackgroundColor\", DataType = \"Color\", DefaultValue = \"SurfaceContainerHighestColor\" },\n            new(){ Name = \"Shape\", DataType = \"Shape\", DefaultValue = \"ExtraSmallTop\" },\n            new(){ Name = \"StateLayerColor\", DataType = \"Color\", DefaultValue = \"OnSurfaceVariantColor\" },\n        };\n\n\n        Events = new List<MaterialComponentEvent>()\n        {\n            new() { Name = \"TextChanged\", DataType = \"EventHandler<TextChangedEventArgs>\" },\n            new() { Name = \"TrailingIconClicked\", DataType = \"EventHandler<EventArgs>\" },\n            new() { Name = \"Clicked\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"Pressed\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"Released\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"LongPressed\", DataType = \"EventHandler<TouchEventArgs>\" },\n            new() { Name = \"RightClicked (Desktop only)\", DataType= \"EventHandler<TouchEventArgs>\"}\n        };\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Models/MaterialComponentEvent.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class MaterialComponentEvent : BaseModel\n{\n    [ObservableProperty]\n    string name;\n\n    [ObservableProperty]\n    string dataType;\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Material/Models/MaterialComponentProperty.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class MaterialComponentProperty : BaseModel\n{\n    [ObservableProperty]\n    string name;\n\n    [ObservableProperty]\n    string dataType;\n\n    [ObservableProperty]\n    string defaultValue;\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfAvatarView/Models/SfAvatarViewTestUserModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class SfAvatarViewTestUserModel : BaseModel\n{\n    [ObservableProperty]\n    string avatarUrl;\n\n    [ObservableProperty]\n    string name;\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfAvatarView/SfAvatarViewControlInfo.cs",
    "content": "using Syncfusion.Maui.Core;\n\nnamespace MAUIsland.Core;\nclass SfAvatarViewControlInfo : IGalleryCardInfo\n{\n    public string ControlName => nameof(SfAvatarView);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_person_32_regular\n    };\n    public string ControlDetail => \"The .NET MAUI Avatar View control provides a graphical representation of user image that allows you to customize the view by adding image, background color, icon, text, etc.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/Syncfusion/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://help.syncfusion.com/maui/avatar-view/overview\";\n    public string GroupName => ControlGroupInfo.SyncfusionControls;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfAvatarView/SfAvatarViewPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class SfAvatarViewPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public SfAvatarViewPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation;\n\n    [ObservableProperty]\n    SfAvatarViewTestUserModel selectedTotechsMember;\n\n    [ObservableProperty]\n    ObservableCollection<Employee> collectionImages;\n\n    [ObservableProperty]\n    ObservableCollection<SfAvatarViewTestUserModel> totechsMembers;\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n        CollectionImages = new();\n        CollectionImages.Add(new Employee { Name = \"Teddy\", ImageSource = \"https://i.imgur.com/fixi8ti.jpg\", Colors = Colors.Gray });\n        CollectionImages.Add(new Employee { Name = \"Wolf\", ImageSource = \"https://i.imgur.com/mauGXij.png\", Colors = Colors.Bisque });\n        CollectionImages.Add(new Employee { Name = \"Monkey\", ImageSource = \"https://i.imgur.com/O9SgXez.jpg\", Colors = Colors.LightCoral });\n\n        TotechsMembers = new();\n        TotechsMembers.Add(new SfAvatarViewTestUserModel() { Name = \"Strypper Vandel Jason\", AvatarUrl = \"https://totechsintranet.blob.core.windows.net/team-members/Me(ver 2019).jpg\" });\n        TotechsMembers.Add(new SfAvatarViewTestUserModel() { Name = \"Tran Tien Dat\", AvatarUrl = \"https://totechsintranet.blob.core.windows.net/team-members/Dat.png\" });\n        TotechsMembers.Add(new SfAvatarViewTestUserModel() { Name = \"Luanderson Airton\", AvatarUrl = \"https://totechsintranet.blob.core.windows.net/team-members/Luan.jpg\" });\n        TotechsMembers.Add(new SfAvatarViewTestUserModel() { Name = \"Ho Dac Toan\", AvatarUrl = \"https://totechsintranet.blob.core.windows.net/team-members/Toan.jpg\" });\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}\npublic partial class Employee : BaseModel\n{\n    [ObservableProperty]\n    string name;\n\n    [ObservableProperty]\n    string imageSource;\n\n    [ObservableProperty]\n    Color colors;\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfBadgeView/SfBadgeViewControlInfo.cs",
    "content": "using Syncfusion.Maui.Core;\n\nnamespace MAUIsland.Core;\nclass SfBadgeViewControlInfo : IGalleryCardInfo\n{\n    public string ControlName => nameof(SfBadgeView);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_mail_alert_24_regular\n    };\n    public string ControlDetail => \"Badges are used to notify users of new or unread messages, notifications, or the status of something.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/Syncfusion/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://help.syncfusion.com/maui/badge-view/overview\";\n    public string GroupName => ControlGroupInfo.SyncfusionControls;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfBadgeView/SfBadgeViewPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class SfBadgeViewPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public SfBadgeViewPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation;\n\n    [ObservableProperty]\n    SfAvatarViewTestUserModel selectedTotechsMember;\n\n    [ObservableProperty]\n    ObservableCollection<Employee> collectionImages;\n\n    [ObservableProperty]\n    ObservableCollection<SfAvatarViewTestUserModel> totechsMembers;\n\n    [ObservableProperty]\n    string addingAContentXamlCode = \"<badge:SfBadgeView HorizontalOptions=\\\"Center\\\" VerticalOptions=\\\"Center\\\">\\r\\n                        <badge:SfBadgeView.Content>\\r\\n                            <Button\\r\\n                                HeightRequest=\\\"60\\\"\\r\\n                                Text=\\\"Primary\\\"\\r\\n                                WidthRequest=\\\"120\\\" />\\r\\n                        </badge:SfBadgeView.Content>\\r\\n                    </badge:SfBadgeView>\";\n\n    [ObservableProperty]\n    string addingAContentSecondXamlCode = \"<badge:SfBadgeView HorizontalOptions=\\\"Center\\\" VerticalOptions=\\\"Center\\\">\\r\\n                        <badge:SfBadgeView.Content>\\r\\n                            <Button\\r\\n                                HeightRequest=\\\"60\\\"\\r\\n                                Text=\\\"Primary\\\"\\r\\n                                WidthRequest=\\\"120\\\" />\\r\\n                        </badge:SfBadgeView.Content>\\r\\n                    </badge:SfBadgeView>\\r\\n                    <Label Text=\\\"The following screenshot illustrates the result of the above code.\\\" />\\r\\n                    <badge:SfBadgeView\\r\\n                        BadgeText=\\\"20\\\"\\r\\n                        HeightRequest=\\\"85\\\"\\r\\n                        HorizontalOptions=\\\"Center\\\"\\r\\n                        VerticalOptions=\\\"Center\\\"\\r\\n                        WidthRequest=\\\"150\\\">\\r\\n                        <badge:SfBadgeView.Content>\\r\\n                            <Button\\r\\n                                HeightRequest=\\\"60\\\"\\r\\n                                Text=\\\"Primary\\\"\\r\\n                                WidthRequest=\\\"120\\\" />\\r\\n                        </badge:SfBadgeView.Content>\\r\\n                    </badge:SfBadgeView>\";\n\n    [ObservableProperty]\n    string strokeCustomizationXamlCode = \"<badge:SfBadgeView\\r\\n                        BadgeText=\\\"30\\\"\\r\\n                        HeightRequest=\\\"85\\\"\\r\\n                        HorizontalOptions=\\\"Center\\\"\\r\\n                        VerticalOptions=\\\"Center\\\"\\r\\n                        WidthRequest=\\\"150\\\">\\r\\n                        <badge:SfBadgeView.Content>\\r\\n                            <Button\\r\\n                                BackgroundColor=\\\"#d6d8d7\\\"\\r\\n                                HeightRequest=\\\"60\\\"\\r\\n                                Text=\\\"Primary\\\"\\r\\n                                TextColor=\\\"Black\\\"\\r\\n                                WidthRequest=\\\"120\\\" />\\r\\n                        </badge:SfBadgeView.Content>\\r\\n                        <badge:SfBadgeView.BadgeSettings>\\r\\n                            <badge:BadgeSettings Stroke=\\\"Orange\\\" StrokeThickness=\\\"2\\\" />\\r\\n                        </badge:SfBadgeView.BadgeSettings>\\r\\n                    </badge:SfBadgeView>\";\n\n    [ObservableProperty]\n    string textCustomizationXamlCode = \"<badge:SfBadgeView\\r\\n                        BadgeText=\\\"45\\\"\\r\\n                        HeightRequest=\\\"100\\\"\\r\\n                        HorizontalOptions=\\\"Center\\\"\\r\\n                        VerticalOptions=\\\"Center\\\"\\r\\n                        WidthRequest=\\\"170\\\">\\r\\n                        <badge:SfBadgeView.Content>\\r\\n                            <Button\\r\\n                                BackgroundColor=\\\"#d6d8d7\\\"\\r\\n                                HeightRequest=\\\"60\\\"\\r\\n                                Text=\\\"Primary\\\"\\r\\n                                TextColor=\\\"Black\\\"\\r\\n                                WidthRequest=\\\"120\\\" />\\r\\n                        </badge:SfBadgeView.Content>\\r\\n                        <badge:SfBadgeView.BadgeSettings>\\r\\n                            <badge:BadgeSettings TextColor=\\\"LightYellow\\\" TextPadding=\\\"10\\\" />\\r\\n                        </badge:SfBadgeView.BadgeSettings>\\r\\n                    </badge:SfBadgeView>\";\n\n    [ObservableProperty]\n    string predefinedStylesXamlCode = \"<badge:SfBadgeView\\r\\n                        BadgeText=\\\"8\\\"\\r\\n                        HeightRequest=\\\"65\\\"\\r\\n                        HorizontalOptions=\\\"Center\\\"\\r\\n                        VerticalOptions=\\\"Center\\\"\\r\\n                        WidthRequest=\\\"75\\\">\\r\\n                        <badge:SfBadgeView.Content>\\r\\n                            <Image\\r\\n                                HeightRequest=\\\"70\\\"\\r\\n                                Source=\\\"https://i.imgur.com/mdBNR5T.png\\\"\\r\\n                                WidthRequest=\\\"60\\\" />\\r\\n                        </badge:SfBadgeView.Content>\\r\\n                        <badge:SfBadgeView.BadgeSettings>\\r\\n                            <badge:BadgeSettings Type=\\\"Error\\\" />\\r\\n                        </badge:SfBadgeView.BadgeSettings>\\r\\n                    </badge:SfBadgeView>\";\n\n    [ObservableProperty]\n    string badgeBackgroundCustomizationXamlCode = \"<badge:SfBadgeView\\r\\n                        BadgeText=\\\"48\\\"\\r\\n                        HeightRequest=\\\"85\\\"\\r\\n                        HorizontalOptions=\\\"Center\\\"\\r\\n                        VerticalOptions=\\\"Center\\\"\\r\\n                        WidthRequest=\\\"150\\\">\\r\\n                        <badge:SfBadgeView.Content>\\r\\n                            <Button\\r\\n                                BackgroundColor=\\\"#d6d8d7\\\"\\r\\n                                HeightRequest=\\\"60\\\"\\r\\n                                Text=\\\"Primary\\\"\\r\\n                                TextColor=\\\"Black\\\"\\r\\n                                WidthRequest=\\\"120\\\" />\\r\\n                        </badge:SfBadgeView.Content>\\r\\n                        <badge:SfBadgeView.BadgeSettings>\\r\\n                            <badge:BadgeSettings Background=\\\"Green\\\" Type=\\\"None\\\" />\\r\\n                        </badge:SfBadgeView.BadgeSettings>\\r\\n                    </badge:SfBadgeView>\";\n\n    [ObservableProperty]\n    string cornerRadiusOfTheBadgeXamlCode = \"<badge:SfBadgeView\\r\\n                        BadgeText=\\\"100\\\"\\r\\n                        HeightRequest=\\\"85\\\"\\r\\n                        HorizontalOptions=\\\"Center\\\"\\r\\n                        VerticalOptions=\\\"Center\\\"\\r\\n                        WidthRequest=\\\"160\\\">\\r\\n                        <badge:SfBadgeView.Content>\\r\\n                            <Button\\r\\n                                BackgroundColor=\\\"#d6d8d7\\\"\\r\\n                                HeightRequest=\\\"60\\\"\\r\\n                                Text=\\\"Primary\\\"\\r\\n                                TextColor=\\\"Black\\\"\\r\\n                                WidthRequest=\\\"120\\\" />\\r\\n                        </badge:SfBadgeView.Content>\\r\\n                        <badge:SfBadgeView.BadgeSettings>\\r\\n                            <badge:BadgeSettings CornerRadius=\\\"5,5,5,5\\\" />\\r\\n                        </badge:SfBadgeView.BadgeSettings>\\r\\n                    </badge:SfBadgeView>\";\n\n    [ObservableProperty]\n    string alignmentOfBadgeXamlCode = \"<Grid\\r\\n                        ColumnDefinitions=\\\"*,*,*\\\"\\r\\n                        ColumnSpacing=\\\"5\\\"\\r\\n                        RowDefinitions=\\\"*\\\"\\r\\n                        RowSpacing=\\\"5\\\">\\r\\n                        <badge:SfBadgeView\\r\\n                            Grid.Row=\\\"0\\\"\\r\\n                            Grid.Column=\\\"0\\\"\\r\\n                            BadgeText=\\\"20\\\"\\r\\n                            HeightRequest=\\\"113\\\"\\r\\n                            HorizontalOptions=\\\"Center\\\"\\r\\n                            VerticalOptions=\\\"Center\\\"\\r\\n                            WidthRequest=\\\"176\\\">\\r\\n                            <badge:SfBadgeView.Content>\\r\\n                                <Label\\r\\n                                    Grid.Row=\\\"1\\\"\\r\\n                                    Grid.Column=\\\"1\\\"\\r\\n                                    BackgroundColor=\\\"LightGray\\\"\\r\\n                                    HeightRequest=\\\"70\\\"\\r\\n                                    HorizontalTextAlignment=\\\"Center\\\"\\r\\n                                    Text=\\\"START\\\"\\r\\n                                    TextColor=\\\"Black\\\"\\r\\n                                    VerticalTextAlignment=\\\"Center\\\"\\r\\n                                    WidthRequest=\\\"120\\\" />\\r\\n                            </badge:SfBadgeView.Content>\\r\\n                            <badge:SfBadgeView.BadgeSettings>\\r\\n                                <badge:BadgeSettings BadgeAlignment=\\\"Center\\\" CornerRadius=\\\"0\\\" />\\r\\n                            </badge:SfBadgeView.BadgeSettings>\\r\\n                        </badge:SfBadgeView>\\r\\n                        <badge:SfBadgeView\\r\\n                            Grid.Row=\\\"0\\\"\\r\\n                            Grid.Column=\\\"1\\\"\\r\\n                            BadgeText=\\\"20\\\"\\r\\n                            HeightRequest=\\\"80\\\"\\r\\n                            HorizontalOptions=\\\"Center\\\"\\r\\n                            VerticalOptions=\\\"Center\\\"\\r\\n                            WidthRequest=\\\"130\\\">\\r\\n                            <badge:SfBadgeView.Content>\\r\\n                                <Label\\r\\n                                    Grid.Row=\\\"1\\\"\\r\\n                                    Grid.Column=\\\"2\\\"\\r\\n                                    BackgroundColor=\\\"LightGray\\\"\\r\\n                                    HeightRequest=\\\"60\\\"\\r\\n                                    HorizontalTextAlignment=\\\"Center\\\"\\r\\n                                    Text=\\\"CENTER\\\"\\r\\n                                    TextColor=\\\"Black\\\"\\r\\n                                    VerticalTextAlignment=\\\"Center\\\"\\r\\n                                    WidthRequest=\\\"100\\\" />\\r\\n                            </badge:SfBadgeView.Content>\\r\\n                            <badge:SfBadgeView.BadgeSettings>\\r\\n                                <badge:BadgeSettings BadgeAlignment=\\\"Center\\\" CornerRadius=\\\"0\\\" />\\r\\n                            </badge:SfBadgeView.BadgeSettings>\\r\\n                        </badge:SfBadgeView>\\r\\n                        <badge:SfBadgeView\\r\\n                            Grid.Row=\\\"0\\\"\\r\\n                            Grid.Column=\\\"2\\\"\\r\\n                            BadgeText=\\\"20\\\"\\r\\n                            HeightRequest=\\\"60\\\"\\r\\n                            HorizontalOptions=\\\"Center\\\"\\r\\n                            VerticalOptions=\\\"Center\\\"\\r\\n                            WidthRequest=\\\"100\\\">\\r\\n                            <badge:SfBadgeView.Content>\\r\\n                                <Label\\r\\n                                    Grid.Row=\\\"1\\\"\\r\\n                                    Grid.Column=\\\"3\\\"\\r\\n                                    BackgroundColor=\\\"LightGray\\\"\\r\\n                                    HeightRequest=\\\"60\\\"\\r\\n                                    HorizontalTextAlignment=\\\"Center\\\"\\r\\n                                    Text=\\\"END\\\"\\r\\n                                    TextColor=\\\"Black\\\"\\r\\n                                    VerticalTextAlignment=\\\"Center\\\"\\r\\n                                    WidthRequest=\\\"100\\\" />\\r\\n                            </badge:SfBadgeView.Content>\\r\\n                            <badge:SfBadgeView.BadgeSettings>\\r\\n                                <badge:BadgeSettings BadgeAlignment=\\\"Center\\\" CornerRadius=\\\"0\\\" />\\r\\n                            </badge:SfBadgeView.BadgeSettings>\\r\\n                        </badge:SfBadgeView>\\r\\n                    </Grid>\";\n\n    [ObservableProperty]\n    string positionCustomizationXamlCode = \"<badge:SfBadgeView\\r\\n                            BadgeText=\\\"5\\\"\\r\\n                            HeightRequest=\\\"60\\\"\\r\\n                            HorizontalOptions=\\\"Center\\\"\\r\\n                            VerticalOptions=\\\"Center\\\"\\r\\n                            WidthRequest=\\\"140\\\">\\r\\n                            <badge:SfBadgeView.Content>\\r\\n                                <Button\\r\\n                                    BackgroundColor=\\\"#d6d8d7\\\"\\r\\n                                    HeightRequest=\\\"60\\\"\\r\\n                                    Text=\\\"Left\\\"\\r\\n                                    TextColor=\\\"Black\\\"\\r\\n                                    WidthRequest=\\\"120\\\" />\\r\\n                            </badge:SfBadgeView.Content>\\r\\n                            <badge:SfBadgeView.BadgeSettings>\\r\\n                                <badge:BadgeSettings Position=\\\"Left\\\" />\\r\\n                            </badge:SfBadgeView.BadgeSettings>\\r\\n                        </badge:SfBadgeView>\";\n\n    [ObservableProperty]\n    string settingAbadgeOffsetXamlCode = \"<badge:SfBadgeView\\r\\n                            BadgeText=\\\"8\\\"\\r\\n                            HeightRequest=\\\"70\\\"\\r\\n                            HorizontalOptions=\\\"Center\\\"\\r\\n                            VerticalOptions=\\\"Center\\\"\\r\\n                            WidthRequest=\\\"60\\\">\\r\\n                            <badge:SfBadgeView.Content>\\r\\n                                <Image\\r\\n                                    HeightRequest=\\\"70\\\"\\r\\n                                    Source=\\\"https://i.imgur.com/mdBNR5T.png\\\"\\r\\n                                    WidthRequest=\\\"60\\\" />\\r\\n                            </badge:SfBadgeView.Content>\\r\\n                            <badge:SfBadgeView.BadgeSettings>\\r\\n                                <badge:BadgeSettings\\r\\n                                    Position=\\\"BottomRight\\\"\\r\\n                                    Type=\\\"Success\\\"\\r\\n                                    Offset=\\\"0,-1\\\" />\\r\\n                            </badge:SfBadgeView.BadgeSettings>\\r\\n                        </badge:SfBadgeView>\";\n\n    [ObservableProperty]\n    string predefindedSymbolsXamlCode = \"<badge:SfBadgeView HorizontalOptions=\\\"Center\\\" VerticalOptions=\\\"Center\\\">\\r\\n                            <badge:SfBadgeView.Content>\\r\\n                                <Image\\r\\n                                    HeightRequest=\\\"70\\\"\\r\\n                                    Source=\\\"https://i.imgur.com/mdBNR5T.png\\\"\\r\\n                                    WidthRequest=\\\"60\\\" />\\r\\n                            </badge:SfBadgeView.Content>\\r\\n                            <badge:SfBadgeView.BadgeSettings>\\r\\n                                <badge:BadgeSettings\\r\\n                                    Icon=\\\"Available\\\"\\r\\n                                    Position=\\\"BottomRight\\\"\\r\\n                                    Type=\\\"Success\\\"\\r\\n                                    Offset=\\\"-2, -2\\\" />\\r\\n                            </badge:SfBadgeView.BadgeSettings>\\r\\n                        </badge:SfBadgeView>\";\n\n    [ObservableProperty]\n    string animationBasicXamlCode = \"<badge:SfBadgeView\\r\\n                        BadgeText=\\\"{x:Binding Source={x:Reference NotificationCountStepper},\\r\\n                                              Path=Value}\\\"\\r\\n                        HeightRequest=\\\"70\\\"\\r\\n                        HorizontalOptions=\\\"Center\\\"\\r\\n                        VerticalOptions=\\\"Center\\\"\\r\\n                        WidthRequest=\\\"65\\\">\\r\\n                        <badge:SfBadgeView.Content>\\r\\n                            <Image\\r\\n                                HeightRequest=\\\"70\\\"\\r\\n                                Source=\\\"https://i.imgur.com/mdBNR5T.png\\\"\\r\\n                                WidthRequest=\\\"60\\\" />\\r\\n                        </badge:SfBadgeView.Content>\\r\\n                        <badge:SfBadgeView.BadgeSettings>\\r\\n                            <badge:BadgeSettings\\r\\n                                Animation=\\\"Scale\\\"\\r\\n                                Position=\\\"TopRight\\\"\\r\\n                                Type=\\\"Error\\\"\\r\\n                                Offset=\\\"0,0\\\" />\\r\\n                        </badge:SfBadgeView.BadgeSettings>\\r\\n                    </badge:SfBadgeView>\\r\\n                    <Label\\r\\n                        FontAttributes=\\\"Bold\\\"\\r\\n                        HorizontalOptions=\\\"Center\\\"\\r\\n                        Text=\\\"{x:Binding Source={x:Reference NotificationCountStepper},\\r\\n                                         Path=Value}\\\" />\\r\\n                    <Stepper x:Name=\\\"NotificationCountStepper\\\" HorizontalOptions=\\\"Center\\\" />\\r\\n                    <core:SourceCodeExpander Code=\\\"{x:Binding AnimationBasic}\\\" CodeType=\\\"Xaml\\\" />\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n        TotechsMembers = new();\n        TotechsMembers.Add(new SfAvatarViewTestUserModel() { Name = \"Strypper Vandel Jason\", AvatarUrl = \"https://totechsintranet.blob.core.windows.net/team-members/Me(ver 2019).jpg\" });\n        TotechsMembers.Add(new SfAvatarViewTestUserModel() { Name = \"Tran Tien Dat\", AvatarUrl = \"https://totechsintranet.blob.core.windows.net/team-members/Dat.png\" });\n        TotechsMembers.Add(new SfAvatarViewTestUserModel() { Name = \"Luanderson Airton\", AvatarUrl = \"https://totechsintranet.blob.core.windows.net/team-members/Luan.jpg\" });\n        TotechsMembers.Add(new SfAvatarViewTestUserModel() { Name = \"Ho Dac Toan\", AvatarUrl = \"https://totechsintranet.blob.core.windows.net/team-members/Toan.jpg\" });\n\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfBarcodeGenerator/SfBarcodeGeneratorControlInfo.cs",
    "content": "using Syncfusion.Maui.Core;\n\nnamespace MAUIsland.Core;\nclass SfBarcodeGeneratorControlInfo : IGalleryCardInfo\n{\n    public string ControlName => nameof(SfBadgeView);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_barcode_scanner_24_regular\n    };\n    public string ControlDetail => \"The Syncfusion .NET MAUI Barcode Generator is a data visualization control used to generate and display data in a machine-readable format. It provides a perfect approach to encode text using supported symbology types.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/Syncfusion/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://help.syncfusion.com/maui/barcode-generator/overview\";\n    public string GroupName => ControlGroupInfo.SyncfusionControls;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfBarcodeGenerator/SfBarcodeGeneratorPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class SfBarcodeGeneratorPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public SfBarcodeGeneratorPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n    }\n    #endregion\n\n    [ObservableProperty]\n    string basicSfBarcodeGeneratorXamlCode = \"<barcode:SfBarcodeGenerator Value=\\\"Welcome to MAUIsland!\\\"\\r\\n                                                 HeightRequest=\\\"100\\\"\\r\\n                                                 WidthRequest=\\\"300\\\"\\r\\n                                                 BackgroundColor=\\\"White\\\"/>\";\n\n    [ObservableProperty]\n    string qrSfBarcodeGeneratorXamlCode = \"<barcode:SfBarcodeGenerator Value=\\\"Welcome to MAUIsland!\\\"\\r\\n                                                HeightRequest=\\\"100\\\"\\r\\n                                                WidthRequest=\\\"300\\\"\\r\\n                                                BackgroundColor=\\\"White\\\">\\r\\n                        <barcode:SfBarcodeGenerator.Symbology>\\r\\n                            <barcode:QRCode />\\r\\n                        </barcode:SfBarcodeGenerator.Symbology>\\r\\n</barcode:SfBarcodeGenerator>\";\n\n    [ObservableProperty]\n    string customSfBarcodeGeneratorXamlCode = \"<barcode:SfBarcodeGenerator Value=\\\"Welcome to MAUIsland!\\\"\\r\\n                                                HeightRequest=\\\"100\\\"\\r\\n                                                WidthRequest=\\\"300\\\"\\r\\n                                                ShowText=\\\"True\\\"\\r\\n                                                ForegroundColor=\\\"Purple\\\"\\r\\n                                                BackgroundColor=\\\"LightCyan\\\">\\r\\n                        <barcode:SfBarcodeGenerator.TextStyle>\\r\\n                            <barcode:BarcodeTextStyle FontAttributes=\\\"Italic\\\" \\r\\n                                              FontSize=\\\"16\\\" \\r\\n                                              TextColor=\\\"Red\\\"/>\\r\\n                        </barcode:SfBarcodeGenerator.TextStyle>\\r\\n</barcode:SfBarcodeGenerator>\";\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n    #endregion\n\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfBusyIndicator/SfBusyIndicatorControlInfo.cs",
    "content": "using Syncfusion.Maui.Core;\n\nnamespace MAUIsland.Core;\nclass SfBusyIndicatorControlInfo : IGalleryCardInfo\n{\n    public string ControlName => nameof(SfBusyIndicator);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"The Busy Indicator control for .NET MAUI provides an indication of the app loading, data processing etc. It can be customized in terms of Indicator size, color, speed and more.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/Syncfusion/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://help.syncfusion.com/maui/busy-indicator/overview\";\n    public string GroupName => ControlGroupInfo.SyncfusionControls;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfBusyIndicator/SfBusyIndicatorPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class SfBusyIndicatorPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public SfBusyIndicatorPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    string simpleBusyIndicator = \"<core:SfBusyIndicator x:Name=\\\"busyindicator\\\"\\r\\n                      AnimationType=\\\"CircularMaterial\\\"\\r\\n                      IsRunning=\\\"false\\\" />\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n    #endregion\n\n\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Annotation/SfCartesianChartAnnotation.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartAnnotation\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n\n    <ContentView.Resources>\n        <x:String x:Key=\"TextAnnotationHeader\">\n            <![CDATA[ The TextAnnotation can be customized using the LabelStyle property. The LabelStyle property provides options to customize the font-family, font-size, font-attributes, and text color of axis labels. The following properties are used to customize the text: ]]>\n        </x:String>\n\n        <x:Array x:Key=\"TextAnnotation\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">TextColor</strong> - Gets or sets the text color of the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Background</strong> - Gets or sets the background color of the labels. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Margin</strong> - Gets or sets the margin of the label to customize the appearance of label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontFamily</strong> - Gets or sets the font family name for the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontAttributes</strong> - Gets or sets the font style for the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontSize</strong> - Gets or sets the font size for the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">HorizontalTextAlignment</strong> - Gets or sets the horizontal alignment of the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">VerticalTextAlignment</strong> - Gets or sets the vertical alignment of the label. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"ShapeAnnotationHeader\">\n            <![CDATA[ The ShapeAnnotation allows you to add annotations in the form of shapes such as rectangles, ellipses, lines, horizontal lines, and vertical lines at specific areas of interest in the chart area: ]]>\n        </x:String>\n\n        <x:Array x:Key=\"ShapeAnnotation\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">RectangleAnnotation</strong> - Used to draw a rectangle over the chart area. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">EllipseAnnotation</strong> - Used to draw a circle or an ellipse over the chart area. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">LineAnnotation</strong> - Used to draw a line over the chart area. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">VerticalLineAnnotation</strong> - Used to draw a vertical line across the chart area. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">HorizontalLineAnnotation</strong> - Used to draw a horizontal line across the chart area. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">X2</strong> - Gets or sets the X2 coordinate of the shape annotation. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Y2</strong> - Gets or sets the Y2 coordinate of the shape annotation. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Fill</strong> - Gets or sets the background color of the shape annotation ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Stroke</strong> - Gets or sets the stroke color of the shape annotation. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">StrokeWidth</strong> - Gets or sets the stroke width of the shape annotation. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">StrokeDashArray</strong> - Gets or sets the stroke dash pattern of the shape annotation. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Text</strong> - Gets or sets the annotation text of the shape annotation. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">LabelStyle</strong> - Gets or sets the style for customizing the annotation text of the shape annotation. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"ViewAnnotationHeader\">\n            <![CDATA[ The ViewAnnotation allows you to add annotations in the form of your own custom view using the View property at a specific area of interest in the chart area. Additionally, the ViewAnnotation can be aligned using the VerticalAlignment and HorizontalAlignment properties. ]]>\n        </x:String>\n\n        <x:String x:Key=\"ShapeAnnotationAxisLabelHeader\">\n            <![CDATA[ The ViewAnnotation allows you to add annotations in the form of your own custom view using the View property at a specific area of interest in the chart area. Additionally, the ViewAnnotation can be aligned using the VerticalAlignment and HorizontalAlignment properties. ]]>\n        </x:String>\n\n        <x:Array x:Key=\"ShapeAnnotationAxisLabel\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">TextColor</strong> - Gets or sets the text color of the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Background</strong> - Gets or sets the background color of the labels. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Margin</strong> - Gets or sets the margin of the label to customize the appearance of label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontFamily</strong> - Gets or sets the font family name for the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontAttributes</strong> - Gets or sets the font style for the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontSize</strong> - Gets or sets the font size for the label. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"ShapeAnnotationTextHeader\">\n            <![CDATA[ The Text in shape annotation also can be customized by using the LabelStyle property. The LabelStyle property provides options to customize the font-family, font-size, font-attributes and text color of axis labels. ]]>\n        </x:String>\n\n        <x:Array x:Key=\"ShapeAnnotationText\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">TextColor</strong> - Gets or sets the text color of the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Background</strong> - Gets or sets the background color of the labels. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Margin</strong> - Gets or sets the margin of the label to customize the appearance of label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontFamily</strong> - Gets or sets the font family name for the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontAttributes</strong> - Gets or sets the font style for the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontSize</strong> - Gets or sets the font size for the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">HorizontalTextAlignment</strong> - Gets or sets the horizontal alignment of the labe ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">VerticalTextAlignment</strong> - Gets or sets the vertical alignment of the label. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    \n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"TextArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Text annotation\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"TextAnnotation\" Margin=\"5\">\n                        <Label Text=\"{x:StaticResource TextAnnotationHeader}\" />\n                        <CollectionView x:Name=\"TextAnnotationCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnTextGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ShapeArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Shape annotation\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"ShapeAnnotation\" Margin=\"5\">\n                        <Label Text=\"{x:StaticResource ShapeAnnotationHeader}\" />\n                        <CollectionView x:Name=\"ShapeAnnotationCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n\n                        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <Grid>\n                                <VerticalStackLayout>\n                                    <HorizontalStackLayout Spacing=\"10\">\n                                        <Image x:Name=\"ShapeAxisArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                                        <Label Text=\"Axis label customization in shape annotation\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                                    </HorizontalStackLayout>\n                                    <VerticalStackLayout x:Name=\"ShapeAnnotationAxisLabel\" Margin=\"5\">\n                                        <Label Text=\"{x:StaticResource ShapeAnnotationAxisLabelHeader}\" />\n                                        <CollectionView x:Name=\"ShapeAnnotationAxisLabelCollectionView\"\n                                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                    </VerticalStackLayout>\n                                </VerticalStackLayout>\n                                <Grid.GestureRecognizers>\n                                    <TapGestureRecognizer Tapped=\"OnShapeAxisLabelGridTapped\" />\n                                </Grid.GestureRecognizers>\n                            </Grid>\n                        </Border>\n                        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <Grid>\n                                <VerticalStackLayout>\n                                    <HorizontalStackLayout Spacing=\"10\">\n                                        <Image x:Name=\"ShapeTextArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                                        <Label Text=\"Text customization in shape annotation\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                                    </HorizontalStackLayout>\n                                    <VerticalStackLayout x:Name=\"ShapeAnnotationText\" Margin=\"5\">\n                                        <Label Text=\"{x:StaticResource ShapeAnnotationTextHeader}\" />\n                                        <CollectionView x:Name=\"ShapeAnnotationTextCollectionView\"\n                                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                    </VerticalStackLayout>\n                                </VerticalStackLayout>\n                                <Grid.GestureRecognizers>\n                                    <TapGestureRecognizer Tapped=\"OnShapeTextGridTapped\" />\n                                </Grid.GestureRecognizers>\n                            </Grid>\n                        </Border>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnShapeGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ViewArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"View annotation\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"ViewAnnotation\" Margin=\"5\">\n                        <Label Text=\"{x:StaticResource ViewAnnotationHeader}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnViewGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border Padding=\"10\" Margin=\"5\" StrokeShape=\"RoundRectangle 4\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart VerticalOptions=\"FillAndExpand\" Margin=\"0,0,5,0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Annotations Demo\" Margin=\"0,2,0,10\"\n                               HorizontalOptions=\"Center\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"CenterAndExpand\"\n                               FontSize=\"16\" LineBreakMode=\"WordWrap\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:NumericalAxis Minimum=\"0\" Maximum=\"4\"/>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Minimum=\"20\" Maximum=\"70\" Interval=\"10\"/>\n                    </toolkit:SfCartesianChart.YAxes>\n\n                    <toolkit:SfCartesianChart.Annotations>\n                        <toolkit:VerticalLineAnnotation X1=\"2\" LineCap=\"Arrow\" Text=\"Vertical Line\" Stroke=\"Orange\">\n                            <toolkit:VerticalLineAnnotation.LabelStyle>\n                                <toolkit:ChartAnnotationLabelStyle VerticalTextAlignment=\"Start\" HorizontalTextAlignment=\"Start\" FontAttributes=\"Bold\" FontSize=\"13\" TextColor=\"Orange\"/>\n                            </toolkit:VerticalLineAnnotation.LabelStyle>\n                        </toolkit:VerticalLineAnnotation>\n\n                        <toolkit:HorizontalLineAnnotation Y1=\"45\" LineCap=\"Arrow\" Text=\"Horizontal Line\" Stroke=\"Orange\">\n                            <toolkit:HorizontalLineAnnotation.LabelStyle>\n                                <toolkit:ChartAnnotationLabelStyle VerticalTextAlignment=\"Start\" HorizontalTextAlignment=\"End\" FontAttributes=\"Bold\" FontSize=\"13\" TextColor=\"Orange\"/>\n                            </toolkit:HorizontalLineAnnotation.LabelStyle>\n                        </toolkit:HorizontalLineAnnotation>\n\n                        <toolkit:LineAnnotation X1=\"2.5\" X2=\"3.5\" Y1=\"52\" Y2=\"63\" LineCap=\"Arrow\" Text=\"Random Line\" Stroke=\"Orange\">\n                            <toolkit:LineAnnotation.LabelStyle>\n                                <toolkit:ChartAnnotationLabelStyle FontAttributes=\"Bold\" FontSize=\"13\" TextColor=\"Orange\"/>\n                            </toolkit:LineAnnotation.LabelStyle>\n                        </toolkit:LineAnnotation>\n\n                        <toolkit:RectangleAnnotation X1=\"0.5\" X2=\"1.5\" Y1=\"25\" Y2=\"35\" Text=\"Rectangle\" Stroke=\"Orange\">\n                            <toolkit:RectangleAnnotation.LabelStyle>\n                                <toolkit:ChartAnnotationLabelStyle FontAttributes=\"Bold\" FontSize=\"13\" TextColor=\"Orange\"/>\n                            </toolkit:RectangleAnnotation.LabelStyle>\n                        </toolkit:RectangleAnnotation>\n\n                        <toolkit:EllipseAnnotation X1=\"2.5\" X2=\"3.5\" Y1=\"25\" Y2=\"35\" Text=\"Ellipse\" HorizontalAlignment=\"End\" VerticalAlignment=\"End\" Stroke=\"Orange\">\n                            <toolkit:EllipseAnnotation.LabelStyle>\n                                <toolkit:ChartAnnotationLabelStyle FontAttributes=\"Bold\" FontSize=\"13\" TextColor=\"Orange\"/>\n                            </toolkit:EllipseAnnotation.LabelStyle>\n                        </toolkit:EllipseAnnotation>\n\n                        <toolkit:TextAnnotation X1=\"1\" Y1=\"57.5\" Text=\"Text Annotation\">\n                            <toolkit:TextAnnotation.LabelStyle>\n                                <toolkit:ChartAnnotationLabelStyle FontAttributes=\"Bold\" FontSize=\"13\" TextColor=\"Orange\"/>\n                            </toolkit:TextAnnotation.LabelStyle>\n                        </toolkit:TextAnnotation>\n\n                        <toolkit:ViewAnnotation X1=\"2.15\" Y1=\"35\">\n                            <toolkit:ViewAnnotation.View>\n                                <Image>\n                                    <Image.Source>\n                                        <FontImageSource Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_data_histogram_24_regular}\" \n                                                         FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\" \n                                                         Size =\"50\"\n                                                         Color=\"Orange\"/>\n                                    </Image.Source>\n                                </Image>\n                            </toolkit:ViewAnnotation.View>\n                        </toolkit:ViewAnnotation>\n                        <toolkit:TextAnnotation X1=\"2.15\" Y1=\"30\" Text=\"View Annotation\">\n                            <toolkit:TextAnnotation.LabelStyle>\n                                <toolkit:ChartAnnotationLabelStyle FontAttributes=\"Bold\" FontSize=\"13\" TextColor=\"Orange\"/>\n                            </toolkit:TextAnnotation.LabelStyle>\n                        </toolkit:TextAnnotation>\n                    </toolkit:SfCartesianChart.Annotations>\n                </toolkit:SfCartesianChart>\n                \n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\" />\n            </VerticalStackLayout>\n        </Border>\n\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Annotation/SfCartesianChartAnnotation.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartAnnotation : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartAnnotation()\n    {\n        InitializeComponent();\n        TextAnnotation.IsVisible = false;\n        ShapeAnnotation.IsVisible = false;\n        ViewAnnotation.IsVisible = false;\n        ShapeAnnotationAxisLabel.IsVisible = false;\n        ShapeAnnotationText.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartArea),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartAnnotation),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var textAnnotation = (string[])Resources[\"TextAnnotation\"];\n        TextAnnotationCollectionView.ItemsSource = textAnnotation;\n\n        var shapeAnnotation = (string[])Resources[\"ShapeAnnotation\"];\n        ShapeAnnotationCollectionView.ItemsSource = shapeAnnotation;\n\n        var shapeAnnotationAxisLabel = (string[])Resources[\"ShapeAnnotationAxisLabel\"];\n        ShapeAnnotationAxisLabelCollectionView.ItemsSource = shapeAnnotationAxisLabel;\n\n        var shapeAnnotationText = (string[])Resources[\"ShapeAnnotationText\"];\n        ShapeAnnotationTextCollectionView.ItemsSource = shapeAnnotationText;\n    }\n\n    private async void OnTextGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (TextArrowImage.Rotation == 0)\n        {\n            await TextArrowImage.RotateTo(90);\n            TextAnnotation.IsVisible = true;\n        }\n        else\n        {\n            await TextArrowImage.RotateTo(0);\n            TextAnnotation.IsVisible = false;\n        }\n    }\n\n    private async void OnShapeGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ShapeArrowImage.Rotation == 0)\n        {\n            await ShapeArrowImage.RotateTo(90);\n            ShapeAnnotation.IsVisible = true;\n        }\n        else\n        {\n            await ShapeArrowImage.RotateTo(0);\n            ShapeAnnotation.IsVisible = false;\n        }\n    }\n\n    private async void OnViewGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ViewArrowImage.Rotation == 0)\n        {\n            await ViewArrowImage.RotateTo(90);\n            ViewAnnotation.IsVisible = true;\n        }\n        else\n        {\n            await ViewArrowImage.RotateTo(0);\n            ViewAnnotation.IsVisible = false;\n        }\n    }\n\n    private async void OnShapeAxisLabelGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ShapeAxisArrowImage.Rotation == 0)\n        {\n            await ShapeAxisArrowImage.RotateTo(90);\n            ShapeAnnotationAxisLabel.IsVisible = true;\n        }\n        else\n        {\n            await ShapeAxisArrowImage.RotateTo(0);\n            ShapeAnnotationAxisLabel.IsVisible = false;\n        }\n    }\n\n    private async void OnShapeTextGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ShapeTextArrowImage.Rotation == 0)\n        {\n            await ShapeTextArrowImage.RotateTo(90);\n            ShapeAnnotationText.IsVisible = true;\n        }\n        else\n        {\n            await ShapeTextArrowImage.RotateTo(0);\n            ShapeAnnotationText.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Appearance/SfCartesianChartAppearanceChart.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartAppearanceChart\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <ContentView.Resources>\n        <toolkit:DataPointSelectionBehavior x:Key=\"SfCartesianChartSelectionBrush\" SelectionBrush=\"#314A6E\" />\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"PaletteBrushes for Chart\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Spacing=\"10\">\n                        <toolkit:SfCartesianChart PaletteBrushes=\"{x:Binding PalletBrushesData, Source={x:Reference root}}\" \n                                                  HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                                  Margin=\"0, 0, 20, 0\">\n                            <toolkit:SfCartesianChart.Title>\n                                <Label Text=\"Simple Sample Chart\" FontSize=\"16\" \n                                        HorizontalTextAlignment=\"Center\" HorizontalOptions=\"Fill\"  VerticalOptions=\"Center\" />\n                            </toolkit:SfCartesianChart.Title>\n                            <toolkit:SfCartesianChart.XAxes>\n                                <toolkit:CategoryAxis>\n                                    <toolkit:CategoryAxis.Title>\n                                        <toolkit:ChartAxisTitle Text=\"Name\" TextColor=\"{x:AppThemeBinding Dark={x:StaticResource White}, Light={x:StaticResource Black}}\" />\n                                    </toolkit:CategoryAxis.Title>\n                                </toolkit:CategoryAxis>\n                            </toolkit:SfCartesianChart.XAxes>\n                            <toolkit:SfCartesianChart.YAxes>\n                                <toolkit:NumericalAxis>\n                                    <toolkit:NumericalAxis.Title>\n                                        <toolkit:ChartAxisTitle TextColor=\"{x:AppThemeBinding Dark={x:StaticResource White}, Light={x:StaticResource Black}}\" />\n                                    </toolkit:NumericalAxis.Title>\n                                </toolkit:NumericalAxis>\n                            </toolkit:SfCartesianChart.YAxes>\n\n                            <toolkit:ColumnSeries EnableAnimation=\"True\"\n                                                  ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                                  SelectionBehavior=\"{x:StaticResource SfCartesianChartSelectionBrush}\"\n                                                  XBindingPath=\"Name\" YBindingPath=\"Exp\" />\n                            <toolkit:ColumnSeries EnableAnimation=\"True\"\n                                                  ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                                  SelectionBehavior=\"{x:StaticResource SfCartesianChartSelectionBrush}\"\n                                                  XBindingPath=\"Name\" YBindingPath=\"Value\" />\n                            <toolkit:ColumnSeries EnableAnimation=\"True\"\n                                                  ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                                  SelectionBehavior=\"{x:StaticResource SfCartesianChartSelectionBrush}\"\n                                                  XBindingPath=\"Name\" YBindingPath=\"Size\" />\n                        </toolkit:SfCartesianChart>\n\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Appearance/SfCartesianChartAppearanceChart.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartAppearanceChart : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartAppearanceChart()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartAppearanceChart),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty PalletBrushesDataProperty = BindableProperty.Create(\n        nameof(PalletBrushesData),\n        typeof(List<Brush>),\n        typeof(SfCartesianChartAppearanceChart),\n        default(List<Brush>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartAppearanceChart),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public List<Brush> PalletBrushesData\n    {\n        get => (List<Brush>)GetValue(PalletBrushesDataProperty);\n        set => SetValue(PalletBrushesDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Appearance/SfCartesianChartAppearanceSeries.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartAppearanceSeries\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <ContentView.Resources>\n        <toolkit:DataPointSelectionBehavior x:Key=\"SfCartesianChartSelectionBrush\" SelectionBrush=\"#314A6E\" />\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout Spacing=\"10\">\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                           Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"PaletteBrushes for Series\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Spacing=\"10\">\n                        <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                                  Margin=\"0, 0, 20, 0\">\n                            <toolkit:SfCartesianChart.Title>\n                                <Label Text=\"Simple Sample Chart\" FontSize=\"16\" \n                                        HorizontalTextAlignment=\"Center\" HorizontalOptions=\"Fill\"  VerticalOptions=\"Center\" />\n                            </toolkit:SfCartesianChart.Title>\n                            <toolkit:SfCartesianChart.XAxes>\n                                <toolkit:CategoryAxis>\n                                    <toolkit:CategoryAxis.Title>\n                                        <toolkit:ChartAxisTitle TextColor=\"{x:AppThemeBinding Dark={x:StaticResource White}, Light={x:StaticResource Black}}\" />\n                                    </toolkit:CategoryAxis.Title>\n                                </toolkit:CategoryAxis>\n                            </toolkit:SfCartesianChart.XAxes>\n                            <toolkit:SfCartesianChart.YAxes>\n                                <toolkit:NumericalAxis>\n                                    <toolkit:NumericalAxis.Title>\n                                        <toolkit:ChartAxisTitle TextColor=\"{x:AppThemeBinding Dark={x:StaticResource White}, Light={x:StaticResource Black}}\" />\n                                    </toolkit:NumericalAxis.Title>\n                                </toolkit:NumericalAxis>\n                            </toolkit:SfCartesianChart.YAxes>\n\n                            <toolkit:ColumnSeries EnableAnimation=\"True\"\n                                                  ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                                  PaletteBrushes=\"{x:Binding PalletBrushesData, Source={x:Reference root}, Mode=OneWay}\"\n                                                  SelectionBehavior=\"{x:StaticResource SfCartesianChartSelectionBrush}\"\n                                                  XBindingPath=\"Name\" YBindingPath=\"Exp\" />\n                        </toolkit:SfCartesianChart>\n\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpCodeDescription, Source={x:Reference root}}\"  CodeType=\"CSharp\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Appearance/SfCartesianChartAppearanceSeries.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartAppearanceSeries : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartAppearanceSeries()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartAppearanceSeries),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty PalletBrushesDataProperty = BindableProperty.Create(\n        nameof(PalletBrushesData),\n        typeof(List<Brush>),\n        typeof(SfCartesianChartAppearanceSeries),\n        default(List<Brush>)\n    );\n\n    public static readonly BindableProperty XamlCodeDescriptionProperty = BindableProperty.Create(\n        nameof(XamlCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartAppearanceChart),\n        default(string)\n    );\n\n    public static readonly BindableProperty CSharpCodeDescriptionProperty = BindableProperty.Create(\n        nameof(CSharpCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartAppearanceChart),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public List<Brush> PalletBrushesData\n    {\n        get => (List<Brush>)GetValue(PalletBrushesDataProperty);\n        set => SetValue(PalletBrushesDataProperty, value);\n    }\n\n    public string XamlCodeDescription\n    {\n        get => (string)GetValue(XamlCodeDescriptionProperty);\n        set => SetValue(XamlCodeDescriptionProperty, value);\n    }\n\n    public string CSharpCodeDescription\n    {\n        get => (string)GetValue(CSharpCodeDescriptionProperty);\n        set => SetValue(CSharpCodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Appearance/SfCartesianChartPlottingCustomization.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartPlottingCustomization\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout Spacing=\"10\">\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                           Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Plotting Customization for Chart\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Spacing=\"10\">\n                        <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                                    Margin=\"0, 0, 20, 0\">\n                            <toolkit:SfCartesianChart.PlotAreaBackgroundView>\n                                <AbsoluteLayout>\n                                    <Label Text=\"Copyright @ 2001 - 2022 Syncfusion Inc\"\n                                           FontSize=\"18\" AbsoluteLayout.LayoutBounds=\"1,1,-1,-1\"\n                                           AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                                           Opacity=\"0.4\"/>\n                                    <Label Text=\"CONFIDENTIAL\"\n                                           Rotation=\"340\"\n                                           FontSize=\"80\"\n                                           FontAttributes=\"Bold,Italic\"\n                                           TextColor=\"Gray\"\n                                           Margin=\"10,0,0,0\"\n                                           AbsoluteLayout.LayoutBounds=\"0.5,0.5,-1,-1\"\n                                           AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                                           Opacity=\"0.3\"/>\n                                </AbsoluteLayout>\n                            </toolkit:SfCartesianChart.PlotAreaBackgroundView>\n                            <toolkit:SfCartesianChart.XAxes>\n                                <toolkit:CategoryAxis ShowMajorGridLines=\"false\" Interval=\"2\" PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\">\n                                    <toolkit:CategoryAxis.MajorTickStyle>\n                                        <toolkit:ChartAxisTickStyle TickSize=\"10\">\n                                        </toolkit:ChartAxisTickStyle>\n                                    </toolkit:CategoryAxis.MajorTickStyle>\n                                </toolkit:CategoryAxis>\n                            </toolkit:SfCartesianChart.XAxes>\n                            <toolkit:SfCartesianChart.YAxes>\n                                <toolkit:NumericalAxis Maximum=\"100\" Minimum=\"0\" Interval=\"20\">\n                                    <toolkit:NumericalAxis.LabelStyle>\n                                        <toolkit:ChartAxisLabelStyle LabelFormat=\"0'%\"/>\n                                    </toolkit:NumericalAxis.LabelStyle>\n                                    <toolkit:NumericalAxis.AxisLineStyle>\n                                        <toolkit:ChartLineStyle StrokeWidth=\"0\">\n                                        </toolkit:ChartLineStyle>\n                                    </toolkit:NumericalAxis.AxisLineStyle>\n                                    <toolkit:NumericalAxis.MajorTickStyle>\n                                        <toolkit:ChartAxisTickStyle TickSize=\"0\" />\n                                    </toolkit:NumericalAxis.MajorTickStyle>\n                                </toolkit:NumericalAxis>\n                            </toolkit:SfCartesianChart.YAxes>\n                            <toolkit:SfCartesianChart.Series>\n                                <toolkit:LineSeries Label=\"Line 1\" EnableTooltip=\"True\" EnableAnimation=\"True\" StrokeWidth=\"1\" \n                                                    ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" \n                                                    XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                                    ShowMarkers=\"True\" LegendIcon=\"SeriesType\"/>\n                                <toolkit:LineSeries Label=\"Line 2\" EnableTooltip=\"True\" EnableAnimation=\"True\" StrokeWidth=\"1\" \n                                                    ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" \n                                                    XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                                    ShowMarkers=\"True\" LegendIcon=\"SeriesType\"/>\n                            </toolkit:SfCartesianChart.Series>\n                        </toolkit:SfCartesianChart>\n\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Appearance/SfCartesianChartPlottingCustomization.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartPlottingCustomization : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartPlottingCustomization()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty FirstLineComponentDataProperty = BindableProperty.Create(\n        nameof(FirstLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartPlottingCustomization),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SecondLineComponentDataProperty = BindableProperty.Create(\n        nameof(SecondLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartPlottingCustomization),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartPlottingCustomization),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> FirstLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(FirstLineComponentDataProperty);\n        set => SetValue(FirstLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> SecondLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(SecondLineComponentDataProperty);\n        set => SetValue(SecondLineComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Axis/SfCartesianChartCategoryAxis.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartCategoryAxis\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"CategoryAxisInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">CategoryAxis</strong> is an indexed based axis that plots values based on the index of the data point collection. The points are equally spaced here. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">LabelPlacement</strong> property in <strong style=\"color:blue\">CategoryAxis</strong> is used to placed the axis labels based on ticks and between ticks. The default value of <strong style=\"color:blue\">LabelPlacement</strong> is <strong style=\"color:blue\">OnTicks</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ By default, the <strong style=\"color:blue\">CategoryAxis</strong> axis labels are display with fixed interval 1. It can customized by using the <strong style=\"color:blue\">Interval</strong> property of axis. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ In Cartesian Charts, the <strong style=\"color:blue\">ArrangeByIndex</strong> property is used to determine how the items in a category axis are arranged. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ If <strong style=\"color:blue\">ArrangeByIndex</strong> is set to true, then the items in the category axis will be arranged according to their index values. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ If <strong style=\"color:blue\">ArrangeByIndex</strong> is set to false, then the items in the category axis will be arranged according to their values. By default, <strong style=\"color:blue\">ArrangeByIndex</strong> is true. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                           Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Category Axis\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Grid ColumnDefinitions=\"0.4*, 0.6*\" x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"CategoryAxisChartCollectionView\"\n                                        Grid.Column=\"0\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                        <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\" \n                                                          Margin=\"0, 0, 20, 0\">\n                                    <toolkit:SfCartesianChart.Title>\n                                        <Label Text=\"Category Axis Column Sample Chart\"  Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                                    </toolkit:SfCartesianChart.Title>\n                                    <toolkit:SfCartesianChart.XAxes>\n                                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" />\n                                    </toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:SfCartesianChart.YAxes>\n                                        <toolkit:NumericalAxis IsVisible=\"False\" ShowMajorGridLines=\"False\"/>\n                                    </toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:SfCartesianChart.Series>\n                                        <toolkit:ColumnSeries ShowDataLabels=\"True\" EnableAnimation=\"True\" \n                                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                              XBindingPath=\"Name\" YBindingPath=\"Value\">\n                                            <toolkit:ColumnSeries.DataLabelSettings>\n                                                <toolkit:CartesianDataLabelSettings LabelPlacement=\"Inner\">\n                                                </toolkit:CartesianDataLabelSettings>\n                                            </toolkit:ColumnSeries.DataLabelSettings>\n                                        </toolkit:ColumnSeries>\n                                    </toolkit:SfCartesianChart.Series>\n                                </toolkit:SfCartesianChart>\n\n                                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Axis/SfCartesianChartCategoryAxis.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartCategoryAxis : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartCategoryAxis()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartCategoryAxis),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartCategoryAxis),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var categoryAxisInfo = (string[])Resources[\"CategoryAxisInfo\"];\n        CategoryAxisChartCollectionView.ItemsSource = categoryAxisInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Axis/SfCartesianChartDateTimeAxis.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartDateTimeAxis\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"DateTimeAxisInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">DateTimeAxis</strong> is used to plot <strong style=\"color:blue\">DateTime</strong> values. The <strong style=\"color:blue\">DateTimeAxis</strong> is widely used to make financial charts in places like the Stock Market, where index plotting is done every day. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ In <strong style=\"color:blue\">DateTimeAxis</strong>, intervals can be customized by using the <strong style=\"color:blue\">Interval</strong> and <strong style=\"color:blue\">IntervalType</strong> properties. For example, setting <strong style=\"color:blue\">Interval</strong> as 6 and <strong style=\"color:blue\">IntervalType</strong> as <strong style=\"color:blue\">Months</strong> will consider 6 months as interval. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Minimum</strong> and <strong style=\"color:blue\">Maximum</strong> properties behavior is same as in <strong style=\"color:blue\">NumericalAxis</strong> instead of setting numerical value, have to set date time values. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                           Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"DateTime Axis\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Grid ColumnDefinitions=\"0.4*, 0.6*\" x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"DateTimeAxisChartCollectionView\"\n                                        Grid.Column=\"0\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                        <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                                          Margin=\"0, 0, 20, 0\">\n                                    <toolkit:SfCartesianChart.Title>\n                                        <Label Text=\"DateTime Axis Line Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                                    </toolkit:SfCartesianChart.Title>\n                                    <toolkit:SfCartesianChart.XAxes>\n                                        <toolkit:DateTimeAxis EdgeLabelsDrawingMode=\"Shift\" ZoomFactor=\"0.7\" ZoomPosition=\"0.4\" >\n                                            <toolkit:DateTimeAxis.Title>\n                                                <toolkit:ChartAxisTitle Text=\"DateTime Axis\"/>\n                                            </toolkit:DateTimeAxis.Title>\n                                        </toolkit:DateTimeAxis>\n                                    </toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:SfCartesianChart.YAxes>\n                                        <toolkit:NumericalAxis>\n                                            <toolkit:NumericalAxis.Title>\n                                                <toolkit:ChartAxisTitle Text=\"Numerical Axis\"/>\n                                            </toolkit:NumericalAxis.Title>\n                                        </toolkit:NumericalAxis>\n                                    </toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:SfCartesianChart.ZoomPanBehavior>\n                                        <toolkit:ChartZoomPanBehavior x:Name=\"zooming1\" EnablePinchZooming=\"False\" EnableDoubleTap=\"False\" EnablePanning=\"False\" ZoomMode=\"X\" />\n                                    </toolkit:SfCartesianChart.ZoomPanBehavior>\n                                    <toolkit:SfCartesianChart.Series>\n                                        <toolkit:FastLineSeries EnableAnimation=\"True\" EnableTooltip=\"True\" \n                                                                ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                                XBindingPath=\"Date\" YBindingPath=\"Value\"/>\n                                    </toolkit:SfCartesianChart.Series>\n                                </toolkit:SfCartesianChart>\n\n                                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Axis/SfCartesianChartDateTimeAxis.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartDateTimeAxis : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartDateTimeAxis()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartDateTimeAxis),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartDateTimeAxis),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var dateTimeAxisInfo = (string[])Resources[\"DateTimeAxisInfo\"];\n        DateTimeAxisChartCollectionView.ItemsSource = dateTimeAxisInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Axis/SfCartesianChartLogarithmicAxis.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartLogarithmicAxis\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"LogarithmicAxisInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">LogarithmicAxis</strong> uses a logarithmic scale, and it is very useful in visualizing data when the given data range has a big difference. It can be used either on the x-axis or the chart’s y-axis. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Axis interval can be customized using the <strong style=\"color:blue\">Interval</strong> property of the axis. By default, interval will be calculated based on the minimum and maximum value of the provided data. And the default value of the interval is 1. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To customize the range of the log axis, you can use the <strong style=\"color:blue\">Minimum</strong>, <strong style=\"color:blue\">Maximum</strong> properties of the <strong style=\"color:blue\">LogarithmicAxis</strong>. By default, an excellent range will be calculated automatically based on the provided data. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The logarithmic axis base can be customized using the <strong style=\"color:blue\">LogarithmicBase</strong> property of the axis. By default, the base value is 10. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Logarithmic Axis\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Grid ColumnDefinitions=\"0.4*, 0.6*\" x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"LogarithmicAxisChartCollectionView\"\n                                        Grid.Column=\"0\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                        <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <toolkit:SfCartesianChart IsTransposed=\"False\" HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                                          Margin=\"0, 0, 20, 0\">\n                                    <toolkit:SfCartesianChart.Title>\n                                        <Label Text=\"Logarithmic Axis Line Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                                    </toolkit:SfCartesianChart.Title>\n                                    <toolkit:SfCartesianChart.XAxes>\n                                        <toolkit:CategoryAxis PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\" EdgeLabelsDrawingMode=\"Shift\" ShowMajorGridLines=\"True\">\n                                            <toolkit:CategoryAxis.Title>\n                                                <toolkit:ChartAxisTitle Text=\"Category Axis\" />\n                                            </toolkit:CategoryAxis.Title>\n                                            <toolkit:CategoryAxis.MajorGridLineStyle>\n                                                <toolkit:ChartLineStyle StrokeWidth=\"0.5\"/>\n                                            </toolkit:CategoryAxis.MajorGridLineStyle>\n                                            <toolkit:CategoryAxis.MajorTickStyle>\n                                                <toolkit:ChartAxisTickStyle TickSize=\"10\"/>\n                                            </toolkit:CategoryAxis.MajorTickStyle>\n                                            <toolkit:CategoryAxis.AxisLineStyle>\n                                                <toolkit:ChartLineStyle StrokeWidth=\"0\"/>\n                                            </toolkit:CategoryAxis.AxisLineStyle>\n                                        </toolkit:CategoryAxis>\n                                    </toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:SfCartesianChart.YAxes>\n                                        <toolkit:LogarithmicAxis Minimum=\"10\" Maximum=\"1000\" MinorTicksPerInterval=\"5\" ShowMinorGridLines=\"True\" >\n                                            <toolkit:LogarithmicAxis.Title>\n                                                <toolkit:ChartAxisTitle Text=\"Logarithmic Axis\" />\n                                            </toolkit:LogarithmicAxis.Title>\n                                            <toolkit:LogarithmicAxis.AxisLineStyle>\n                                                <toolkit:ChartLineStyle StrokeWidth=\"0\"/>\n                                            </toolkit:LogarithmicAxis.AxisLineStyle>\n                                            <toolkit:LogarithmicAxis.MajorGridLineStyle>\n                                                <toolkit:ChartLineStyle StrokeWidth=\"1.4\"/>\n                                            </toolkit:LogarithmicAxis.MajorGridLineStyle>\n                                            <toolkit:LogarithmicAxis.MinorTickStyle>\n                                                <toolkit:ChartAxisTickStyle StrokeWidth=\"0\"/>\n                                            </toolkit:LogarithmicAxis.MinorTickStyle>\n                                            <toolkit:LogarithmicAxis.MajorTickStyle>\n                                                <toolkit:ChartAxisTickStyle StrokeWidth=\"0\"/>\n                                            </toolkit:LogarithmicAxis.MajorTickStyle>\n                                            <toolkit:LogarithmicAxis.LabelStyle>\n                                                <toolkit:ChartAxisLabelStyle LabelFormat=\"$##.##\"/>\n                                            </toolkit:LogarithmicAxis.LabelStyle>\n                                        </toolkit:LogarithmicAxis>\n                                    </toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:SfCartesianChart.Series>\n                                        <toolkit:LineSeries StrokeWidth=\"2\" EnableTooltip=\"True\" EnableAnimation=\"False\" \n                                                            ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                            XBindingPath=\"Name\" YBindingPath=\"Value\"/>\n                                        <toolkit:ScatterSeries PointWidth=\"8\" PointHeight=\"8\" EnableAnimation=\"False\" \n                                                               ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                                               XBindingPath=\"Name\" YBindingPath=\"Value\"/>\n                                    </toolkit:SfCartesianChart.Series>\n                                </toolkit:SfCartesianChart>\n\n                                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\" CodeType=\"Xaml\"/>\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Axis/SfCartesianChartLogarithmicAxis.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartLogarithmicAxis : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartLogarithmicAxis()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartLogarithmicAxis),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartLogarithmicAxis),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var logarithmicAxisInfo = (string[])Resources[\"LogarithmicAxisInfo\"];\n        LogarithmicAxisChartCollectionView.ItemsSource = logarithmicAxisInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Axis/SfCartesianChartNumericalAxis.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartNumericalAxis\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"NumericalAxisInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">NumericalAxis</strong> is used to plot numerical values to the chart. <strong style=\"color:blue\">NumericalAxis</strong> can be defined for both <strong style=\"color:blue\">XAxes</strong> and <strong style=\"color:blue\">YAxes</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Axis interval can be customized by using the <strong style=\"color:blue\">Interval</strong> property. By default, interval will be calculated based on the minimum and maximum value of the provided data. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Maximum</strong> and <strong style=\"color:blue\">Minimum</strong> properties of axis is used for setting the maximum and minimum value of the axis range respectively. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Numerical Axis\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Grid ColumnDefinitions=\"0.4*, 0.6*\" x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"NumericalAxisChartCollectionView\"\n                                        Grid.Column=\"0\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                        <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                                          Margin=\"0, 0, 20, 0\">\n                                    <toolkit:SfCartesianChart.Legend>\n                                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                                    </toolkit:SfCartesianChart.Legend>\n                                    <toolkit:SfCartesianChart.Title>\n                                        <Label Text=\"Numerical Axis Column Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Center\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"CenterAndExpand\" FontSize=\"16\"/>\n                                    </toolkit:SfCartesianChart.Title>\n                                    <toolkit:SfCartesianChart.XAxes>\n                                        <toolkit:NumericalAxis Interval=\"1\" />\n                                    </toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:SfCartesianChart.YAxes>\n                                        <toolkit:NumericalAxis ShowMajorGridLines=\"True\" Minimum=\"0\"/>\n                                    </toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:SfCartesianChart.Series>\n                                        <toolkit:ColumnSeries ShowDataLabels=\"True\" EnableAnimation=\"True\" Label=\"Data 1\" Spacing=\"0.075\" \n                                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                              XBindingPath=\"Number\" YBindingPath=\"Exp\">\n                                            <toolkit:ColumnSeries.DataLabelSettings>\n                                                <toolkit:CartesianDataLabelSettings>\n                                                    <toolkit:CartesianDataLabelSettings.LabelStyle>\n                                                        <toolkit:ChartDataLabelStyle Margin=\"0\" FontSize=\"10\"/>\n                                                    </toolkit:CartesianDataLabelSettings.LabelStyle>\n                                                </toolkit:CartesianDataLabelSettings>\n                                            </toolkit:ColumnSeries.DataLabelSettings>\n                                        </toolkit:ColumnSeries>\n                                        <toolkit:ColumnSeries ShowDataLabels=\"True\" EnableAnimation=\"True\" Label=\"Data 2\" Spacing=\"0.075\" \n                                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                              XBindingPath=\"Number\" YBindingPath=\"Exp\">\n                                            <toolkit:ColumnSeries.DataLabelSettings>\n                                                <toolkit:CartesianDataLabelSettings>\n                                                    <toolkit:CartesianDataLabelSettings.LabelStyle>\n                                                        <toolkit:ChartDataLabelStyle Margin=\"0\" FontSize=\"10\"/>\n                                                    </toolkit:CartesianDataLabelSettings.LabelStyle>\n                                                </toolkit:CartesianDataLabelSettings>\n                                            </toolkit:ColumnSeries.DataLabelSettings>\n                                        </toolkit:ColumnSeries>\n                                    </toolkit:SfCartesianChart.Series>\n                                </toolkit:SfCartesianChart>\n\n                                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Axis/SfCartesianChartNumericalAxis.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartNumericalAxis : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartNumericalAxis()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartNumericalAxis),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartNumericalAxis),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var numericalAxisInfo = (string[])Resources[\"NumericalAxisInfo\"];\n        NumericalAxisChartCollectionView.ItemsSource = numericalAxisInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Axis/SfCartesianChartOtherAxis.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartOtherAxis\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"AxisCrossingInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">RenderNextToCrossingValue</strong> property is used to determine whether the crossing axis should be placed at crossing position or not. The default value of <strong style=\"color:blue\">RenderNextToCrossingValue</strong> property is true. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ For the crossing in date time horizontal axis, date object should be provided as value for <strong style=\"color:blue\">CrossesAt</strong> property of vertical axis. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The chart allows you to position the axis to opposed position by setting the value as <strong style=\"color:blue\">double.MaxValue</strong> to the <strong style=\"color:blue\">CrossesAt</strong> property. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cartesian Chart Multiple Axes\" />\n        <Label Text=\"Cartesian charts provides support to arrange the multiple series inside the same chart area with specified x-axis and y-axis. There are two properties XAxisName and YAxisName in all the Cartesian series type, which is used to provide multiple axes support. These axes can be arranged in a stacking order or in a side by side pattern.\" />\n        <Label Text=\"By default, The 0th index value of XAxes and YAxes is used to plot all of the series.\" />\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"MultipleAxesArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Multiple Axes Chart Sample\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Grid x:Name=\"MultipleAxesInfo\" ColumnDefinitions=\"0.15*, 0.7*, 0.15*\">\n                        <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <VerticalStackLayout Grid.Column=\"1\" Spacing=\"5\">\n                                <toolkit:SfCartesianChart>\n                                    <toolkit:SfCartesianChart.XAxes>\n                                        <toolkit:CategoryAxis ShowMajorGridLines=\"False\"/>\n                                    </toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:SfCartesianChart.YAxes>\n                                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\"/>\n                                        <toolkit:NumericalAxis Name=\"ColumnYAxis2\" CrossesAt=\"{Static x:Double.MaxValue}\" ShowMajorGridLines=\"False\"/>\n                                    </toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:ColumnSeries ItemsSource=\"{x:Binding MultipleAxesComponentData, Source={x:Reference root}}\" \n                                                          XBindingPath=\"Name\" YBindingPath=\"Value\" YAxisName=\"ColumnYAxis2\"/>\n                                    <toolkit:SplineSeries ItemsSource=\"{x:Binding MultipleAxesComponentData, Source={x:Reference root}}\" \n                                                          XBindingPath=\"Name\" YBindingPath=\"Exp\"/>\n                                </toolkit:SfCartesianChart>\n\n                                <core:SourceCodeExpander Code=\"{x:Binding MultipleAxesCodeDescription, Source={x:Reference root}}\" CodeType=\"Xaml\"/>\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnMultipleAxesGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cartesian Chart Axis Crossing\" />\n        <Label Text=\"The chart allows you to customize the origin, by default the axis will be rendered with (0,0) as the origin in x and y-axes. An axis can be positioned anywhere in the chart area by using the CrossesAt property. This property specifies where the horizontal axis intersects or crosses the vertical axis, and vice versa. The default value of the CrossesAt property is double.NaN.\" />\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"AxisCrossingArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                       Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Axis Crossing Chart Sample\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Grid x:Name=\"AxisCrossingInfo\" ColumnDefinitions=\"0.4*, 0.6*\" Margin=\"5\">\n                        <CollectionView Grid.Column=\"0\"\n                                        x:Name=\"AxisCrossingCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                        <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <toolkit:SfCartesianChart x:Name=\"axisCrossingChart\">\n                                    <toolkit:SfCartesianChart.ZoomPanBehavior>\n                                        <toolkit:ChartZoomPanBehavior/>\n                                    </toolkit:SfCartesianChart.ZoomPanBehavior>\n                                    <toolkit:SfCartesianChart.XAxes>\n                                        <toolkit:NumericalAxis CrossesAt=\"0\" Minimum=\"-10\" Maximum=\"10\" \n                                                               EdgeLabelsDrawingMode=\"Shift\"/>\n                                    </toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:SfCartesianChart.YAxes>\n                                        <toolkit:NumericalAxis CrossesAt=\"0\" Minimum=\"-10\" Maximum=\"10\"  \n                                                               EdgeLabelsDrawingMode=\"Shift\"/>\n                                    </toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:SfCartesianChart.Series>\n                                        <toolkit:SplineSeries ItemsSource=\"{x:Binding AxisCrossingComponentData, Source={x:Reference root}}\" \n                                                              XBindingPath=\"Value\" YBindingPath=\"Size\"/>\n                                    </toolkit:SfCartesianChart.Series>\n                                </toolkit:SfCartesianChart>\n\n                                <core:SourceCodeExpander Code=\"{x:Binding AxisCrossingCodeDescription, Source={x:Reference root}}\" CodeType=\"Xaml\"/>\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnAxisCrossingGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Axis/SfCartesianChartOtherAxis.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartOtherAxis : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartOtherAxis()\n    {\n        InitializeComponent();\n        MultipleAxesInfo.IsVisible = false;\n        AxisCrossingInfo.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty MultipleAxesComponentDataProperty = BindableProperty.Create(\n        nameof(MultipleAxesComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartOtherAxis),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty AxisCrossingComponentDataProperty = BindableProperty.Create(\n        nameof(AxisCrossingComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartOtherAxis),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty MultipleAxesCodeDescriptionProperty = BindableProperty.Create(\n        nameof(MultipleAxesCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartOtherAxis),\n        default(string)\n    );\n\n    public static readonly BindableProperty AxisCrossingCodeDescriptionProperty = BindableProperty.Create(\n        nameof(AxisCrossingCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartOtherAxis),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> MultipleAxesComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(MultipleAxesComponentDataProperty);\n        set => SetValue(MultipleAxesComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> AxisCrossingComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(AxisCrossingComponentDataProperty);\n        set => SetValue(AxisCrossingComponentDataProperty, value);\n    }\n\n    public string MultipleAxesCodeDescription\n    {\n        get => (string)GetValue(MultipleAxesCodeDescriptionProperty);\n        set => SetValue(MultipleAxesCodeDescriptionProperty, value);\n    }\n\n    public string AxisCrossingCodeDescription\n    {\n        get => (string)GetValue(AxisCrossingCodeDescriptionProperty);\n        set => SetValue(AxisCrossingCodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var axisCrossingInfo = (string[])Resources[\"AxisCrossingInfo\"];\n        AxisCrossingCollectionView.ItemsSource = axisCrossingInfo;\n    }\n\n    private async void OnMultipleAxesGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (MultipleAxesArrowImage.Rotation == 0)\n        {\n            await MultipleAxesArrowImage.RotateTo(90);\n            MultipleAxesInfo.IsVisible = true;\n        }\n        else\n        {\n            await MultipleAxesArrowImage.RotateTo(0);\n            MultipleAxesInfo.IsVisible = false;\n        }\n    }\n\n    private async void OnAxisCrossingGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (AxisCrossingArrowImage.Rotation == 0)\n        {\n            await AxisCrossingArrowImage.RotateTo(90);\n            AxisCrossingInfo.IsVisible = true;\n        }\n        else\n        {\n            await AxisCrossingArrowImage.RotateTo(0);\n            AxisCrossingInfo.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartArea.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartArea\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"AreaChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The area chart is rendered by using a collection of line segments connected to form a closed loop area, filled with the specified color. To render a area chart, create an instance of <strong style=\"color:blue\">AreaSeries</strong> and add it to the <strong style=\"color:blue\">Series</strong> collection property of the chart. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n    \n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Area Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"RangeAreaChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n        \n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\" \n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Area Chart\" FontSize=\"16\" \n                               HorizontalTextAlignment=\"Center\" HorizontalOptions=\"Fill\"  VerticalOptions=\"Center\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis EdgeLabelsDrawingMode=\"Shift\" Interval=\"1\" ShowMajorGridLines=\"false\">\n                            <toolkit:CategoryAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"5\"/>\n                            </toolkit:CategoryAxis.MajorTickStyle>\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Minimum=\"0\" Maximum=\"6\" Interval=\"1\">\n                            <toolkit:NumericalAxis.Title>\n                                <toolkit:ChartAxisTitle Text=\"Value in Millions\" />\n                            </toolkit:NumericalAxis.Title>\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'M\" />\n                            </toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"1\"/>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:AreaSeries Label=\"Product A\" LegendIcon=\"SeriesType\"\n                                            EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\"\n                                            ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                            XBindingPath=\"Name\" YBindingPath=\"High\" />\n                        <toolkit:AreaSeries Label=\"Product B\" LegendIcon=\"SeriesType\"\n                                            EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\"\n                                            ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                            XBindingPath=\"Name\" YBindingPath=\"Low\"/>\n                        <toolkit:AreaSeries Label=\"Product C\" LegendIcon=\"SeriesType\"\n                                            EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\"\n                                            ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                            XBindingPath=\"Name\" YBindingPath=\"Value\"/>\n                        <toolkit:AreaSeries Label=\"Product D\" LegendIcon=\"SeriesType\"\n                                            EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\"\n                                            ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                            XBindingPath=\"Name\" YBindingPath=\"Size\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartArea.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartArea : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartArea()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartArea),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartArea),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var rangeAreaChartInfo = (string[])Resources[\"AreaChartInfo\"];\n        RangeAreaChartCollectionView.ItemsSource = rangeAreaChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0) \n        { \n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        } \n        else \n        { \n            await ArrowImage.RotateTo(0);\n            Info.IsVisible= false;\n        } \n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartRangeArea.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartRangeArea\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"RangeAreaChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ Range Area Chart is a type of data visualization useful for displaying the relationship between two variables over time. In this <strong style=\"color:blue\">Series</strong>, the area between two lines is filled to indicate a range of values, such as a high and low price range or an upper and lower limit. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ By displaying ranges of data, range area series can make it easier to compare multiple datasets at once. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To render a range area chart, create an instance of the <strong style=\"color:blue\">RangeAreaSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of the <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Since the <strong style=\"color:blue\">RangeAreaSeries</strong> requires two Y values for each point, your data should contain both the high and low values. These high and low values specify the maximum and minimum ranges of the point. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Range Area Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"RangeAreaChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\" \n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.ZoomPanBehavior>\n                        <toolkit:ChartZoomPanBehavior EnablePinchZooming=\"False\" EnableDoubleTap=\"False\"/>\n                    </toolkit:SfCartesianChart.ZoomPanBehavior>\n\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Range Area Chart\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:DateTimeAxis LabelCreated=\"LabelCreated\" Interval=\"5\" \n                                              ShowMajorGridLines=\"false\" AutoScrollingMode=\"Start\" AutoScrollingDeltaType=\"Days\"/>\n                    </toolkit:SfCartesianChart.XAxes>\n\n                    <toolkit:SfCartesianChart.YAxes >\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\" Minimum=\"0\" Maximum=\"50\" Interval=\"10\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat= \"0.#&#186;C\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:RangeAreaSeries ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\" \n                                                 XBindingPath=\"Date\" High=\"High\" Low=\"Low\" LegendIcon=\"SeriesType\"\n                                                 EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\" />\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\" CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartRangeArea.xaml.cs",
    "content": "using Syncfusion.Maui.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartRangeArea : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartRangeArea()\n\t{\n\t\tInitializeComponent();\n        Info.IsVisible = false;\n\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartRangeArea),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartRangeArea),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Event ]\n    private void LabelCreated(object? sender, ChartAxisLabelEventArgs e)\n    {\n        int month = int.MaxValue;\n\n        DateTime baseDate = new(1899, 12, 30);\n        var date = baseDate.AddDays(e.Position);\n        if (date.Month != month)\n        {\n            ChartAxisLabelStyle labelStyle = new();\n            labelStyle.LabelFormat = \"MMM-dd\";\n            labelStyle.FontAttributes = FontAttributes.Bold;\n            e.LabelStyle = labelStyle;\n\n            month = date.Month;\n        }\n        else\n        {\n            ChartAxisLabelStyle labelStyle = new();\n            labelStyle.LabelFormat = \"dd\";\n            e.LabelStyle = labelStyle;\n        }\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e) \n    {\n        var rangeAreaChartInfo = (string[])Resources[\"RangeAreaChartInfo\"];\n        RangeAreaChartCollectionView.ItemsSource = rangeAreaChartInfo; \n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartSplineArea.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartSplineArea\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"SplineAreaChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">SplineAreaSeries</strong> connects a series of data points using smooth bezier line curves, with the underlying areas filled. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Spline Area Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"SplineAreaChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\" \n                                      Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Spline Area Chart\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis EdgeLabelsDrawingMode=\"Shift\" Interval=\"1\" ShowMajorGridLines=\"false\">\n                            <toolkit:CategoryAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"5\"/>\n                            </toolkit:CategoryAxis.MajorTickStyle>\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Minimum=\"0\" Maximum=\"6\" Interval=\"1\">\n                            <toolkit:NumericalAxis.Title>\n                                <toolkit:ChartAxisTitle Text=\"Value in Millions\" />\n                            </toolkit:NumericalAxis.Title>\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'M\" />\n                            </toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"1\"/>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:SplineAreaSeries Label=\"Product A\" EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\" \n                                                  ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                  XBindingPath=\"Name\" YBindingPath=\"High\" LegendIcon=\"SeriesType\"/>\n                        <toolkit:SplineAreaSeries Label=\"Product B\" EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\" \n                                                  ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                  XBindingPath=\"Name\" YBindingPath=\"Low\" LegendIcon=\"SeriesType\"/>\n                        <toolkit:SplineAreaSeries Label=\"Product C\" EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\" \n                                                  ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                  XBindingPath=\"Name\" YBindingPath=\"Value\" LegendIcon=\"SeriesType\"/>\n                        <toolkit:SplineAreaSeries Label=\"Product D\" EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\" \n                                                  ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                  XBindingPath=\"Name\" YBindingPath=\"Size\" LegendIcon=\"SeriesType\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\" CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartSplineArea.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartSplineArea : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartSplineArea()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartSplineArea),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartSplineArea),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var splineAreaChartInfo = (string[])Resources[\"SplineAreaChartInfo\"];\n        SplineAreaChartCollectionView.ItemsSource = splineAreaChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartSplineRangeArea.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartSplineRangeArea\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"SplineRangeAreaChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ Spline Range Area Chart is used to visualize data points with smooth curves. In this series, the area between the curves is filled to indicate a range of values, such as a high and low price range or an upper and lower limit. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To render a spline range area chart, create an instance of <strong style=\"color:blue\">SplineRangeAreaSeries</strong> and add it to the <strong style=\"color:blue\">Series</strong> collection property of <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Since the <strong style=\"color:blue\">SplineRangeAreaSeries</strong> requires two Y values for each point, your data should contain both the high and low values. These high and low values specify the maximum and minimum ranges of the point. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n    \n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Spline Range Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"SplineRangeAreaChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\" \n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.ZoomPanBehavior>\n                        <toolkit:ChartZoomPanBehavior EnablePinchZooming=\"False\" EnableDoubleTap=\"False\"/>\n                    </toolkit:SfCartesianChart.ZoomPanBehavior>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Spline Range Area Chart\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:DateTimeAxis LabelCreated=\"LabelCreated\" Interval=\"5\" \n                                              ShowMajorGridLines=\"false\" AutoScrollingMode=\"Start\" AutoScrollingDeltaType=\"Days\"/>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes >\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\" Minimum=\"0\" Maximum=\"50\" Interval=\"10\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat= \"0.#&#186;c\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SplineRangeAreaSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                   XBindingPath=\"Date\" High=\"High\" Low=\"Low\" LegendIcon=\"SeriesType\"\n                                                   EnableAnimation=\"True\" EnableTooltip=\"True\" ShowTrackballLabel=\"True\" StrokeWidth=\"1\" />\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\" CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartSplineRangeArea.xaml.cs",
    "content": "using Syncfusion.Maui.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartSplineRangeArea : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartSplineRangeArea()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartSplineRangeArea),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartSplineRangeArea),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Event ]\n    private void LabelCreated(object? sender, ChartAxisLabelEventArgs e)\n    {\n        int month = int.MaxValue; \n\n        DateTime baseDate = new(1899, 12, 30);\n        var date = baseDate.AddDays(e.Position);\n        if (date.Month != month)\n        {\n            ChartAxisLabelStyle labelStyle = new();\n            labelStyle.LabelFormat = \"MMM-dd\";\n            labelStyle.FontAttributes = FontAttributes.Bold;\n            e.LabelStyle = labelStyle;\n\n            month = date.Month;\n        }\n        else\n        {\n            ChartAxisLabelStyle labelStyle = new();\n            labelStyle.LabelFormat = \"dd\";\n            e.LabelStyle = labelStyle;\n        }\n    }\n\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var splineRangeAreaChartInfo = (string[])Resources[\"SplineRangeAreaChartInfo\"];\n        SplineRangeAreaChartCollectionView.ItemsSource = splineRangeAreaChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartStackingArea.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartStackingArea\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"StackingAreaChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The stacked area chart enables users to visually represent data points on top of each other to indicate the cumulative value of the data points. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To render a stacked area chart, create an instance of the <strong style=\"color:blue\">StackingAreaSeries</strong> and add it to the Series collection property of the <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Stacking Area Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"StackingAreaChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                      Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Stacking Area Chart\" LineBreakMode=\"WordWrap\" Margin=\"2,0,2,0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis IsVisible=\"True\" ShowMajorGridLines=\"False\" Interval=\"2\" EdgeLabelsDrawingMode=\"Shift\" PlotOffsetEnd=\"5\">\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes >\n                        <toolkit:NumericalAxis Minimum=\"0\" Maximum=\"7\" Interval=\"1\" ShowMajorGridLines=\"True\" ShowMinorGridLines=\"false\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'B\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\">\n                                </toolkit:ChartLineStyle>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:StackingAreaSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                            XBindingPath=\"Year\" YBindingPath=\"High\"\n                                            Label=\"Product 1\" LegendIcon=\"SeriesType\" EnableAnimation=\"True\"\n                                            EnableTooltip=\"True\" />\n                    <toolkit:StackingAreaSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                            XBindingPath=\"Year\" YBindingPath=\"Low\"\n                                            Label=\"Product 2\" LegendIcon=\"SeriesType\" EnableAnimation=\"True\"\n                                            EnableTooltip=\"True\" />\n                    <toolkit:StackingAreaSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                            XBindingPath=\"Year\" YBindingPath=\"Value\"\n                                            Label=\"Product 3\" LegendIcon=\"SeriesType\" EnableAnimation=\"True\"\n                                            EnableTooltip=\"True\" />\n                    <toolkit:StackingAreaSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                            XBindingPath=\"Year\" YBindingPath=\"Size\"\n                                            Label=\"Product 4\" LegendIcon=\"SeriesType\" EnableAnimation=\"True\"\n                                            EnableTooltip=\"True\" />\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\" CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartStackingArea.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartStackingArea : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartStackingArea()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStackingArea),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartStackingArea),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var stackingAreaChartInfo = (string[])Resources[\"StackingAreaChartInfo\"];\n        StackingAreaChartCollectionView.ItemsSource = stackingAreaChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartStackingArea100.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartStackingArea100\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"StackingArea100ChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ To render the StackedArea100 chart, create an instance of the <strong style=\"color:blue\">StackingArea100Series</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of the <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Stacking Area 100% Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"StackingArea100ChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\" \n                                      Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"StackingArea100 Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis IsVisible=\"True\" ShowMajorGridLines=\"False\" Interval=\"2\" EdgeLabelsDrawingMode=\"Shift\">\n                            <toolkit:CategoryAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle/>\n                            </toolkit:CategoryAxis.AxisLineStyle>\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes >\n                        <toolkit:NumericalAxis Minimum=\"0\" Maximum=\"100\" Interval=\"20\" ShowMajorGridLines=\"True\" ShowMinorGridLines=\"False\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'%\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\">\n                                </toolkit:ChartLineStyle>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:StackingArea100Series ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                                   XBindingPath=\"Year\" YBindingPath=\"High\"\n                                                   Label=\"Product 1\" LegendIcon=\"SeriesType\"\n                                                   EnableAnimation=\"True\" EnableTooltip=\"True\"/>\n                    <toolkit:StackingArea100Series ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                                   XBindingPath=\"Year\" YBindingPath=\"Low\" \n                                                   Label=\"Product 2\" LegendIcon=\"SeriesType\"\n                                                   EnableAnimation=\"True\" EnableTooltip=\"True\"/>\n                    <toolkit:StackingArea100Series ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                                   XBindingPath=\"Year\" YBindingPath=\"Value\" \n                                                   Label=\"Product 3\" LegendIcon=\"SeriesType\"\n                                                   EnableAnimation=\"True\" EnableTooltip=\"True\"/>\n                    <toolkit:StackingArea100Series ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                                   XBindingPath=\"Year\" YBindingPath=\"Size\" \n                                                   Label=\"Product 4\" LegendIcon=\"SeriesType\"\n                                                   EnableAnimation=\"True\" EnableTooltip=\"True\"/>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\" CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartStackingArea100.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartStackingArea100 : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartStackingArea100()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStackingArea100),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartStackingArea100),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var stackingArea100ChartInfo = (string[])Resources[\"StackingArea100ChartInfo\"];\n        StackingArea100ChartCollectionView.ItemsSource = stackingArea100ChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartStepArea.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView  \n    x:Class=\"MAUIsland.Core.SfCartesianChartStepArea\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"StepAreaChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The step area chart displays data that changes over time or across different categories. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ In a step area chart, the data points are connected by horizontal and vertical lines to create a series of steps. Each step represents a specific time interval or category. The area between the steps is then filled with a color or shading. To render an area chart, create an instance of <strong style=\"color:blue\">StepAreaSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of the <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Step Area Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"StepAreaChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\" \n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Step Area Chart\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis EdgeLabelsDrawingMode=\"Shift\" Interval=\"1\" ShowMajorGridLines=\"false\">\n                            <toolkit:CategoryAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"5\"/>\n                            </toolkit:CategoryAxis.MajorTickStyle>\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Minimum=\"0\" Maximum=\"6\" Interval=\"1\">\n                            <toolkit:NumericalAxis.Title>\n                                <toolkit:ChartAxisTitle Text=\"Value in Millions\" />\n                            </toolkit:NumericalAxis.Title>\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'M\" />\n                            </toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"1\"/>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:StepAreaSeries Label=\"Product A\" EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\"\n                                                ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\" \n                                                XBindingPath=\"Name\" YBindingPath=\"High\" LegendIcon=\"SeriesType\"/>\n                        <toolkit:StepAreaSeries Label=\"Product B\" EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\"\n                                                ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\" \n                                                XBindingPath=\"Name\" YBindingPath=\"Low\" LegendIcon=\"SeriesType\"/>\n                        <toolkit:StepAreaSeries Label=\"Product C\" EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\"\n                                                ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\" \n                                                XBindingPath=\"Name\" YBindingPath=\"Value\" LegendIcon=\"SeriesType\"/>\n                        <toolkit:StepAreaSeries Label=\"Product D\" EnableAnimation=\"True\" EnableTooltip=\"True\" StrokeWidth=\"1\"\n                                                ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\" \n                                                XBindingPath=\"Name\" YBindingPath=\"Size\" LegendIcon=\"SeriesType\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\" CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Area/SfCartesianChartStepArea.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartStepArea : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartStepArea()\n\t{\n\t\tInitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStepArea),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartStepArea),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var stepAreaChartInfo = (string[])Resources[\"StepAreaChartInfo\"];\n        StepAreaChartCollectionView.ItemsSource = stepAreaChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/BoxPlot/SfCartesianChartBoxAndWhisker.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartBoxAndWhisker\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"BoxAndWhiskerChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ Box plot chart is used to show the distribution of data within a population. To render a box plot chart, create an instance of <strong style=\"color:blue\">BoxAndWhiskerSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Box plots are great for comparing the distribution of multiple datasets side by side. By comparing the median, quartiles, and range of the boxes, you can quickly identify differences in the center, spread, and skewness of the distributions. The following code illustrates how to define the series in chart. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                           Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Box and Whisker Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"BoxAndWhiskerChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart VerticalOptions=\"FillAndExpand\" HorizontalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Box And Whisker Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\"/>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis />\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:BoxAndWhiskerSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                                 XBindingPath=\"Name\" YBindingPath=\"Values\"\n                                                 ShowOutlier=\"True\" ShowMedian=\"True\" \n                                                 EnableTooltip=\"True\"\n                                                 Fill=\"BlueViolet\" Stroke=\"White\">\n                    </toolkit:BoxAndWhiskerSeries>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/BoxPlot/SfCartesianChartBoxAndWhisker.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartBoxAndWhisker : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartBoxAndWhisker()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartBoxAndWhisker),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartBoxAndWhisker),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var boxAndWhiskerChartInfo = (string[])Resources[\"BoxAndWhiskerChartInfo\"];\n        BoxAndWhiskerChartCollectionView.ItemsSource = boxAndWhiskerChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Bubble/SfCartesianChartBubble.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartBubble\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"BubbleChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The bubble chart is represented by closely packed circles, whose areas are proportional to the quantities. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To render a bubble chart, create an instance of <strong style=\"color:blue\">BubbleSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of <strong style=\"color:blue\">SfCartesianChart</strong>. The bubble chart is similar to a scatter plot, but with the additional dimension of bubble size to represent the third variable. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The size of the <strong style=\"color:blue\">BubbleSeries</strong> is relatively proportional to the value bound with the series using the <strong style=\"color:blue\">SizeValuePath</strong> property. You can set the constraints on this size using the <strong style=\"color:blue\">MinimumRadius</strong> and <strong style=\"color:blue\">MaximumRadius</strong>. The following code illustrates how to set the value to the property. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                           Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Bubble Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"BubbleChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart VerticalOptions=\"FillAndExpand\" HorizontalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Resources>\n                        <DataTemplate x:Key=\"Tooltiptemplate\">\n                            <Grid RowDefinitions=\"auto, auto, auto\">\n                                <Label Grid.Row=\"0\" Text=\"{Binding Item.Name,StringFormat='{0}'}\" \n                                   HorizontalTextAlignment=\"Center\" VerticalTextAlignment=\"Center\" \n                                   Margin=\"0,0,0,2\" HorizontalOptions=\"Center\" FontFamily=\"Helvetica\" FontAttributes=\"Bold\" FontSize=\"10\"/>\n                                <BoxView Grid.Row=\"1\" VerticalOptions=\"Center\" HeightRequest=\"1\" />\n                                <StackLayout Grid.Row=\"2\" Orientation=\"Vertical\"  VerticalOptions=\"Fill\" Spacing=\"0\" Padding=\"2\" Margin=\"0\">\n                                    <Label Text=\"{x:Binding Item.Value,StringFormat='Literacy rate         : {0}%'}\" \n                                       VerticalTextAlignment=\"Center\" HorizontalOptions=\"Start\" FontFamily=\"Helvetica\" FontSize=\"10\" />\n                                    <Label Text=\"{x:Binding Item.High,StringFormat='GDP growth rate : {0}'}\" \n                                       VerticalTextAlignment=\"Center\" HorizontalOptions=\"Start\" FontFamily=\"Helvetica\" FontSize=\"10\" />\n                                    <Label Text=\"{x:Binding Item.Low,StringFormat='Population           : {0}B'}\" \n                                       VerticalTextAlignment=\"Center\" HorizontalOptions=\"Start\" FontFamily=\"Helvetica\" FontSize=\"10\" />\n                                </StackLayout>\n                            </Grid>\n                        </DataTemplate>\n                    </toolkit:SfCartesianChart.Resources>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Bubble Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\" RangePadding=\"Additional\" EdgeLabelsDrawingMode=\"Fit\">\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis LabelCreated=\"LabelCreated\" Minimum=\"0\" RangePadding=\"Additional\" EdgeLabelsDrawingMode=\"Fit\">\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:BubbleSeries EnableAnimation=\"True\" TooltipTemplate=\"{StaticResource Tooltiptemplate}\"     \n                                          ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                          EnableTooltip=\"True\" ShowDataLabels=\"False\" \n                                          XBindingPath=\"Exp\" YBindingPath=\"High\" SizeValuePath=\"Low\" Opacity=\"1\"/>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding BubbleCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart VerticalOptions=\"FillAndExpand\" HorizontalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Resources>\n                        <DataTemplate x:Key=\"CustomTooltiptemplate\">\n                            <Grid RowDefinitions=\"auto, auto\">\n                                <Label Grid.Row=\"0\" LineBreakMode=\"WordWrap\" MaximumWidthRequest=\"100\" \n                                       Text=\"{x:Binding Item.Name,StringFormat='{0}'}\" HorizontalTextAlignment=\"Center\" \n                                       HorizontalOptions=\"Center\" VerticalTextAlignment=\"Center\" \n                                       FontFamily=\"Helvetica\" FontAttributes=\"Bold\" Margin=\"0,2,0,2\" FontSize=\"10\"/>\n                                <BoxView Grid.Row=\"1\" VerticalOptions=\"Center\" HeightRequest=\"1\" />\n                                <StackLayout Grid.Row=\"2\" Orientation=\"Vertical\" VerticalOptions=\"Fill\" Spacing=\"0\" Padding=\"3\" Margin=\"0\">\n                                    <Label Text=\"{x:Binding Item.High,StringFormat='Budget   : ${0}M'}\" \n                                           VerticalTextAlignment=\"Center\" HorizontalOptions=\"Start\" \n                                           FontFamily=\"Helvetica\" Margin=\"0,0,3,0\" FontSize=\"10\"/>\n                                    <Label Text=\"{x:Binding Item.Low,StringFormat='Revenue : ${0}M'}\" \n                                           VerticalTextAlignment=\"Center\" HorizontalOptions=\"Start\" \n                                           FontFamily=\"Helvetica\" Margin=\"0,0,3,0\" FontSize=\"10\"/>\n                                </StackLayout>\n                            </Grid>\n                        </DataTemplate>\n                    </toolkit:SfCartesianChart.Resources>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Custom Bubble Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:NumericalAxis RangePadding=\"Additional\" ShowMajorGridLines=\"False\" EdgeLabelsDrawingMode=\"Fit\"/>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis LabelCreated=\"LabelCreated\" Minimum=\"0\" RangePadding=\"Additional\" EdgeLabelsDrawingMode=\"Fit\"/>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:BubbleSeries EnableTooltip=\"True\" TooltipTemplate=\"{x:StaticResource CustomTooltiptemplate}\"                 \n                                          ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                          EnableAnimation=\"True\" ShowDataLabels=\"False\"\n                                          XBindingPath=\"Exp\" YBindingPath=\"High\" SizeValuePath=\"Low\" Opacity=\"1\">\n                        <toolkit:BubbleSeries.Fill>\n                            <RadialGradientBrush Center=\"0.35,0.35\" Radius=\"0.5\">\n                                <GradientStop Offset=\"0\" Color=\"#EAEAEA\" />\n                                <GradientStop Offset=\"1\" Color=\"#EC9329\" />\n                            </RadialGradientBrush>\n                        </toolkit:BubbleSeries.Fill>\n                    </toolkit:BubbleSeries>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CustomBubbleCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Bubble/SfCartesianChartBubble.xaml.cs",
    "content": "using Syncfusion.Maui.Toolkit.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartBubble : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartBubble()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartBubble),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty BubbleCodeDescriptionProperty = BindableProperty.Create(\n        nameof(BubbleCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartBubble),\n        default(string)\n    );\n\n    public static readonly BindableProperty CustomBubbleCodeDescriptionProperty = BindableProperty.Create(\n        nameof(CustomBubbleCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartBubble),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string BubbleCodeDescription\n    {\n        get => (string)GetValue(BubbleCodeDescriptionProperty);\n        set => SetValue(BubbleCodeDescriptionProperty, value);\n    }\n\n    public string CustomBubbleCodeDescription\n    {\n        get => (string)GetValue(CustomBubbleCodeDescriptionProperty);\n        set => SetValue(CustomBubbleCodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region[ Event ]\n    private void LabelCreated(object sender, ChartAxisLabelEventArgs e)\n    {\n        double position = e.Position;\n        if (position >= 1000 && position <= 999999)\n        {\n            string text = (position / 1000).ToString();\n            e.Label = $\"${text}K\";\n        }\n        else\n        {\n            e.Label = $\"${position}K\";\n        }\n    }\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var bubbleChartInfo = (string[])Resources[\"BubbleChartInfo\"];\n        BubbleChartCollectionView.ItemsSource = bubbleChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/Bar/SfCartesianChartBar.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartBar\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"BarChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ A bar chart uses bars to represent data points and compare values across different categories. To render bar chart, initialize the <strong style=\"color:blue\">SfCartesianChart</strong> and switch the chart X and Y axes by using the <strong style=\"color:blue\">IsTransposed</strong> property as true. Then, create the column chart. To render a column chart, create an instance of <strong style=\"color:blue\">ColumnSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Bar Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"BarChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart IsTransposed=\"True\" HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\" \n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Bar Chart\" LineBreakMode=\"WordWrap\" Margin=\"2,0,2,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis EdgeLabelsDrawingMode=\"Shift\" LabelPlacement=\"BetweenTicks\" ShowMajorGridLines=\"false\">\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Minimum=\"0\" Interval=\"10\" IsVisible=\"False\" EdgeLabelsDrawingMode=\"Shift\" ShowMajorGridLines=\"false\" ShowMinorGridLines=\"false\">\n                            <toolkit:NumericalAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"8\"/>\n                            </toolkit:NumericalAxis.MajorTickStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ColumnSeries EnableAnimation=\"True\" ShowDataLabels=\"True\" \n                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Exp\">\n                            <toolkit:ColumnSeries.DataLabelSettings>\n                                <toolkit:CartesianDataLabelSettings LabelPlacement=\"Inner\">\n                                    <toolkit:CartesianDataLabelSettings.LabelStyle>\n                                        <toolkit:ChartDataLabelStyle LabelFormat=\"0.## Exp\"/>\n                                    </toolkit:CartesianDataLabelSettings.LabelStyle>\n                                </toolkit:CartesianDataLabelSettings>\n                            </toolkit:ColumnSeries.DataLabelSettings>\n                        </toolkit:ColumnSeries>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding BarCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart IsTransposed=\"True\" HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Bar Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis EdgeLabelsDrawingMode=\"Shift\" ShowMajorGridLines=\"false\">\n                            <toolkit:CategoryAxis.Title>\n                                <toolkit:ChartAxisTitle Text=\"Food\" />\n                            </toolkit:CategoryAxis.Title>\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis IsVisible=\"false\" EdgeLabelsDrawingMode=\"Shift\" ShowMajorGridLines=\"false\" ShowMinorGridLines=\"false\">\n                            <toolkit:NumericalAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"8\">\n                                </toolkit:ChartAxisTickStyle>\n                            </toolkit:NumericalAxis.MajorTickStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ColumnSeries Label=\"Imports\" Width=\"0.8\" EnableTooltip=\"True\" Spacing=\"0.1\" \n                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Exp\" EnableAnimation=\"True\" LegendIcon=\"SeriesType\"/>\n                        <toolkit:ColumnSeries Label=\"Exports\" Width=\"0.8\" EnableTooltip=\"True\" Spacing=\"0.1\" \n                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Exp\" EnableAnimation=\"True\" LegendIcon=\"SeriesType\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding DoubleBarCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart IsTransposed=\"True\" HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Custom Bar Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" ShowMajorGridLines=\"false\">\n                            <toolkit:CategoryAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\"/>\n                            </toolkit:CategoryAxis.AxisLineStyle>\n                            <toolkit:CategoryAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle StrokeWidth=\"0\"/>\n                            </toolkit:CategoryAxis.MajorTickStyle>\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Maximum=\"100\" ShowMajorGridLines=\"False\" IsVisible=\"False\" EdgeLabelsDrawingMode=\"Shift\" ShowMinorGridLines=\"false\">\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n\n                    <toolkit:SfCartesianChart.Series>\n                        <core:CustomBarChart ShowDataLabels=\"True\" Width=\"0.5\" \n                                             EnableAnimation=\"True\" CornerRadius=\"25\"  \n                                             ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                             XBindingPath=\"Name\" YBindingPath=\"Exp\">\n                            <core:CustomBarChart.DataLabelSettings>\n                                <toolkit:CartesianDataLabelSettings UseSeriesPalette=\"True\" LabelPlacement=\"Inner\">\n                                    <toolkit:CartesianDataLabelSettings.LabelStyle>\n                                        <toolkit:ChartDataLabelStyle LabelFormat=\"#.##\" />\n                                    </toolkit:CartesianDataLabelSettings.LabelStyle>\n                                </toolkit:CartesianDataLabelSettings>\n                            </core:CustomBarChart.DataLabelSettings>\n                        </core:CustomBarChart>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CustomBarXamlCodeDescription, Source={x:Reference root}}\"  CodeType=\"CSharp\"/>\n                <core:SourceCodeExpander Code=\"{x:Binding CustomBarXamlCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/Bar/SfCartesianChartBar.xaml.cs",
    "content": "using Syncfusion.Maui.Toolkit.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartBar : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartBar()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartBar),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty BarCodeDescriptionProperty = BindableProperty.Create(\n        nameof(BarCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartBar),\n        default(string)\n    ); \n    \n    public static readonly BindableProperty CustomBarXamlCodeDescriptionProperty = BindableProperty.Create(\n        nameof(CustomBarXamlCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartBar),\n        default(string)\n    );\n\n    public static readonly BindableProperty CustomBarCSharpCodeDescriptionProperty = BindableProperty.Create(\n        nameof(CustomBarCSharpCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartBar),\n        default(string)\n    );\n\n    public static readonly BindableProperty DoubleBarCodeDescriptionProperty = BindableProperty.Create(\n        nameof(DoubleBarCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartBar),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string BarCodeDescription\n    {\n        get => (string)GetValue(BarCodeDescriptionProperty);\n        set => SetValue(BarCodeDescriptionProperty, value);\n    }\n\n    public string CustomBarXamlCodeDescription\n    {\n        get => (string)GetValue(CustomBarXamlCodeDescriptionProperty);\n        set => SetValue(CustomBarXamlCodeDescriptionProperty, value);\n    }\n\n    public string CustomBarCSharpCodeDescription\n    {\n        get => (string)GetValue(CustomBarCSharpCodeDescriptionProperty);\n        set => SetValue(CustomBarCSharpCodeDescriptionProperty, value);\n    }\n\n    public string DoubleBarCodeDescription\n    {\n        get => (string)GetValue(DoubleBarCodeDescriptionProperty);\n        set => SetValue(DoubleBarCodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var barChartInfo = (string[])Resources[\"BarChartInfo\"];\n        BarChartCollectionView.ItemsSource = barChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}\n\npublic class CustomBarChart : ColumnSeries\n{\n    protected override ChartSegment CreateSegment()\n    {\n        return new BarSegment();\n    }\n\n    public static readonly BindableProperty TrackColorProperty = BindableProperty.Create(\n        nameof(TrackColor), \n        typeof(SolidColorBrush), \n        typeof(ColumnSeries), \n        new SolidColorBrush(Color.FromArgb(\"#E7E0EC\"))\n    );\n\n    public SolidColorBrush TrackColor\n    {\n        get { return (SolidColorBrush)GetValue(TrackColorProperty); }\n        set { SetValue(TrackColorProperty, value); }\n    }\n}\n\npublic class BarSegment : ColumnSegment\n{\n    RectF trackRect = RectF.Zero;\n\n    protected override void OnLayout()\n    {\n        base.OnLayout();\n        if (Series is CartesianSeries series && series.ActualYAxis is NumericalAxis yAxis)\n        {\n            var top = yAxis.ValueToPoint(Convert.ToDouble(yAxis.Maximum ?? double.NaN));\n            trackRect = new RectF() { Left = Left, Top = Top, Right = top, Bottom = Bottom };\n        }\n    }\n\n    protected override void Draw(ICanvas canvas)\n    {\n        if (Series is not CustomBarChart series) return;\n\n        canvas.SetFillPaint(series.TrackColor, trackRect);\n        canvas.FillRoundedRectangle(trackRect, 25);\n\n        base.Draw(canvas);\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/Bar/SfCartesianChartErrorBar.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartErrorBar\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"ErrorBarChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">ErrorBarSeries</strong> indicates the errors or uncertainty in reported values. This will find the possible variations in measurements, and in Chart control these values are displayed as data points. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">HorizontalErrorValue</strong> and the <strong style=\"color:blue\">VerticalErrorValue</strong> is used to set the error value(variation) to the series. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Error Bar Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"ErrorBarChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                          Margin=\"0, 0, 20, 0\" >\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Error Bar Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"False\" EdgeLabelsDrawingMode=\"Shift\" Interval=\"1\" >\n                            <toolkit:CategoryAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"10\"/>\n                            </toolkit:CategoryAxis.MajorTickStyle>\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\" Minimum=\"0\" Maximum=\"120\" >\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ColumnSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"   \n                                              XBindingPath=\"Name\" YBindingPath=\"Exp\" Fill=\"#95DB9C\"/>\n                        <toolkit:ErrorBarSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"  \n                                                XBindingPath=\"Name\" YBindingPath=\"Exp\"  \n                                                Mode=\"Vertical\" Type=\"Custom\" VerticalDirection=\"Both\"\n                                                HorizontalErrorPath=\"Low\" VerticalErrorPath=\"High\"\n                                                HorizontalErrorValue=\"1\" VerticalErrorValue=\"25\">\n                            <toolkit:ErrorBarSeries.VerticalLineStyle>\n                                <toolkit:ErrorBarLineStyle StrokeWidth=\"2\" Stroke=\"Red\"/>\n                            </toolkit:ErrorBarSeries.VerticalLineStyle>\n                            <toolkit:ErrorBarSeries.VerticalCapLineStyle>\n                                <toolkit:ErrorBarCapLineStyle StrokeWidth=\"2\" Stroke=\"Red\"/>\n                            </toolkit:ErrorBarSeries.VerticalCapLineStyle>\n                        </toolkit:ErrorBarSeries>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding DefaultCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                    <Grid ColumnDefinitions=\"0.2*, 0.2*, 0.2*, 0.2*, 0.2*\">\n                        <VerticalStackLayout Grid.Column=\"0\" Spacing=\"5\" Padding=\"5\">\n                            <Label Text=\" Type\" HorizontalOptions=\"Start\" Padding=\"5\" FontSize=\"15\"/>\n                            <Picker x:Name=\"TypePicker\"  \n                                    ItemsSource=\"{x:Binding ErrorBarTypes, Source={x:Reference root}}\"\n                                    VerticalOptions=\"Start\" HorizontalOptions=\"Fill\"\n                                    SelectedIndexChanged=\"TypePicker_SelectedIndexChanged\"/>\n                        </VerticalStackLayout>\n                        <VerticalStackLayout Grid.Column=\"1\" Spacing=\"5\" Padding=\"5\">\n                            <Label Text=\"Mode\" HorizontalOptions=\"Start\"  Padding=\"5\" FontSize=\"15\"/>\n                            <Picker x:Name=\"ModePicker\"\n                                    ItemsSource=\"{x:Binding ErrorBarModes, Source={x:Reference root}}\" \n                                    VerticalOptions=\"Start\" HorizontalOptions=\"Fill\"\n                                    SelectedIndexChanged=\"ModePicker_SelectedIndexChanged\"/>\n                        </VerticalStackLayout>\n                        <VerticalStackLayout Grid.Column=\"2\" Spacing=\"5\" Padding=\"5\">\n                            <Label Text=\"Direction\" HorizontalOptions=\"Start\" Padding=\"5\"  FontSize=\"15\"/>\n                            <Picker x:Name=\"DirectionPicker\"\n                                    ItemsSource=\"{x:Binding ErrorBarDirections, Source={x:Reference root}}\" \n                                    VerticalOptions=\"Start\" HorizontalOptions=\"Fill\" \n                                    SelectedIndexChanged=\"DirectionPicker_SelectedIndexChanged\"/>\n                        </VerticalStackLayout>\n                        <VerticalStackLayout Grid.Column=\"3\" Spacing=\"5\" Padding=\"5\">\n                            <Label Grid.Column=\"0\" Text=\"Horizontal Error \" Padding=\"5\" FontSize=\"15\" />\n                            <HorizontalStackLayout Spacing=\"5\" VerticalOptions=\"Center\" HorizontalOptions=\"Center\">\n                                <Stepper x:Name=\"HorizontalStepper\" Minimum=\"1\" Maximum=\"10\"/>\n                                <Border StrokeShape=\"RoundRectangle 4\" Padding=\"10\">\n                                    <Label Text=\"{x:Binding Value, Source={x:Reference HorizontalStepper}}\"\n                                           WidthRequest=\"20\"/>\n                                </Border>\n                            </HorizontalStackLayout>\n                        </VerticalStackLayout>\n                        <VerticalStackLayout Grid.Column=\"4\" Spacing=\"5\" Padding=\"5\">\n                            <Label Text=\"Vertical Error \" Padding=\"5\" FontSize=\"15\" />\n                            <HorizontalStackLayout Spacing=\"5\" VerticalOptions=\"Center\" HorizontalOptions=\"Center\">\n                                <Stepper x:Name=\"VerticalStepper\" Minimum=\"10\" Maximum=\"30\" />\n                                <Border StrokeShape=\"RoundRectangle 4\" Padding=\"10\">\n                                    <Label Text=\"{x:Binding Value, Source={x:Reference VerticalStepper}}\"\n                                           WidthRequest=\"20\"/>\n                                </Border>\n                            </HorizontalStackLayout>\n                        </VerticalStackLayout>\n                    </Grid>\n                </Border>\n\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\" \n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Custom Error Bar Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes >\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"False\" EdgeLabelsDrawingMode=\"Shift\" Interval=\"1\"  >\n                            <toolkit:CategoryAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"10\"/>\n                            </toolkit:CategoryAxis.MajorTickStyle>\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\"/>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ScatterSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                               XBindingPath=\"Name\" YBindingPath=\"Exp\" PointHeight=\"10\" PointWidth=\"10\"/>\n                        <toolkit:ErrorBarSeries x:Name=\"CustomErrorSeries\"\n                                                ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                XBindingPath=\"Name\" YBindingPath=\"Exp\"   \n                                                HorizontalErrorValue=\"{x:Binding Value, Source={x:Reference HorizontalStepper}}\" \n                                                VerticalErrorValue=\"{x:Binding Value, Source={x:Reference VerticalStepper}}\" \n                                                Type=\"Fixed\" Mode=\"Vertical\"\n                                                HorizontalDirection=\"Both\" VerticalDirection=\"Both\">\n                            <toolkit:ErrorBarSeries.VerticalLineStyle>\n                                <toolkit:ErrorBarLineStyle StrokeWidth=\"2\" Stroke=\"Red\"/>\n                            </toolkit:ErrorBarSeries.VerticalLineStyle>\n                            <toolkit:ErrorBarSeries.HorizontalLineStyle>\n                                <toolkit:ErrorBarLineStyle StrokeWidth=\"2\" Stroke=\"Red\"/>\n                            </toolkit:ErrorBarSeries.HorizontalLineStyle>\n                            <toolkit:ErrorBarSeries.VerticalCapLineStyle>\n                                <toolkit:ErrorBarCapLineStyle StrokeWidth=\"2\" Stroke=\"Red\"/>\n                            </toolkit:ErrorBarSeries.VerticalCapLineStyle>\n                            <toolkit:ErrorBarSeries.HorizontalCapLineStyle>\n                                <toolkit:ErrorBarCapLineStyle StrokeWidth=\"2\" Stroke=\"Red\"/>\n                            </toolkit:ErrorBarSeries.HorizontalCapLineStyle>\n                        </toolkit:ErrorBarSeries>\n                        <toolkit:ScatterSeries ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\" \n                                               XBindingPath=\"Name\" YBindingPath=\"Exp\" PointHeight=\"10\" PointWidth=\"10\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CustomCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/Bar/SfCartesianChartErrorBar.xaml.cs",
    "content": "using Syncfusion.Maui.Toolkit.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartErrorBar : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartErrorBar()               \n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartErrorBar),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty ErrorBarTypesProperty = BindableProperty.Create(\n        nameof(ErrorBarTypes),\n        typeof(ObservableCollection<string>),\n        typeof(SfCartesianChartErrorBar),\n        default(ObservableCollection<string>)\n    );\n    public static readonly BindableProperty ErrorBarModesProperty = BindableProperty.Create(\n        nameof(ErrorBarModes),\n        typeof(ObservableCollection<string>),\n        typeof(SfCartesianChartErrorBar),\n        default(ObservableCollection<string>)\n    );\n    public static readonly BindableProperty ErrorBarDirectionsProperty = BindableProperty.Create(\n        nameof(ErrorBarDirections),\n        typeof(ObservableCollection<string>),\n        typeof(SfCartesianChartErrorBar),\n        default(ObservableCollection<string>)\n    );\n\n    public static readonly BindableProperty DefaultCodeDescriptionProperty = BindableProperty.Create(\n        nameof(DefaultCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartErrorBar),\n        default(string)\n    );\n\n    public static readonly BindableProperty CustomCodeDescriptionProperty = BindableProperty.Create(\n        nameof(CustomCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartErrorBar),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public ObservableCollection<string> ErrorBarTypes\n    {\n        get => (ObservableCollection<string>)GetValue(ErrorBarTypesProperty);\n        set => SetValue(ErrorBarTypesProperty, value);\n    }\n\n    public ObservableCollection<string> ErrorBarModes\n    {\n        get => (ObservableCollection<string>)GetValue(ErrorBarModesProperty);\n        set => SetValue(ErrorBarModesProperty, value);\n    }\n\n    public ObservableCollection<string> ErrorBarDirections\n    {\n        get => (ObservableCollection<string>)GetValue(ErrorBarDirectionsProperty);\n        set => SetValue(ErrorBarDirectionsProperty, value);\n    }\n\n    public string DefaultCodeDescription\n    {\n        get => (string)GetValue(DefaultCodeDescriptionProperty);\n        set => SetValue(DefaultCodeDescriptionProperty, value);\n    }\n\n    public string CustomCodeDescription\n    {\n        get => (string)GetValue(CustomCodeDescriptionProperty);\n        set => SetValue(CustomCodeDescriptionProperty, value);\n    }\n\n    #endregion\n\n    #region [ Event ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var errorBarChartInfo = (string[])Resources[\"ErrorBarChartInfo\"];\n        ErrorBarChartCollectionView.ItemsSource = errorBarChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n\n    private void TypePicker_SelectedIndexChanged(object sender, EventArgs e)\n    {\n        var picker = (Picker)sender;\n        var selectedValue = picker.SelectedItem;\n        if (selectedValue.ToString() == ErrorBarType.Fixed.ToString())\n        {\n            CustomErrorSeries.Type = ErrorBarType.Fixed;\n        }\n        else if (selectedValue.ToString() == ErrorBarType.Percentage.ToString())\n        {\n            CustomErrorSeries.Type = ErrorBarType.Percentage;\n        }\n        else if (selectedValue.ToString() == ErrorBarType.StandardError.ToString())\n        {\n            CustomErrorSeries.Type = ErrorBarType.StandardError;\n        }\n        else if (selectedValue.ToString() == ErrorBarType.StandardDeviation.ToString())\n        {\n            CustomErrorSeries.Type = ErrorBarType.StandardDeviation;\n        }\n    }\n\n    private void ModePicker_SelectedIndexChanged(object sender, EventArgs e)\n    {\n        var picker = (Picker)sender;\n        var selectedValue = picker.SelectedItem;\n        if (selectedValue.ToString() == ErrorBarMode.Vertical.ToString())\n        {\n            CustomErrorSeries.Mode = ErrorBarMode.Vertical;\n            HorizontalStepper.IsEnabled = false;\n            VerticalStepper.IsEnabled = true;\n\n        }\n        else if (selectedValue.ToString() == ErrorBarMode.Horizontal.ToString())\n        {\n            CustomErrorSeries.Mode = ErrorBarMode.Horizontal;\n            HorizontalStepper.IsEnabled = true;\n            VerticalStepper.IsEnabled = false;\n        }\n        else\n        {\n            CustomErrorSeries.Mode = ErrorBarMode.Both;\n            HorizontalStepper.IsEnabled = true;\n            VerticalStepper.IsEnabled = true;\n        }\n    \n    }\n\n    private void DirectionPicker_SelectedIndexChanged(object sender, EventArgs e)\n    {\n        var picker = (Picker)sender;\n        var selectedValue = picker.SelectedItem;\n        if (ModePicker.SelectedItem == null) \n        {\n            return;\n        }\n        if (selectedValue.ToString() == ErrorBarDirection.Both.ToString())\n        {\n            if (ModePicker.SelectedItem.ToString() == ErrorBarMode.Horizontal.ToString())\n            {\n                CustomErrorSeries.HorizontalDirection = ErrorBarDirection.Both;\n            }\n            else if (ModePicker.SelectedItem.ToString() == ErrorBarMode.Vertical.ToString())\n            {\n                CustomErrorSeries.VerticalDirection = ErrorBarDirection.Both;\n            }\n            else\n            {\n                CustomErrorSeries.HorizontalDirection = ErrorBarDirection.Both;\n                CustomErrorSeries.VerticalDirection = ErrorBarDirection.Both;\n            }\n        }\n        else if (selectedValue.ToString() == ErrorBarDirection.Plus.ToString())\n        {\n            if (ModePicker.SelectedItem.ToString() == ErrorBarMode.Horizontal.ToString())\n            {\n                CustomErrorSeries.HorizontalDirection = ErrorBarDirection.Plus;\n            }\n            else if (ModePicker.SelectedItem.ToString() == ErrorBarMode.Vertical.ToString())\n            {\n                CustomErrorSeries.VerticalDirection = ErrorBarDirection.Plus;\n            }\n            else if (ModePicker.SelectedItem.ToString() == ErrorBarMode.Both.ToString())\n            {\n                CustomErrorSeries.HorizontalDirection = CustomErrorSeries.VerticalDirection = ErrorBarDirection.Plus;\n            }\n        }\n        else\n        {\n            if (ModePicker.SelectedItem.ToString() == ErrorBarMode.Horizontal.ToString())\n            {\n                CustomErrorSeries.HorizontalDirection = ErrorBarDirection.Minus;\n            }\n            if (ModePicker.SelectedItem.ToString() == ErrorBarMode.Vertical.ToString())\n            {\n                CustomErrorSeries.VerticalDirection = ErrorBarDirection.Minus;\n            }\n            if (ModePicker.SelectedItem.ToString() == ErrorBarMode.Both.ToString())\n            {\n                CustomErrorSeries.HorizontalDirection = CustomErrorSeries.VerticalDirection = ErrorBarDirection.Minus;\n            }\n        }\n\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/Bar/SfCartesianChartRangeBar.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartRangeBar\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <ContentView.Resources>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart IsTransposed=\"True\" HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                          Margin=\"0, 0, 20, 0\" HeightRequest=\"500\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Range Bar Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.ZoomPanBehavior>\n                        <toolkit:ChartZoomPanBehavior EnableDoubleTap=\"False\" EnablePinchZooming=\"False\"/>\n                    </toolkit:SfCartesianChart.ZoomPanBehavior>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis Interval=\"1\" EdgeLabelsDrawingMode=\"Shift\" LabelPlacement=\"BetweenTicks\" \n                                              IsVisible=\"true\" ShowMajorGridLines=\"False\" AutoScrollingMode=\"End\"/>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes >\n                        <toolkit:NumericalAxis Minimum=\"0\" EdgeLabelsDrawingMode=\"Shift\" ShowMajorGridLines=\"false\" ShowMinorGridLines=\"false\" Interval=\"5\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat= \"0.#&#186;C\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:RangeColumnSeries EnableAnimation=\"True\" ShowDataLabels=\"True\"\n                                               ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\"\n                                               XBindingPath=\"Name\" High=\"High\" Low=\"Low\">\n                        <toolkit:RangeColumnSeries.DataLabelSettings>\n                            <toolkit:CartesianDataLabelSettings UseSeriesPalette=\"False\">\n                                <toolkit:CartesianDataLabelSettings.LabelStyle >\n                                    <toolkit:ChartDataLabelStyle TextColor=\"White\" LabelFormat= \"0.#&#186;C\" />\n                                </toolkit:CartesianDataLabelSettings.LabelStyle>\n                            </toolkit:CartesianDataLabelSettings>\n                        </toolkit:RangeColumnSeries.DataLabelSettings>\n                    </toolkit:RangeColumnSeries>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/Bar/SfCartesianChartRangeBar.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartRangeBar : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartRangeBar()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartRangeBar),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartRangeBar),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion}\n\n    #region [ Events ]\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/Bar/SfCartesianChartStackingBar.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartStackingBar\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n        <VerticalStackLayout Spacing=\"10\">\n            <toolkit:SfCartesianChart IsTransposed=\"True\" HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\" Margin=\"0, 0, 20, 0\">\n                <toolkit:SfCartesianChart.Title>\n                    <Label Text=\"Stacking Bar Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                </toolkit:SfCartesianChart.Title>\n                <toolkit:SfCartesianChart.XAxes>\n                    <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" IsVisible=\"true\" ShowMajorGridLines=\"false\" >\n                        <toolkit:CategoryAxis.Title>\n                            <toolkit:ChartAxisTitle Text=\"Product\"/>\n                        </toolkit:CategoryAxis.Title>\n                    </toolkit:CategoryAxis>\n                </toolkit:SfCartesianChart.XAxes>\n                <toolkit:SfCartesianChart.YAxes>\n                    <toolkit:NumericalAxis Minimum=\"-20\" Maximum=\"48\" Interval=\"10\" ShowMajorGridLines=\"True\" ShowMinorGridLines=\"false\">\n                        <toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:ChartAxisLabelStyle  LabelFormat=\"$###,##0.##K\"/>\n                        </toolkit:NumericalAxis.LabelStyle>\n                    </toolkit:NumericalAxis>\n                </toolkit:SfCartesianChart.YAxes>\n                <toolkit:SfCartesianChart.Legend>\n                    <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                </toolkit:SfCartesianChart.Legend>\n                <toolkit:StackingColumnSeries XBindingPath=\"Name\" YBindingPath=\"High\"\n                                              Label=\"Zone 1\" EnableTooltip=\"True\" LegendIcon=\"SeriesType\"\n                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" />\n                <toolkit:StackingColumnSeries XBindingPath=\"Name\" YBindingPath=\"Low\" \n                                              Label=\"Zone 2\" EnableTooltip=\"True\" LegendIcon=\"SeriesType\"\n                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" />\n                <toolkit:StackingColumnSeries XBindingPath=\"Name\" YBindingPath=\"Value\"\n                                              Label=\"Zone 3\" EnableTooltip=\"True\" LegendIcon=\"SeriesType\"\n                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" />\n                <toolkit:StackingColumnSeries XBindingPath=\"Name\" YBindingPath=\"Size\"\n                                              Label=\"Zone 4\" EnableTooltip=\"True\" LegendIcon=\"SeriesType\"\n                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"/>\n            </toolkit:SfCartesianChart>\n\n            <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n        </VerticalStackLayout>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/Bar/SfCartesianChartStackingBar.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartStackingBar : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartStackingBar()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStackingBar),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartStackingBar),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion}\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/Bar/SfCartesianChartStackingBar100.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartStackingBar100\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n        <VerticalStackLayout Spacing=\"10\">\n            <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\" IsTransposed=\"True\" \n                                      Margin=\"0, 0, 20, 0\">\n                <toolkit:SfCartesianChart.Title>\n                    <Label Text=\"Stacking Bar 100 Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                </toolkit:SfCartesianChart.Title>\n                <toolkit:SfCartesianChart.Legend>\n                    <toolkit:ChartLegend/>\n                </toolkit:SfCartesianChart.Legend>\n                <toolkit:SfCartesianChart.XAxes>\n                    <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" ShowMajorGridLines=\"False\"/>\n                </toolkit:SfCartesianChart.XAxes>\n                <toolkit:SfCartesianChart.YAxes>\n                    <toolkit:NumericalAxis Interval=\"20\" ShowMajorGridLines=\"True\" ShowMinorGridLines=\"True\" RangePadding=\"None\">\n                        <toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:ChartAxisLabelStyle LabelFormat=\"0'%\"/>\n                        </toolkit:NumericalAxis.LabelStyle>\n                    </toolkit:NumericalAxis>\n                </toolkit:SfCartesianChart.YAxes>\n                <toolkit:SfCartesianChart.Series>\n                    <toolkit:StackingColumn100Series Label=\"Quarter 1\" LegendIcon=\"Rectangle\"\n                                                     ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                     XBindingPath=\"Name\" YBindingPath=\"High\" \n                                                     EnableAnimation=\"True\" ShowDataLabels=\"True\"/>\n                    <toolkit:StackingColumn100Series Label=\"Quarter 2\" LegendIcon=\"Rectangle\"\n                                                     ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                     XBindingPath=\"Name\" YBindingPath=\"Low\" \n                                                     EnableAnimation=\"True\" ShowDataLabels=\"True\"/>\n                    <toolkit:StackingColumn100Series Label=\"Quarter 3\" LegendIcon=\"Rectangle\"\n                                                     ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                     XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                                     EnableAnimation=\"True\" ShowDataLabels=\"True\"/>\n                    <toolkit:StackingColumn100Series Label=\"Quarter 4\" LegendIcon=\"Rectangle\"\n                                                     ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                     XBindingPath=\"Name\" YBindingPath=\"Size\" \n                                                     EnableAnimation=\"True\" ShowDataLabels=\"True\"/>\n                </toolkit:SfCartesianChart.Series>\n            </toolkit:SfCartesianChart>\n\n            <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n        </VerticalStackLayout>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/Bar/SfCartesianChartStackingBar100.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartStackingBar100 : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartStackingBar100()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStackingBar),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartStackingBar),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion}\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/SfCartesianChartColumn.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartColumn\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"ColumnChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ Column chart is used to plot discrete rectangles for the given data point values. To render a column chart, create an instance of <strong style=\"color:blue\">ColumnSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Column Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"ColumnChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Column Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" IsVisible=\"true\" ShowMajorGridLines=\"false\" />\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"True\" ShowMinorGridLines=\"false\" Interval=\"20\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0 Exp\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:NumericalAxis.MinorTickStyle>\n                                <toolkit:ChartAxisTickStyle Stroke=\"Transparent\" StrokeWidth=\"0\"/>\n                            </toolkit:NumericalAxis.MinorTickStyle>\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\" />\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ColumnSeries EnableAnimation=\"True\" ShowDataLabels=\"True\"  \n                                              ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Exp\">\n                            <toolkit:ColumnSeries.DataLabelSettings>\n                                <toolkit:CartesianDataLabelSettings >\n                                    <toolkit:CartesianDataLabelSettings.LabelStyle>\n                                        <toolkit:ChartDataLabelStyle FontSize=\"12\" LabelFormat='0 Exp'/>\n                                    </toolkit:CartesianDataLabelSettings.LabelStyle>\n                                </toolkit:CartesianDataLabelSettings>\n                            </toolkit:ColumnSeries.DataLabelSettings>\n                        </toolkit:ColumnSeries>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding ColumnXamlCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\">\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\" />\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Column Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"False\" LabelPlacement=\"BetweenTicks\">\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"True\" Minimum=\"0\">\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ColumnSeries Label=\"Aqua\" EnableTooltip=\"True\" EnableAnimation=\"True\" Width=\"0.8\" Spacing=\"0.2\" \n                                              ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Exp\" LegendIcon=\"SeriesType\"/>\n                        <toolkit:ColumnSeries Label=\"Gray\" EnableTooltip=\"True\" EnableAnimation=\"True\" Width=\"0.8\" Spacing=\"0.2\" \n                                              ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Value\" LegendIcon=\"SeriesType\"/>\n                        <toolkit:ColumnSeries Label=\"Blue\" EnableTooltip=\"True\" EnableAnimation=\"True\" Width=\"0.8\" Spacing=\"0.2\" \n                                              ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Size\" LegendIcon=\"SeriesType\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding ColumnXamlCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n        \n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\" \n                                          Margin=\"20, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Column Chart with Rounded Conner\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" IsVisible=\"true\" ShowMajorGridLines=\"false\" />\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis IsVisible=\"False\" Minimum=\"0\" Maximum=\"120\" Interval=\"20\" ShowMajorGridLines=\"True\" >\n                            <toolkit:NumericalAxis.MinorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"10\" StrokeWidth=\"0\"/>\n                            </toolkit:NumericalAxis.MinorTickStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ColumnSeries EnableAnimation=\"True\" EnableTooltip=\"True\" CornerRadius=\"10\" \n                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Exp\">\n                        </toolkit:ColumnSeries>\n                    </toolkit:SfCartesianChart.Series>\n                    <toolkit:SfCartesianChart.Annotations>\n                        <toolkit:HorizontalLineAnnotation Y1=\"90\" Stroke=\"#E75A6E\" StrokeWidth=\"2\" StrokeDashArray=\"15, 6, 5, 3\" Text=\"Overflow\">\n                            <toolkit:HorizontalLineAnnotation.LabelStyle>\n                                <toolkit:ChartAnnotationLabelStyle TextColor=\"#E75A6E\" HorizontalTextAlignment=\"Start\" VerticalTextAlignment=\"Start\" FontSize=\"15\"/>\n                            </toolkit:HorizontalLineAnnotation.LabelStyle>\n                        </toolkit:HorizontalLineAnnotation>\n                    </toolkit:SfCartesianChart.Annotations>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding RoundedColumnXamlCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\" \n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Custom Column Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis IsVisible=\"False\" />\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\" IsVisible=\"False\" Maximum=\"150\" Minimum=\"0\"/>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <core:CustomColumnSeries EnableAnimation=\"True\" ShowDataLabels=\"True\"\n                                                 ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                                 XBindingPath=\"Name\" YBindingPath=\"Exp\">\n                            <core:CustomColumnSeries.DataLabelSettings>\n                                <toolkit:CartesianDataLabelSettings UseSeriesPalette=\"False\" LabelPlacement=\"Outer\">\n                                    <toolkit:CartesianDataLabelSettings.LabelStyle>\n                                        <toolkit:ChartDataLabelStyle FontSize=\"16\" LabelFormat=\"0.00'M\"/>\n                                    </toolkit:CartesianDataLabelSettings.LabelStyle>\n                                </toolkit:CartesianDataLabelSettings>\n                            </core:CustomColumnSeries.DataLabelSettings>\n                        </core:CustomColumnSeries>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CustomColumnCSharpCodeDescription, Source={x:Reference root}}\"  CodeType=\"CSharp\"/>\n                <core:SourceCodeExpander Code=\"{x:Binding CustomColumnXamlCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/SfCartesianChartColumn.xaml.cs",
    "content": "using Syncfusion.Maui.Toolkit.Charts;\nusing Syncfusion.Maui.Toolkit.Graphics.Internals;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartColumn : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartColumn()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartColumn),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty ColumnXamlCodeDescriptionProperty = BindableProperty.Create(\n        nameof(ColumnXamlCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartColumn),\n        default(string)\n    );\n\n    public static readonly BindableProperty TripleColumnXamlCodeDescriptionProperty = BindableProperty.Create(\n        nameof(TripleColumnXamlCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartColumn),\n        default(string)\n    );\n\n    public static readonly BindableProperty RoundedColumnXamlCodeDescriptionProperty = BindableProperty.Create(\n        nameof(RoundedColumnXamlCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartColumn),\n        default(string)\n    );\n\n    public static readonly BindableProperty CustomColumnXamlCodeDescriptionProperty = BindableProperty.Create(\n        nameof(CustomColumnXamlCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartColumn),\n        default(string)\n    );\n\n    public static readonly BindableProperty CustomColumnCSharpCodeDescriptionProperty = BindableProperty.Create(\n        nameof(CustomColumnCSharpCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartColumn),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string ColumnXamlCodeDescription\n    {\n        get => (string)GetValue(ColumnXamlCodeDescriptionProperty);\n        set => SetValue(ColumnXamlCodeDescriptionProperty, value);\n    }\n\n    public string TripleColumnXamlCodeDescription\n    {\n        get => (string)GetValue(TripleColumnXamlCodeDescriptionProperty);\n        set => SetValue(TripleColumnXamlCodeDescriptionProperty, value);\n    }\n\n    public string RoundedColumnXamlCodeDescription\n    {\n        get => (string)GetValue(RoundedColumnXamlCodeDescriptionProperty);\n        set => SetValue(RoundedColumnXamlCodeDescriptionProperty, value);\n    }\n\n    public string CustomColumnXamlCodeDescription\n    {\n        get => (string)GetValue(CustomColumnXamlCodeDescriptionProperty);\n        set => SetValue(CustomColumnXamlCodeDescriptionProperty, value);\n    }\n\n    public string CustomColumnCSharpCodeDescription\n    {\n        get => (string)GetValue(CustomColumnCSharpCodeDescriptionProperty);\n        set => SetValue(CustomColumnCSharpCodeDescriptionProperty, value);\n    }\n    #endregion}\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var columnChartInfo = (string[])Resources[\"ColumnChartInfo\"];\n        ColumnChartCollectionView.ItemsSource = columnChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}\n\npublic class CustomColumnSeries : ColumnSeries\n{\n    protected override ChartSegment CreateSegment()\n    {\n        return new CustomColumnSegment();\n    }\n\n    public static readonly BindableProperty TrackColorProperty =BindableProperty.Create(\n        nameof(TrackColor), \n        typeof(SolidColorBrush), \n        typeof(CustomColumnSeries), \n        new SolidColorBrush(Color.FromArgb(\"#E7E0EC\"))\n    );\n\n    public SolidColorBrush TrackColor\n    {\n        get { return (SolidColorBrush)GetValue(TrackColorProperty); }\n        set { SetValue(TrackColorProperty, value); }\n    }\n\n    protected override void DrawDataLabel(ICanvas canvas, Brush? fillcolor, string label, PointF point, int index)\n    {\n        var items = ItemsSource as ObservableCollection<SfCartesianChartModel>;\n        if (items != null)\n        {\n            var text = items[index].Name ?? \"\";\n            base.DrawDataLabel(canvas, new SolidColorBrush(Colors.Transparent), label, point, index);\n            base.DrawDataLabel(canvas, new SolidColorBrush(Colors.Transparent), text, new PointF(point.X, point.Y - 30), index);\n        }\n    }\n}\n\npublic class CustomColumnSegment : ColumnSegment\n{\n    float curveHeight;\n    float curveXGape = 30;\n    float curveYGape = 20;\n\n    protected override void Draw(ICanvas canvas)\n    {\n        base.Draw(canvas);\n\n        if (Series is CartesianSeries series && series.ActualYAxis is NumericalAxis yAxis)\n        {\n            var top = yAxis.ValueToPoint(Convert.ToDouble(yAxis.Maximum ?? double.NaN));\n\n            var trackRect = new RectF() { Left = Left, Top = top, Right = Right, Bottom = Bottom };\n            curveHeight = trackRect.Height / curveYGape;\n            var width = trackRect.Width + (float)Math.Sqrt((trackRect.Width * trackRect.Width) + (trackRect.Height * trackRect.Height));\n            var waveLeft = trackRect.Left;\n            var waveRight = waveLeft + width;\n            var waveTop = trackRect.Bottom;\n            var waveBottom = trackRect.Bottom + trackRect.Height;\n\n            var waveRect = new Rect() { Left = waveLeft, Top = waveTop, Right = waveRight, Bottom = waveBottom };\n\n            float freq = trackRect.Bottom - Top;\n\n            canvas.CanvasSaveState();\n\n            DrawTrackPath(canvas, trackRect);\n\n            var color = (Fill is SolidColorBrush brush) ? brush.Color : Colors.Transparent;\n\n            canvas.SetFillPaint(new SolidColorBrush(color.MultiplyAlpha(0.6f)), waveRect);\n            DrawWave(canvas, new Rect(new Point(waveLeft - curveXGape - freq, waveTop - freq), waveRect.Size));\n\n            canvas.SetFillPaint(Fill, waveRect);\n            DrawWave(canvas, new Rect(new Point(waveLeft - freq, waveTop - freq), waveRect.Size));\n\n            canvas.CanvasRestoreState();\n        }\n    }\n\n    private void DrawTrackPath(ICanvas canvas, RectF trackRect)\n    {\n        if (Series is not CustomColumnSeries series) return;\n        PathF path = new();\n        path.MoveTo(trackRect.Left, trackRect.Bottom);\n        path.LineTo(trackRect.Left, trackRect.Top);\n        path.LineTo(trackRect.Right, trackRect.Top);\n        path.LineTo(trackRect.Right, trackRect.Bottom);\n\n        path.Close();\n        canvas.ClipPath(path);\n\n        canvas.SetFillPaint(series.TrackColor, trackRect);\n        canvas.FillPath(path);\n    }\n\n    private void DrawWave(ICanvas canvas, RectF rectangle)\n    {\n        PathF path = new();\n\n        path.MoveTo(rectangle.Left, rectangle.Bottom);\n        path.LineTo(rectangle.Left, rectangle.Top);\n\n        var top = rectangle.Top;\n        var start = rectangle.Left;\n        var split = rectangle.Width / 5;\n        do\n        {\n            var next = start + split;\n\n            var crX = start + (split / 2);\n            var crY = top - curveHeight;\n            var crY2 = top + curveHeight;\n\n            path.CurveTo(crX, crY, crX, crY2, next, top);\n\n            start = next;\n        } while (start <= rectangle.Right);\n\n        path.LineTo(rectangle.Right, rectangle.Bottom);\n        path.Close();\n        canvas.FillPath(path);\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/SfCartesianChartRangeColumn.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartRangeColumn\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"RangeColumnChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ Range Column Chart is used to visualize data points with columns, with the height of each column representing the difference between the lowest and highest values of the data point. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To render a range column chart, create an instance of <strong style=\"color:blue\">RangeColumnSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Since the <strong style=\"color:blue\">RangeColumnSeries</strong> requires two Y values for each point, your data should contain both the high and low values. These high and low values specify the maximum and minimum ranges of the point. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Range Column Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"RangeColumnChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\" \n                                          Margin=\"0, 0, 20, 0\" HeightRequest=\"500\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Range Column Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.ZoomPanBehavior>\n                        <toolkit:ChartZoomPanBehavior EnableDoubleTap=\"False\" EnablePinchZooming=\"False\"/>\n                    </toolkit:SfCartesianChart.ZoomPanBehavior>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" Interval=\"1\" ShowMajorGridLines=\"false\" AutoScrollingMode=\"Start\" />\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes >\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"True\" Interval=\"5\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat= \"0.#&#186;C\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:RangeColumnSeries EnableAnimation=\"True\" ShowDataLabels=\"True\"\n                                               ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                               XBindingPath=\"Name\" High=\"High\" Low=\"Low\">\n                        <toolkit:RangeColumnSeries.DataLabelSettings>\n                            <toolkit:CartesianDataLabelSettings UseSeriesPalette=\"False\">\n                                <toolkit:CartesianDataLabelSettings.LabelStyle >\n                                    <toolkit:ChartDataLabelStyle TextColor=\"White\" LabelFormat= \"0.#&#186;C\"/>\n                                </toolkit:CartesianDataLabelSettings.LabelStyle>\n                            </toolkit:CartesianDataLabelSettings>\n                        </toolkit:RangeColumnSeries.DataLabelSettings>\n                    </toolkit:RangeColumnSeries>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/SfCartesianChartRangeColumn.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartRangeColumn : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartRangeColumn()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartRangeColumn),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartRangeColumn),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion}\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var rangeColumnChartInfo = (string[])Resources[\"RangeColumnChartInfo\"];\n        RangeColumnChartCollectionView.ItemsSource = rangeColumnChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/SfCartesianChartStackingColumn.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartStackingColumn\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\" \n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"StackingColumnChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The stacked column chart represents data values in a stacked format, where the columns are stacked on each other to indicate the cumulative value of the data points. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To render a stacked column chart, create an instance of the <strong style=\"color:blue\">StackingColumnSeries</strong> and add it to the <strong style=\"color:blue\">Series</strong> collection property of the <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Stacking Column Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"StackingColumnChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\" \n                                      Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Stacking Column Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" IsVisible=\"true\" ShowMajorGridLines=\"false\">\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes >\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"True\" ShowMinorGridLines=\"false\" Minimum=\"0\" Maximum=\"60\" Interval=\"10\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'\" />\n                            </toolkit:NumericalAxis.LabelStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n\n                    <toolkit:StackingColumnSeries Label=\"Zone 1\" XBindingPath=\"Name\" YBindingPath=\"Value\"\n                                                  ItemsSource=\"{Binding ComponentData,Source={x:Reference root}}\"\n                                                  EnableAnimation=\"True\" ShowDataLabels=\"True\" LegendIcon=\"SeriesType\"/>\n                    <toolkit:StackingColumnSeries Label=\"Zone 2\" XBindingPath=\"Name\" YBindingPath=\"High\"\n                                                  ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\"\n                                                  EnableAnimation=\"True\" ShowDataLabels=\"True\" LegendIcon=\"SeriesType\"/>\n                    <toolkit:StackingColumnSeries Label=\"Zone 3\" XBindingPath=\"Name\" YBindingPath=\"Low\"\n                                                  ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\" \n                                                  EnableAnimation=\"True\" ShowDataLabels=\"True\" LegendIcon=\"SeriesType\"/>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/SfCartesianChartStackingColumn.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartStackingColumn : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartStackingColumn()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStackingColumn),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartStackingColumn),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion}\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var stackingColumnChartInfo = (string[])Resources[\"StackingColumnChartInfo\"];\n        StackingColumnChartCollectionView.ItemsSource = stackingColumnChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/SfCartesianChartStackingColumn100.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartStackingColumn100\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"StackingColumn100ChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The Stacked column 100 % series chart is a type of Stacked chart that is used to display the proportion of different categories within a single column. The columns are stacked on top of each other, and a cumulative portion of each stacked element always comes to a total of 100%. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To render the StackedColumn100 chart, create an instance of the <strong style=\"color:blue\">StackingColumn100Series</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of the <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Stacking Column 100 Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"StackingColumn100ChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Stacking Column 100 Chart\" MaxLines=\"2\" LineBreakMode=\"WordWrap\" HorizontalOptions=\"Fill\" VerticalOptions=\"Center\" HorizontalTextAlignment=\"Center\"\n                               Padding=\"0,0,0,5\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" ShowMajorGridLines=\"False\">\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Interval=\"20\" ShowMajorGridLines=\"True\" ShowMinorGridLines=\"True\" RangePadding=\"None\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'%\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:StackingColumn100Series Label=\"Zone 1\" LegendIcon=\"Rectangle\"\n                                                         ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                         XBindingPath=\"Name\" YBindingPath=\"High\" \n                                                         EnableAnimation=\"True\" ShowDataLabels=\"True\" />\n                        <toolkit:StackingColumn100Series Label=\"Zone 2\" LegendIcon=\"Rectangle\"\n                                                         ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                         XBindingPath=\"Name\" YBindingPath=\"Low\" \n                                                         EnableAnimation=\"True\" ShowDataLabels=\"True\"/>\n                        <toolkit:StackingColumn100Series Label=\"Zone 3\" LegendIcon=\"Rectangle\"\n                                                         ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                         XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                                         EnableAnimation=\"True\" ShowDataLabels=\"True\" />\n                        <toolkit:StackingColumn100Series Label=\"Zone 4\" LegendIcon=\"Rectangle\"\n                                                         ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                                         XBindingPath=\"Name\" YBindingPath=\"Size\" \n                                                         EnableAnimation=\"True\" ShowDataLabels=\"True\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Column/SfCartesianChartStackingColumn100.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartStackingColumn100 : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartStackingColumn100()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStackingBar),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartStackingBar),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion}\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var stackingColumn100ChartInfo = (string[])Resources[\"StackingColumn100ChartInfo\"];\n        StackingColumn100ChartCollectionView.ItemsSource = stackingColumn100ChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Financial/SfCartesianChartCandle.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartCandle\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"CandleChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ Candle charts are a type of financial chart used to represent the price movement of an asset over time. The chart is made up of a series of rectangular bars, called candlesticks, that represent a specific time, typically one day. To render a candle chart, create an instance of <strong style=\"color:blue\">CandleSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                           Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Candle Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"CandleChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"5\">\n                <HorizontalStackLayout HorizontalOptions=\"End\">\n                    <Label Text=\"Enable Solid Candles\" VerticalTextAlignment=\"Center\"/>\n                    <CheckBox x:Name=\"CheckBox\" IsChecked=\"False\" VerticalOptions=\"Start\" Margin=\"30,0,0,0\" />\n                </HorizontalStackLayout>\n\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Candle Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:DateTimeAxis AutoScrollingMode=\"End\" AutoScrollingDeltaType=\"Months\" LabelCreated=\"LabelCreated\" ShowMajorGridLines=\"False\" >\n                            <toolkit:DateTimeAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"MMM-dd\"/>\n                            </toolkit:DateTimeAxis.LabelStyle>\n                        </toolkit:DateTimeAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMinorGridLines=\"True\" Maximum=\"110\" IsVisible=\"True\">\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\"/>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"$0\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:CandleSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                          XBindingPath=\"Date\" Open=\"Value\" High=\"High\" Low=\"Low\" Close=\"Size\"\n                                          EnableTooltip=\"True\" EnableAnimation=\"True\"\n                                          EnableSolidCandle=\"{x:Binding Source={x:Reference CheckBox},Path=IsChecked}\">\n                    </toolkit:CandleSeries>\n                    <toolkit:SfCartesianChart.ZoomPanBehavior>\n                        <toolkit:ChartZoomPanBehavior ZoomMode=\"X\" EnableDoubleTap=\"False\" EnablePanning=\"True\" EnablePinchZooming=\"True\"/>\n                    </toolkit:SfCartesianChart.ZoomPanBehavior>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Financial/SfCartesianChartCandle.xaml.cs",
    "content": "using Syncfusion.Maui.Toolkit.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartCandle : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartCandle()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartCandle),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartCandle),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void LabelCreated(object? sender, ChartAxisLabelEventArgs e)\n    {\n        var month = int.MaxValue;\n\n        DateTime baseDate = new(1899, 12, 30);\n        var date = baseDate.AddDays(e.Position);\n        if (date.Month != month)\n        {\n            ChartAxisLabelStyle labelStyle = new();\n            labelStyle.LabelFormat = \"MMM-dd\";\n            labelStyle.FontAttributes = FontAttributes.Bold;\n            e.LabelStyle = labelStyle;\n\n            month = date.Month;\n        }\n        else\n        {\n            ChartAxisLabelStyle labelStyle = new();\n            labelStyle.LabelFormat = \"dd\";\n            e.LabelStyle = labelStyle;\n        }\n    }\n\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var candleChartInfo = (string[])Resources[\"CandleChartInfo\"];\n        CandleChartCollectionView.ItemsSource = candleChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Financial/SfCartesianChartOHLC.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartOHLC\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"OHLCChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ OHLC (Open-High-Low-Close) charts are the type of financial charts used to represent the price movement of an asset over a specific period. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ OHLC charts consist of four data points: the opening price, the high price, the low price, and the closing price for each period. To render an OHLC chart, create an instance of <strong style=\"color:blue\">HiLoOpenCloseSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of the <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                       Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"OHLC Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"OHLCChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart  HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                           Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"OHLC Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:DateTimeAxis  AutoScrollingMode=\"End\" AutoScrollingDeltaType=\"Months\" LabelCreated=\"LabelCreated\" ShowMajorGridLines=\"False\" >\n                            <toolkit:DateTimeAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"MMM-dd\"/>\n                            </toolkit:DateTimeAxis.LabelStyle>\n                        </toolkit:DateTimeAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMinorGridLines=\"True\" Maximum=\"110\" x:Name=\"YAxis\" IsVisible=\"True\">\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\"/>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"$##.##\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:HiLoOpenCloseSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                                 XBindingPath=\"Date\" Open=\"Value\" High=\"High\" Low=\"Low\" Close=\"Size\"\n                                                 EnableAnimation=\"True\" EnableTooltip=\"True\"/>\n                    <toolkit:SfCartesianChart.ZoomPanBehavior>\n                        <toolkit:ChartZoomPanBehavior x:Name=\"ZoomPan\" ZoomMode=\"X\" EnableDoubleTap=\"False\" EnablePanning=\"True\" EnablePinchZooming=\"True\"></toolkit:ChartZoomPanBehavior>\n                    </toolkit:SfCartesianChart.ZoomPanBehavior>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Financial/SfCartesianChartOHLC.xaml.cs",
    "content": "using Syncfusion.Maui.Toolkit.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartOHLC : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartOHLC()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartOHLC),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartOHLC),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void LabelCreated(object? sender, ChartAxisLabelEventArgs e)\n    {\n        var month = int.MaxValue;\n\n        DateTime baseDate = new(1899, 12, 30);\n        var date = baseDate.AddDays(e.Position);\n        if (date.Month != month)\n        {\n            ChartAxisLabelStyle labelStyle = new();\n            labelStyle.LabelFormat = \"MMM-dd\";\n            labelStyle.FontAttributes = FontAttributes.Bold;\n            e.LabelStyle = labelStyle;\n\n            month = date.Month;\n        }\n        else\n        {\n            ChartAxisLabelStyle labelStyle = new();\n            labelStyle.LabelFormat = \"dd\";\n            e.LabelStyle = labelStyle;\n        }\n    }\n\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var ohlcChartInfo = (string[])Resources[\"OHLCChartInfo\"];\n        OHLCChartCollectionView.ItemsSource = ohlcChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Histogram/SfCartesianChartHistogram.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartHistogram\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"HistogramChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Histogram</strong> chart is a graphical representation that organizes a group of data points into user-specified ranges. It is similar in appearance to a column chart. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Customize histogram intervals using the <strong style=\"color:blue\">HistogramInterval</strong> property and normal distribution curve can be collapsed using the <strong style=\"color:blue\">ShowNormalDistributionCurve</strong> property. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Histogram Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"HistogramChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <HorizontalStackLayout HorizontalOptions=\"End\">\n                    <Label Text=\"Show distribution line\" VerticalTextAlignment=\"Center\"/>\n                    <CheckBox x:Name=\"CheckBox\" IsChecked=\"True\" VerticalOptions=\"Start\" Margin=\"30,0,0,0\"/>\n                </HorizontalStackLayout>\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Histogram Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:NumericalAxis />\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis />\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:HistogramSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                             XBindingPath=\"Value\" YBindingPath=\"Size\"\n                                             ShowNormalDistributionCurve=\"{x:Binding Source={x:Reference CheckBox},Path=IsChecked}\"\n                                             HistogramInterval=\"20\" StrokeWidth=\"1.5\" ShowDataLabels=\"True\"\n                                             EnableTooltip=\"True\">\n                        <toolkit:HistogramSeries.CurveStyle>\n                            <toolkit:ChartLineStyle StrokeDashArray=\"12, 3, 3, 3\" StrokeWidth=\"2\"/>\n                        </toolkit:HistogramSeries.CurveStyle>\n                        <toolkit:HistogramSeries.DataLabelSettings>\n                            <toolkit:CartesianDataLabelSettings UseSeriesPalette=\"False\">\n                                <toolkit:CartesianDataLabelSettings.LabelStyle>\n                                    <toolkit:ChartDataLabelStyle TextColor=\"Aqua\"/>\n                                </toolkit:CartesianDataLabelSettings.LabelStyle>\n                            </toolkit:CartesianDataLabelSettings>\n                        </toolkit:HistogramSeries.DataLabelSettings>\n                    </toolkit:HistogramSeries>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Histogram/SfCartesianChartHistogram.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartHistogram : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartHistogram()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartHistogram),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartHistogram),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var histogramChartInfo = (string[])Resources[\"HistogramChartInfo\"];\n        HistogramChartCollectionView.ItemsSource = histogramChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Line/SfCartesianChartFastLine.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartFastLine\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"FastLineChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The FastLineSeries is a special kind of line series that can render a collection with large number of datapoints. To render a fast line toolkit, create an instance of <strong style=\"color:blue\">FastLineSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout>\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Fast Line Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"FastLineChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Fast Line Chart\" Margin=\"0,0,0,5\" \n                               HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" \n                               VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:DateTimeAxis ShowMinorGridLines=\"False\" ShowMajorGridLines=\"False\" \n                                           IntervalType=\"Years\" Interval=\"15\">\n                            <toolkit:DateTimeAxis.Title>\n                                <toolkit:ChartAxisTitle Text=\"X-Axis\"/>\n                            </toolkit:DateTimeAxis.Title>\n                            <toolkit:DateTimeAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"yyyy\"/>\n                            </toolkit:DateTimeAxis.LabelStyle>\n                        </toolkit:DateTimeAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis>\n                            <toolkit:NumericalAxis.Title>\n                                <toolkit:ChartAxisTitle Text=\"Y-Axis\"/>\n                            </toolkit:NumericalAxis.Title>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.ZoomPanBehavior>\n                        <toolkit:ChartZoomPanBehavior EnablePinchZooming=\"True\" EnableDoubleTap=\"True\" \n                                                      EnablePanning=\"True\"/>\n                    </toolkit:SfCartesianChart.ZoomPanBehavior>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:FastLineSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\"\n                                                EnableAntiAliasing=\"True\"\n                                                XBindingPath=\"Date\" YBindingPath=\"Value\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Line/SfCartesianChartFastLine.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartFastLine : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartFastLine()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartFastLine),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartFastLine),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion}\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var fastLineChartInfo = (string[])Resources[\"FastLineChartInfo\"];\n        FastLineChartCollectionView.ItemsSource = fastLineChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Line/SfCartesianChartLine.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.SfCartesianChartLine\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"LineChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ Line chart is used to represent the data trends at equal intervals by connecting points on a plot with straight lines. To render a line chart, create an instance of <strong style=\"color:blue\">LineSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Line Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"LineChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Line Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"false\" Interval=\"2\" PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\">\n                            <toolkit:CategoryAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"10\">\n                                </toolkit:ChartAxisTickStyle>\n                            </toolkit:CategoryAxis.MajorTickStyle>\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Maximum=\"100\" Minimum=\"0\" Interval=\"20\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'%\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\">\n                                </toolkit:ChartLineStyle>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                            <toolkit:NumericalAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"0\" />\n                            </toolkit:NumericalAxis.MajorTickStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:LineSeries Label=\"Line 1\" EnableTooltip=\"True\" EnableAnimation=\"True\" StrokeWidth=\"1\" \n                                            ItemsSource=\"{x:Binding FirstLineComponentData,Source={x:Reference root}}\" \n                                            XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                            ShowMarkers=\"True\" LegendIcon=\"SeriesType\"/>\n                        <toolkit:LineSeries Label=\"Line 2\" EnableTooltip=\"True\" EnableAnimation=\"True\" StrokeWidth=\"1\" \n                                            ItemsSource=\"{x:Binding SecondLineComponentData,Source={x:Reference root}}\" \n                                            XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                            ShowMarkers=\"True\" LegendIcon=\"SeriesType\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding LineCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout>\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Resources>\n                        <DoubleCollection x:Key=\"DashArray\">\n                            <x:Double>6</x:Double>\n                            <x:Double>3</x:Double>\n                            <x:Double>3</x:Double>\n                            <x:Double>3</x:Double>\n                        </DoubleCollection>\n                    </toolkit:SfCartesianChart.Resources>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Dashed Line Chart\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"false\" Interval=\"2\" PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\">\n                            <toolkit:CategoryAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"10\">\n                                </toolkit:ChartAxisTickStyle>\n                            </toolkit:CategoryAxis.MajorTickStyle>\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Interval=\"20\" Maximum=\"100\" Minimum=\"0\" >\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'%\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\">\n                                </toolkit:ChartLineStyle>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                            <toolkit:NumericalAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"0\" />\n                            </toolkit:NumericalAxis.MajorTickStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:LineSeries Label=\"Line 1\" StrokeDashArray=\"{x:StaticResource DashArray}\" LegendIcon=\"SeriesType\"\n                                            EnableTooltip=\"True\" EnableAnimation=\"True\" StrokeWidth=\"1\" ShowMarkers=\"True\"\n                                            ItemsSource=\"{x:Binding FirstLineComponentData,Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Value\"/>\n                        <toolkit:LineSeries Label=\"Line 2\" StrokeDashArray=\"{x:StaticResource DashArray}\" LegendIcon=\"SeriesType\"\n                                            EnableTooltip=\"True\" EnableAnimation=\"True\" StrokeWidth=\"1\" ShowMarkers=\"True\"\n                                            ItemsSource=\"{x:Binding SecondLineComponentData,Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Value\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding DashedLineCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Line/SfCartesianChartLine.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartLine : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartLine()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty FirstLineComponentDataProperty = BindableProperty.Create(\n        nameof(FirstLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartLine),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SecondLineComponentDataProperty = BindableProperty.Create(\n        nameof(SecondLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartLine),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty LineCodeDescriptionProperty = BindableProperty.Create(\n        nameof(LineCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartLine),\n        default(string)\n    );\n\n    public static readonly BindableProperty DashedLineCodeDescriptionProperty = BindableProperty.Create(\n        nameof(DashedLineCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartLine),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> FirstLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(FirstLineComponentDataProperty);\n        set => SetValue(FirstLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> SecondLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(SecondLineComponentDataProperty);\n        set => SetValue(SecondLineComponentDataProperty, value);\n    }\n\n    public string LineCodeDescription\n    {\n        get => (string)GetValue(LineCodeDescriptionProperty);\n        set => SetValue(LineCodeDescriptionProperty, value);\n    }\n\n    public string DashedLineCodeDescription\n    {\n        get => (string)GetValue(DashedLineCodeDescriptionProperty);\n        set => SetValue(DashedLineCodeDescriptionProperty, value);\n    }\n    #endregion}\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var lineChartInfo = (string[])Resources[\"LineChartInfo\"];\n        LineChartCollectionView.ItemsSource = lineChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Line/SfCartesianChartSpline.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartSpline\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"SplineChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">SplineSeries</strong> resembles line series, but instead of connecting the data points with line segments, the data points are connected by smooth bezier curves. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Spline Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"SplineChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout>\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Spline Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"false\" PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\">\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Maximum=\"100\" Minimum=\"0\" Interval=\"20\">\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\">\n                                </toolkit:ChartLineStyle>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                            <toolkit:NumericalAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"0\" />\n                            </toolkit:NumericalAxis.MajorTickStyle>\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'F\" />\n                            </toolkit:NumericalAxis.LabelStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:SplineSeries Label=\"High\" LegendIcon=\"SeriesType\" StrokeWidth=\"1\"\n                                              ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                              EnableTooltip=\"True\" EnableAnimation=\"True\" ShowMarkers=\"True\"/>\n                        <toolkit:SplineSeries Label=\"Low\" StrokeWidth=\"1\" LegendIcon=\"SeriesType\"\n                                              ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                              EnableTooltip=\"True\" EnableAnimation=\"True\" ShowMarkers=\"True\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding LineCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout>\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Resources>\n                        <DoubleCollection x:Key=\"DashArray\">\n                            <x:Double>6</x:Double>\n                            <x:Double>3</x:Double>\n                            <x:Double>3</x:Double>\n                            <x:Double>3</x:Double>\n                        </DoubleCollection>\n                    </toolkit:SfCartesianChart.Resources>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Dashed Spline Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"false\" PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\">\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Maximum=\"100\" Minimum=\"0\" Interval=\"20\">\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\">\n                                </toolkit:ChartLineStyle>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                            <toolkit:NumericalAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"0\" />\n                            </toolkit:NumericalAxis.MajorTickStyle>\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'%\" />\n                            </toolkit:NumericalAxis.LabelStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:SplineSeries Label=\"Line 1\" StrokeDashArray=\"{x:StaticResource DashArray}\" StrokeWidth=\"1\" LegendIcon=\"SeriesType\"\n                                              EnableTooltip=\"True\" EnableAnimation=\"True\" ShowMarkers=\"True\"\n                                              ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Value\" />\n                        <toolkit:SplineSeries Label=\"Line 2\" StrokeDashArray=\"{x:StaticResource DashArray}\" StrokeWidth=\"1\" LegendIcon=\"SeriesType\"\n                                              EnableTooltip=\"True\" EnableAnimation=\"True\" ShowMarkers=\"True\"\n                                              ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Value\" />\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding DashedLineCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Line/SfCartesianChartSpline.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartSpline : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartSpline()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty FirstLineComponentDataProperty = BindableProperty.Create(\n        nameof(FirstLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartSpline),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SecondLineComponentDataProperty = BindableProperty.Create(\n        nameof(SecondLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartSpline),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty LineCodeDescriptionProperty = BindableProperty.Create(\n        nameof(LineCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartSpline),\n        default(string)\n    );\n\n    public static readonly BindableProperty DashedLineCodeDescriptionProperty = BindableProperty.Create(\n        nameof(DashedLineCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartSpline),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> FirstLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(FirstLineComponentDataProperty);\n        set => SetValue(FirstLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> SecondLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(SecondLineComponentDataProperty);\n        set => SetValue(SecondLineComponentDataProperty, value);\n    }\n\n    public string LineCodeDescription\n    {\n        get => (string)GetValue(LineCodeDescriptionProperty);\n        set => SetValue(LineCodeDescriptionProperty, value);\n    }\n\n    public string DashedLineCodeDescription\n    {\n        get => (string)GetValue(DashedLineCodeDescriptionProperty);\n        set => SetValue(DashedLineCodeDescriptionProperty, value);\n    }\n    #endregion}\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var splineChartInfo = (string[])Resources[\"SplineChartInfo\"];\n        SplineChartCollectionView.ItemsSource = splineChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Line/SfCartesianChartStackingLine.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartStackingLine\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"StackingLineChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The stacked line chart is a type of chart that displays multiple line series stacked on top of each other, with the values of each series combined to show a cumulative value of the data points. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To render a stacked line chart, create an instance of the <strong style=\"color:blue\">StackingLineSeries</strong> and add it to the <strong style=\"color:blue\">Series</strong> collection property of the <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Stacking Line Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"StackingLineChartCollectionView\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\" \n                                      Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Resources>\n                        <ResourceDictionary>\n                            <DataTemplate x:Key=\"TooltipTemplate\">\n                                <StackLayout>\n                                    <Label Text=\"Grades\" HorizontalTextAlignment=\"Center\" HorizontalOptions=\"Center\" VerticalTextAlignment=\"Center\" \n                                           FontAttributes=\"Bold\" FontFamily=\"Helvetica\" Margin=\"0,2,0,2\" FontSize=\"13\"/>\n                                    <BoxView HeightRequest=\"1\" WidthRequest=\"80\" />\n                                    <StackLayout Orientation=\"Horizontal\" VerticalOptions=\"Fill\" Spacing=\"0\" Padding=\"3\" Margin=\"0\" HorizontalOptions=\"Center\">\n                                        <Ellipse TranslationY=\"-1\" StrokeThickness=\"2\" \n                                                 HeightRequest=\"10\" WidthRequest=\"10\" Fill=\"#04ABC1\" Margin=\"0,3,3,0\"/>\n                                        <Label Text=\"{Binding Item.Name}\"  VerticalTextAlignment=\"Center\" \n                                               HorizontalOptions=\"Start\"  FontFamily=\"Helvetica\" FontSize=\"12\" Margin=\"3,0,3,0\"/>\n                                        <Label Text=\"{Binding Item.Value,StringFormat=' :  {0}'}\" VerticalTextAlignment=\"Center\" \n                                               HorizontalOptions=\"End\" FontFamily=\"Helvetica\" Margin=\"0,0,3,0\" FontSize=\"12\" />\n                                    </StackLayout>\n                                </StackLayout>\n                            </DataTemplate>\n                        </ResourceDictionary>\n                    </toolkit:SfCartesianChart.Resources>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Stacking Line Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"False\" LabelPlacement=\"BetweenTicks\">\n                            <toolkit:CategoryAxis.Title>\n                                <toolkit:ChartAxisTitle Text=\"Year\"/>\n                            </toolkit:CategoryAxis.Title>\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes >\n                        <toolkit:NumericalAxis Minimum=\"0\" Maximum=\"300\" Interval=\"50\" ShowMajorGridLines=\"True\"\n                                               EdgeLabelsDrawingMode=\"Center\" PlotOffsetEnd=\"10\"/>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:StackingLineSeries Label=\"Line 1\" LegendIcon=\"SeriesType\"\n                                                ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Value\"\n                                                EnableAnimation=\"True\" ShowMarkers=\"True\" StrokeWidth=\"2\" \n                                                EnableTooltip=\"True\" TooltipTemplate=\"{x:StaticResource TooltipTemplate}\">\n                        <toolkit:StackingLineSeries.MarkerSettings>\n                            <toolkit:ChartMarkerSettings Width=\"10\" Height=\"10\" StrokeWidth=\"2\"/>\n                        </toolkit:StackingLineSeries.MarkerSettings>\n                    </toolkit:StackingLineSeries>\n                    <toolkit:StackingLineSeries Label=\"Line 2\" LegendIcon=\"SeriesType\" \n                                                ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Value\"\n                                                EnableAnimation=\"True\" ShowMarkers=\"True\" StrokeWidth=\"2\" \n                                                EnableTooltip=\"True\" TooltipTemplate=\"{x:StaticResource TooltipTemplate}\">\n                        <toolkit:StackingLineSeries.MarkerSettings>\n                            <toolkit:ChartMarkerSettings Width=\"10\" Height=\"10\" StrokeWidth=\"2\"/>\n                        </toolkit:StackingLineSeries.MarkerSettings>\n                    </toolkit:StackingLineSeries>\n                    <toolkit:StackingLineSeries Label=\"Line 3\" LegendIcon=\"SeriesType\" \n                                                ItemsSource=\"{x:Binding ThirdLineComponentData, Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Value\"\n                                                EnableAnimation=\"True\" ShowMarkers=\"True\" StrokeWidth=\"2\"\n                                                EnableTooltip=\"True\" TooltipTemplate=\"{x:StaticResource TooltipTemplate}\">\n                        <toolkit:StackingLineSeries.MarkerSettings>\n                            <toolkit:ChartMarkerSettings Width=\"10\" Height=\"10\" StrokeWidth=\"2\"/>\n                        </toolkit:StackingLineSeries.MarkerSettings>\n                    </toolkit:StackingLineSeries>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n    \n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Line/SfCartesianChartStackingLine.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartStackingLine : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartStackingLine()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty FirstLineComponentDataProperty = BindableProperty.Create(\n        nameof(FirstLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStackingLine),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SecondLineComponentDataProperty = BindableProperty.Create(\n        nameof(SecondLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStackingLine),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty ThirdLineComponentDataProperty = BindableProperty.Create(\n        nameof(ThirdLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStackingLine),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartStackingLine),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> FirstLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(FirstLineComponentDataProperty);\n        set => SetValue(FirstLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> SecondLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(SecondLineComponentDataProperty);\n        set => SetValue(SecondLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> ThirdLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ThirdLineComponentDataProperty);\n        set => SetValue(ThirdLineComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion}\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var stackingLineChartInfo = (string[])Resources[\"StackingLineChartInfo\"];\n        StackingLineChartCollectionView.ItemsSource = stackingLineChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Line/SfCartesianChartStackingLine100.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartStackingLine100\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"StackingLine100ChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The stacked line 100 chart is a type of chart that displays multiple line series stacked on top of each other, to indicate the cumulative value of the data points at 100%. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To render a stacked line 100 chart, create an instance of the <strong style=\"color:blue\">StackingLine100Series</strong> and add it to the <strong style=\"color:blue\">Series</strong> collection property of the <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Stacking Line 100% Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"StackingLine100ChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\" \n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Resources>\n                        <ResourceDictionary>\n                            <DataTemplate x:Key=\"TooltipTemplate\">\n                                <StackLayout Orientation=\"Horizontal\">\n                                    <Rectangle HeightRequest=\"35\" WidthRequest=\"8\"/>\n                                    <StackLayout Orientation=\"Vertical\">\n                                        <Label Text=\"{Binding Item.Name}\" FontSize=\"13\" Padding=\"5,0,0,0\"/>\n                                        <Label FontSize=\"12\" Padding=\"5,0,0,0\" Margin=\"0,0,3,0\">\n                                            <Label.FormattedText>\n                                                <FormattedString>\n                                                    <Span Text=\"Grades\" FontAttributes=\"Bold\" />\n                                                    <Span Text=\"{Binding Item.Value, StringFormat=' : {0}%'}\" />\n                                                </FormattedString>\n                                            </Label.FormattedText>\n                                        </Label>\n                                    </StackLayout>\n                                </StackLayout>\n                            </DataTemplate>\n                        </ResourceDictionary>\n                    </toolkit:SfCartesianChart.Resources>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Blood Type Distribution Among Population\"  LineBreakMode=\"WordWrap\"  Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis IsVisible=\"True\" ShowMajorGridLines=\"False\" LabelPlacement=\"BetweenTicks\">\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes >\n                        <toolkit:NumericalAxis Minimum=\"0\" Maximum=\"100\" Interval=\"20\" ShowMajorGridLines=\"True\" ShowMinorGridLines=\"False\" \n                                               EdgeLabelsDrawingMode=\"Center\" PlotOffsetEnd=\"10\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'%\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\" />\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                            <toolkit:NumericalAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle  TickSize=\"0\" />\n                            </toolkit:NumericalAxis.MajorTickStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:StackingLine100Series Label=\"Line 1\" LegendIcon=\"SeriesType\" \n                                                   ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Value\"\n                                                   EnableAnimation=\"True\" ShowMarkers=\"True\" StrokeWidth=\"2\" \n                                                   EnableTooltip=\"True\" TooltipTemplate=\"{x:StaticResource TooltipTemplate}\">\n                        <toolkit:StackingLine100Series.MarkerSettings>\n                            <toolkit:ChartMarkerSettings Width=\"10\" Height=\"10\" StrokeWidth=\"2\"/>\n                        </toolkit:StackingLine100Series.MarkerSettings>\n                    </toolkit:StackingLine100Series>\n                    <toolkit:StackingLine100Series Label=\"Line 2\" LegendIcon=\"SeriesType\" \n                                                   ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Value\"\n                                                   EnableAnimation=\"True\" ShowMarkers=\"True\" StrokeWidth=\"2\" \n                                                   EnableTooltip=\"True\" TooltipTemplate=\"{x:StaticResource TooltipTemplate}\">\n                        <toolkit:StackingLine100Series.MarkerSettings>\n                            <toolkit:ChartMarkerSettings Width=\"10\" Height=\"10\" StrokeWidth=\"2\"/>\n                        </toolkit:StackingLine100Series.MarkerSettings>\n                    </toolkit:StackingLine100Series>\n                    <toolkit:StackingLine100Series Label=\"Line 3\" LegendIcon=\"SeriesType\" \n                                                   ItemsSource=\"{x:Binding ThirdLineComponentData, Source={x:Reference root}}\" XBindingPath=\"Name\" YBindingPath=\"Value\"\n                                                   EnableAnimation=\"True\"  ShowMarkers=\"True\" StrokeWidth=\"2\" \n                                                   EnableTooltip=\"True\" TooltipTemplate=\"{x:StaticResource TooltipTemplate}\">\n                        <toolkit:StackingLine100Series.MarkerSettings>\n                            <toolkit:ChartMarkerSettings Width=\"10\" Height=\"10\" StrokeWidth=\"2\"/>\n                        </toolkit:StackingLine100Series.MarkerSettings>\n                    </toolkit:StackingLine100Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Line/SfCartesianChartStackingLine100.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartStackingLine100 : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartStackingLine100()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty FirstLineComponentDataProperty = BindableProperty.Create(\n        nameof(FirstLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStackingLine100),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SecondLineComponentDataProperty = BindableProperty.Create(\n        nameof(SecondLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStackingLine100),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty ThirdLineComponentDataProperty = BindableProperty.Create(\n        nameof(ThirdLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStackingLine100),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartStackingLine100),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> FirstLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(FirstLineComponentDataProperty);\n        set => SetValue(FirstLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> SecondLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(SecondLineComponentDataProperty);\n        set => SetValue(SecondLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> ThirdLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ThirdLineComponentDataProperty);\n        set => SetValue(ThirdLineComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion}\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var stackingLine100ChartInfo = (string[])Resources[\"StackingLine100ChartInfo\"];\n        StackingLine100ChartCollectionView.ItemsSource = stackingLine100ChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Line/SfCartesianChartStepLine.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartStepLine\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"StepLineChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ Step line chart is used to display the data showing changes in values over time by connecting points on plots with a combination of horizontal and vertical lines. And it’s used when it is necessary to highlight the irregularity changes. It appears to be steps. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To render the Step line chart, create an instance of the <strong style=\"color:blue\">StepLineSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of the <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Step Line Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"StepLineChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Step Line Chart\" MaxLines=\"2\" LineBreakMode=\"WordWrap\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"False\" PlotOffsetEnd=\"10\" PlotOffsetStart=\"10\"/>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Minimum=\"0\" Maximum=\"100\" Interval=\"20\">\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\"/>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'%\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:StepLineSeries Label=\"Line 1\" LegendIcon=\"SeriesType\"\n                                                ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" \n                                                XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                                EnableAnimation=\"True\" EnableTooltip=\"True\" ShowMarkers=\"True\">\n                            <toolkit:StepLineSeries.MarkerSettings>\n                                <toolkit:ChartMarkerSettings StrokeWidth=\"1\"/>\n                            </toolkit:StepLineSeries.MarkerSettings>\n                        </toolkit:StepLineSeries>\n                        <toolkit:StepLineSeries Label=\"Line 2\" LegendIcon=\"SeriesType\"\n                                                ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" \n                                                XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                                EnableAnimation=\"True\" EnableTooltip=\"True\" ShowMarkers=\"True\">\n                            <toolkit:StepLineSeries.MarkerSettings>\n                                <toolkit:ChartMarkerSettings StrokeWidth=\"1\"/>\n                            </toolkit:StepLineSeries.MarkerSettings>\n                        </toolkit:StepLineSeries>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding LineCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Dashed Step Line\" MaxLines=\"2\" LineBreakMode=\"WordWrap\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Resources>\n                        <DoubleCollection x:Key=\"DashArray\">\n                            <x:Double>6</x:Double>\n                            <x:Double>3</x:Double>\n                            <x:Double>3</x:Double>\n                            <x:Double>3</x:Double>\n                        </DoubleCollection>\n                        <ResourceDictionary>\n                            <DataTemplate x:Key=\"TooltipTemplate\">\n                                <StackLayout>\n                                    <Label Text=\"Grades\" HorizontalTextAlignment=\"Center\" HorizontalOptions=\"Center\" VerticalTextAlignment=\"Center\" \n                                           FontAttributes=\"Bold\" FontFamily=\"Helvetica\" Margin=\"0,2,0,2\" FontSize=\"12\" />\n                                    <BoxView HeightRequest=\"1\" WidthRequest=\"100\"/>\n                                    <StackLayout Orientation=\"Horizontal\" VerticalOptions=\"Fill\" Spacing=\"0\" Padding=\"3\" Margin=\"0\">\n                                        <Ellipse TranslationY=\"-1\" StrokeThickness=\"2\" \n                                                 HeightRequest=\"10\" WidthRequest=\"10\" Fill=\"#04ABC1\" Margin=\"0,3,3,0\"/>\n                                        <Label Text=\"{x:Binding Item.Name,StringFormat='{0:MMM-dd}'}\" \n                                               VerticalTextAlignment=\"Center\" HorizontalOptions=\"Start\" \n                                               FontFamily=\"Helvetica\" FontSize=\"12\" Margin=\"3,0,3,0\"/>\n                                        <Label Text=\"{x:Binding Item.Value,StringFormat=' :  {0}'}\" \n                                               VerticalTextAlignment=\"Center\" HorizontalOptions=\"End\" \n                                               FontFamily=\"Helvetica\" Margin=\"0,0,3,0\" FontSize=\"12\"/>\n                                    </StackLayout>\n                                </StackLayout>\n                            </DataTemplate>\n                        </ResourceDictionary>\n                    </toolkit:SfCartesianChart.Resources>\n                    <toolkit:SfCartesianChart.ZoomPanBehavior>\n                        <toolkit:ChartZoomPanBehavior ZoomMode=\"X\" EnableDoubleTap=\"False\" EnablePinchZooming=\"False\" EnablePanning=\"True\"/>\n                    </toolkit:SfCartesianChart.ZoomPanBehavior>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"False\" PlotOffsetEnd=\"10\" PlotOffsetStart=\"10\"/>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis EdgeLabelsDrawingMode=\"Fit\">\n                            <toolkit:NumericalAxis.LabelStyle LabelFormat=\"0'%\"/>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:StepLineSeries Label=\"Line 1\" LegendIcon=\"SeriesType\"\n                                                StrokeDashArray=\"{x:StaticResource DashArray}\" \n                                                ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" \n                                                XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                                ShowMarkers=\"True\" EnableAnimation=\"True\" EnableTooltip=\"True\"  \n                                                TooltipTemplate=\"{x:StaticResource TooltipTemplate}\" >\n                            <toolkit:StepLineSeries.MarkerSettings>\n                                <toolkit:ChartMarkerSettings StrokeWidth=\"1\"/>\n                            </toolkit:StepLineSeries.MarkerSettings>\n                        </toolkit:StepLineSeries>\n                        <toolkit:StepLineSeries Label=\"Line 2\" LegendIcon=\"SeriesType\"\n                                                StrokeDashArray=\"{x:StaticResource DashArray}\" \n                                                ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" \n                                                XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                                ShowMarkers=\"True\" EnableAnimation=\"True\" EnableTooltip=\"True\"  \n                                                TooltipTemplate=\"{x:StaticResource TooltipTemplate}\" >\n                            <toolkit:StepLineSeries.MarkerSettings>\n                                <toolkit:ChartMarkerSettings StrokeWidth=\"1\"/>\n                            </toolkit:StepLineSeries.MarkerSettings>\n                        </toolkit:StepLineSeries>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding DashedLineCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart IsTransposed=\"True\" HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Vertical Step Line\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Resources>\n                        <ResourceDictionary>\n                            <DataTemplate x:Key=\"TooltipTemplateVerticalLine\">\n                                <StackLayout>\n                                    <Label Text=\"Grades\" HorizontalTextAlignment=\"Center\" HorizontalOptions=\"Center\" VerticalTextAlignment=\"Center\" \n                                           FontAttributes=\"Bold\" FontFamily=\"Helvetica\" Margin=\"0,2\" FontSize=\"12\" />\n                                    <BoxView HeightRequest=\"1\" WidthRequest=\"100\" />\n                                    <StackLayout Orientation=\"Horizontal\" VerticalOptions=\"Fill\" Padding=\"3\" >\n                                        <Ellipse TranslationY=\"-1\" StrokeThickness=\"2\" \n                                                 HeightRequest=\"10\" WidthRequest=\"10\" Fill=\"#04ABC1\" Margin=\"0,3,3,0\"/>\n                                        <Label Text=\"{x:Binding Item.Name}\"  VerticalTextAlignment=\"Center\" HorizontalOptions=\"Start\"  \n                                               FontFamily=\"Helvetica\" FontSize=\"12\" Margin=\"3,0,3,0\"/>\n                                        <Label Text=\"{x:Binding Item.Value,StringFormat=' :  {0} %'}\" VerticalTextAlignment=\"Center\" HorizontalOptions=\"End\" \n                                               FontFamily=\"Helvetica\" Margin=\"0,0,3,0\" FontSize=\"12\"/>\n                                    </StackLayout>\n                                </StackLayout>\n                            </DataTemplate>\n                        </ResourceDictionary>\n                    </toolkit:SfCartesianChart.Resources>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"False\" LabelPlacement=\"BetweenTicks\"/>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Minimum=\"0\" Maximum=\"100\" Interval=\"20\" ShowMajorGridLines=\"True\">\n                            <toolkit:NumericalAxis.LabelStyle LabelFormat=\"0'%\"/>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:StepLineSeries Label=\"Line 1\" LegendIcon=\"SeriesType\"\n                                                ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\"  \n                                                XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                                ShowMarkers=\"True\" EnableAnimation=\"True\" EnableTooltip=\"True\" \n                                                TooltipTemplate=\"{StaticResource TooltipTemplateVerticalLine}\">\n                            <toolkit:StepLineSeries.MarkerSettings>\n                                <toolkit:ChartMarkerSettings StrokeWidth=\"1\"/>\n                            </toolkit:StepLineSeries.MarkerSettings>\n                        </toolkit:StepLineSeries>\n                        <toolkit:StepLineSeries Label=\"Line 2\" LegendIcon=\"SeriesType\"\n                                                ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\"  \n                                                XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                                ShowMarkers=\"True\" EnableAnimation=\"True\" EnableTooltip=\"True\"  \n                                                TooltipTemplate=\"{StaticResource TooltipTemplateVerticalLine}\">\n                            <toolkit:StepLineSeries.MarkerSettings>\n                                <toolkit:ChartMarkerSettings StrokeWidth=\"1\"/>\n                            </toolkit:StepLineSeries.MarkerSettings>\n                        </toolkit:StepLineSeries>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding VerticalLineCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Line/SfCartesianChartStepLine.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartStepLine : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartStepLine()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty FirstLineComponentDataProperty = BindableProperty.Create(\n        nameof(FirstLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStepLine),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SecondLineComponentDataProperty = BindableProperty.Create(\n        nameof(SecondLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartStepLine),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty LineCodeDescriptionProperty = BindableProperty.Create(\n        nameof(LineCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartStepLine),\n        default(string)\n    );\n\n    public static readonly BindableProperty DashedLineCodeDescriptionProperty = BindableProperty.Create(\n        nameof(DashedLineCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartStepLine),\n        default(string)\n    );\n\n    public static readonly BindableProperty VerticalLineCodeDescriptionProperty = BindableProperty.Create(\n        nameof(VerticalLineCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartStepLine),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> FirstLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(FirstLineComponentDataProperty);\n        set => SetValue(FirstLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> SecondLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(SecondLineComponentDataProperty);\n        set => SetValue(SecondLineComponentDataProperty, value);\n    }\n\n    public string LineCodeDescription\n    {\n        get => (string)GetValue(LineCodeDescriptionProperty);\n        set => SetValue(LineCodeDescriptionProperty, value);\n    }\n\n    public string DashedLineCodeDescription\n    {\n        get => (string)GetValue(DashedLineCodeDescriptionProperty);\n        set => SetValue(DashedLineCodeDescriptionProperty, value);\n    }\n\n    public string VerticalLineCodeDescription\n    {\n        get => (string)GetValue(VerticalLineCodeDescriptionProperty);\n        set => SetValue(VerticalLineCodeDescriptionProperty, value);\n    }\n    #endregion}\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var stepLineChartInfo = (string[])Resources[\"StepLineChartInfo\"];\n        StepLineChartCollectionView.ItemsSource = stepLineChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Scatter/SfCartesianChartScatter.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartScatter\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"ScatterChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ To render a scatter chart, create an instance of <strong style=\"color:blue\">ScatterSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of <strong style=\"color:blue\">SfCartesianChart</strong>. The segment size can be defined by using the <strong style=\"color:blue\">PointHeight</strong> and <strong style=\"color:blue\">PointWidth</strong> properties. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Scatter Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"ScatterChartCollectionView\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                      Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Scatter Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\" EdgeLabelsDrawingMode=\"Shift\" Minimum=\"100\" Maximum=\"220\" Interval=\"20\">\n                            <toolkit:NumericalAxis.Title>\n                                <toolkit:ChartAxisTitle Margin=\"5,10,5,2\" Text=\"Centimeter\"/>\n                            </toolkit:NumericalAxis.Title>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\" Minimum=\"50\" Maximum=\"80\" Interval=\"5\">\n                            <toolkit:NumericalAxis.Title>\n                                <toolkit:ChartAxisTitle Text=\"Kilogram\"/>\n                            </toolkit:NumericalAxis.Title>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ScatterSeries Label=\"Scatter 1\" EnableTooltip=\"True\" EnableAnimation=\"True\" Opacity=\"0.6\" PointWidth=\"8\" PointHeight=\"8\" \n                                           ItemsSource=\"{Binding FirstScatterComponentData, Source={x:Reference root}}\" XBindingPath=\"Value\" YBindingPath=\"Size\"/>\n                        <toolkit:ScatterSeries Label=\"Scatter 2\" EnableTooltip=\"True\" EnableAnimation=\"True\" Opacity=\"0.6\" PointWidth=\"8\" PointHeight=\"8\" \n                                           ItemsSource=\"{Binding SecondScatterComponentData, Source={x:Reference root}}\" XBindingPath=\"Value\" YBindingPath=\"Size\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Scatter/SfCartesianChartScatter.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartScatter : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartScatter()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty FirstScatterComponentDataProperty = BindableProperty.Create(\n        nameof(FirstScatterComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartScatter),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SecondScatterComponentDataProperty = BindableProperty.Create(\n        nameof(SecondScatterComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartScatter),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartScatter),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> FirstScatterComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(FirstScatterComponentDataProperty);\n        set => SetValue(FirstScatterComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> SecondScatterComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(SecondScatterComponentDataProperty);\n        set => SetValue(SecondScatterComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var scatterChartInfo = (string[])Resources[\"ScatterChartInfo\"];\n        ScatterChartCollectionView.ItemsSource = scatterChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Waterfall/SfCartesianChartWaterfall.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartWaterfall\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"WaterfallChartInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">WaterfallSeries</strong> clarifies the cumulative effect of a set of provided positive and negative values. The series is represented by a rectangle and a connector between the rectangles. To render a waterfall chart, create an instance of <strong style=\"color:blue\">WaterfallSeries</strong>, and add it to the <strong style=\"color:blue\">Series</strong> collection property of the <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">SummaryBindingPath</strong> of the string type is used to get or set the path value on the source subject to serve summary values to the series. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">SummaryPointsBrush</strong> of brush type is used to change the fill of the summary segment of the series. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">NegativePointsBrush</strong> of brush type is used to change the fill of the negative segment of the series. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">AllowAutoSum</strong> of bool type is used to change the summary segment calculation. By default, the property is true. When disabling this property, it renders the segment by using the y value of provided ItemsSource collection. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">ShowConnectorLine</strong> of bool type is used to enable or disable the connector line. By default, the property value is true. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Waterfall Chart Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"WaterfallChartCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Waterfall Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes >\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"False\" LabelPlacement=\"BetweenTicks\">\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\" >\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'B\" />\n                            </toolkit:NumericalAxis.LabelStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:WaterfallSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                             AllowAutoSum=\"True\" XBindingPath=\"Name\" YBindingPath=\"Value\" SummaryBindingPath=\"IsSummary\"\n                                             Fill=\"#95DB9C\" NegativePointsBrush=\"#B95375\" SummaryPointsBrush=\"#327DBE\" \n                                             EnableAnimation=\"True\">\n                        <toolkit:WaterfallSeries.DataLabelSettings>\n                            <toolkit:CartesianDataLabelSettings >\n                                <toolkit:CartesianDataLabelSettings.LabelStyle>\n                                    <toolkit:ChartDataLabelStyle LabelFormat=\"0'B\"/>\n                                </toolkit:CartesianDataLabelSettings.LabelStyle>\n                            </toolkit:CartesianDataLabelSettings>\n                        </toolkit:WaterfallSeries.DataLabelSettings>\n                    </toolkit:WaterfallSeries>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding WaterfallCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart IsTransposed=\"True\" HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\" >\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Vertical Waterfall Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" ShowMajorGridLines=\"False\" >\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\" IsVisible=\"False\">\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:WaterfallSeries ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                             AllowAutoSum=\"True\" XBindingPath=\"Name\" YBindingPath=\"Value\" SummaryBindingPath=\"IsSummary\" \n                                             Fill=\"#95DB9C\" NegativePointsBrush=\"#B95375\" SummaryPointsBrush=\"#327DBE\" \n                                             EnableAnimation=\"True\" EnableTooltip=\"True\">\n                        <toolkit:WaterfallSeries.DataLabelSettings >\n                            <toolkit:CartesianDataLabelSettings BarAlignment=\"Middle\">\n                                <toolkit:CartesianDataLabelSettings.LabelStyle>\n                                    <toolkit:ChartDataLabelStyle LabelFormat=\"0'M\"/>\n                                </toolkit:CartesianDataLabelSettings.LabelStyle>\n                            </toolkit:CartesianDataLabelSettings>\n                        </toolkit:WaterfallSeries.DataLabelSettings>\n                    </toolkit:WaterfallSeries>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding VerticalWaterfallCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Chart/Waterfall/SfCartesianChartWaterfall.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartWaterfall : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartWaterfall()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartWaterfall),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty WaterfallCodeDescriptionProperty = BindableProperty.Create(\n        nameof(WaterfallCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartWaterfall),\n        default(string)\n    );\n\n    public static readonly BindableProperty VerticalWaterfallCodeDescriptionProperty = BindableProperty.Create(\n        nameof(VerticalWaterfallCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartWaterfall),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string WaterfallCodeDescription\n    {\n        get => (string)GetValue(WaterfallCodeDescriptionProperty);\n        set => SetValue(WaterfallCodeDescriptionProperty, value);\n    }\n\n    public string VerticalWaterfallCodeDescription\n    {\n        get => (string)GetValue(VerticalWaterfallCodeDescriptionProperty);\n        set => SetValue(VerticalWaterfallCodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var scatterChartInfo = (string[])Resources[\"WaterfallChartInfo\"];\n        WaterfallChartCollectionView.ItemsSource = scatterChartInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/DataLabel/SfCartesianChartDataLabel.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartDataLabel\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"BarAlignmentProperty\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Top</strong> - Positions the data label at the top edge point of a chart segment. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Middle</strong> - Positions the data label at the center point of a chart segment. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Bottom</strong> - Positions the data label at the bottom edge point of a chart segment. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"LabelPlacementProperty\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Center</strong> - Positions the data label at the center of the data point. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Inner</strong> - Positions the data label inside the data point. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Outer</strong> - Positions the data label outside the data point. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Properties Options \" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Spacing=\"5\" Padding=\"5\">\n                        <Label Text=\"The alignment of data labels inside the series is defined by using the BarAlignment property.\"/>\n                        <CollectionView Grid.Column=\"0\"\n                                        x:Name=\"BarAlignmentCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                        <Label Text=\"The positioning of data labels relative to the data point is defined by using the LabelPlacement property.\"/>\n                        <CollectionView Grid.Column=\"0\"\n                                        x:Name=\"LabelPlacementCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Data Label Column Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" IsVisible=\"true\" ShowMajorGridLines=\"false\" />\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"True\" ShowMinorGridLines=\"false\" Interval=\"20\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0 Exp\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:NumericalAxis.MinorTickStyle>\n                                <toolkit:ChartAxisTickStyle Stroke=\"Transparent\" StrokeWidth=\"0\"/>\n                            </toolkit:NumericalAxis.MinorTickStyle>\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\" />\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ColumnSeries EnableAnimation=\"True\" ShowDataLabels=\"True\"  \n                                              ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Exp\">\n                            <toolkit:ColumnSeries.DataLabelSettings>\n                                <toolkit:CartesianDataLabelSettings BarAlignment=\"Middle\" LabelPlacement=\"Center\">\n                                    <toolkit:CartesianDataLabelSettings.LabelStyle>\n                                        <toolkit:ChartDataLabelStyle FontSize=\"12\" LabelFormat='0 Exp'/>\n                                    </toolkit:CartesianDataLabelSettings.LabelStyle>\n                                </toolkit:CartesianDataLabelSettings>\n                            </toolkit:ColumnSeries.DataLabelSettings>\n                        </toolkit:ColumnSeries>\n                        <toolkit:ColumnSeries EnableAnimation=\"True\" ShowDataLabels=\"True\"  \n                                              ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Value\">\n                            <toolkit:ColumnSeries.DataLabelSettings>\n                                <toolkit:CartesianDataLabelSettings BarAlignment=\"Top\" LabelPlacement=\"Outer\">\n                                    <toolkit:CartesianDataLabelSettings.LabelStyle>\n                                        <toolkit:ChartDataLabelStyle FontSize=\"12\" LabelFormat='0 Exp'/>\n                                    </toolkit:CartesianDataLabelSettings.LabelStyle>\n                                </toolkit:CartesianDataLabelSettings>\n                            </toolkit:ColumnSeries.DataLabelSettings>\n                        </toolkit:ColumnSeries>\n                        <toolkit:ColumnSeries EnableAnimation=\"True\" ShowDataLabels=\"True\"  \n                                              ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Size\">\n                            <toolkit:ColumnSeries.DataLabelSettings>\n                                <toolkit:CartesianDataLabelSettings BarAlignment=\"Top\" LabelPlacement=\"Inner\">\n                                    <toolkit:CartesianDataLabelSettings.LabelStyle>\n                                        <toolkit:ChartDataLabelStyle FontSize=\"12\" LabelFormat='0 Exp'/>\n                                    </toolkit:CartesianDataLabelSettings.LabelStyle>\n                                </toolkit:CartesianDataLabelSettings>\n                            </toolkit:ColumnSeries.DataLabelSettings>\n                        </toolkit:ColumnSeries>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/DataLabel/SfCartesianChartDataLabel.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartDataLabel : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartDataLabel()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartDataLabel),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartDataLabel),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var barAlignmentProperty = (string[])Resources[\"BarAlignmentProperty\"];\n        BarAlignmentCollectionView.ItemsSource = barAlignmentProperty;\n\n        var labelPlacementProperty = (string[])Resources[\"LabelPlacementProperty\"];\n        LabelPlacementCollectionView.ItemsSource = labelPlacementProperty;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/DataLabel/SfCartesianChartDataLabelContext.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartDataLabelContext\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout x:Name=\"ExpanderHeader\"  Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Data Label Context \" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Spacing=\"5\" Padding=\"5\">\n                        <toolkit:SfCartesianChart IsTransposed=\"True\" HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                                  Margin=\"0, 0, 20, 0\">\n                            <toolkit:SfCartesianChart.Title>\n                                <Label Text=\"Data Label with Context Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                            </toolkit:SfCartesianChart.Title>\n                            <toolkit:SfCartesianChart.XAxes>\n                                <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" IsVisible=\"true\" ShowMajorGridLines=\"false\" />\n                            </toolkit:SfCartesianChart.XAxes>\n                            <toolkit:SfCartesianChart.YAxes>\n                                <toolkit:NumericalAxis ShowMajorGridLines=\"True\" ShowMinorGridLines=\"false\" Interval=\"20\">\n                                    <toolkit:NumericalAxis.LabelStyle>\n                                        <toolkit:ChartAxisLabelStyle LabelFormat=\"0 Exp\"/>\n                                    </toolkit:NumericalAxis.LabelStyle>\n                                    <toolkit:NumericalAxis.MinorTickStyle>\n                                        <toolkit:ChartAxisTickStyle Stroke=\"Transparent\" StrokeWidth=\"0\"/>\n                                    </toolkit:NumericalAxis.MinorTickStyle>\n                                    <toolkit:NumericalAxis.AxisLineStyle>\n                                        <toolkit:ChartLineStyle StrokeWidth=\"0\" />\n                                    </toolkit:NumericalAxis.AxisLineStyle>\n                                </toolkit:NumericalAxis>\n                            </toolkit:SfCartesianChart.YAxes>\n                            <toolkit:SfCartesianChart.Series>\n                                <toolkit:ColumnSeries EnableAnimation=\"True\" ShowDataLabels=\"True\"  \n                                                      ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                                      XBindingPath=\"Name\" YBindingPath=\"Exp\"\n                                                      LabelContext=\"Percentage\">\n                                    <toolkit:ColumnSeries.DataLabelSettings>\n                                        <toolkit:CartesianDataLabelSettings BarAlignment=\"Top\" LabelPlacement=\"Inner\"/>\n                                    </toolkit:ColumnSeries.DataLabelSettings>\n                                </toolkit:ColumnSeries>\n                            </toolkit:SfCartesianChart.Series>\n                        </toolkit:SfCartesianChart>\n\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/DataLabel/SfCartesianChartDataLabelContext.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartDataLabelContext : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartDataLabelContext()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n        ExpanderHeader.IsVisible = true;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartDataLabelContext),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartDataLabelContext),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n            ExpanderHeader.IsVisible = false;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n            ExpanderHeader.IsVisible = true;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/DataLabel/SfCartesianChartDataLabelTemplate.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartDataLabelTemplate\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout x:Name=\"ExpanderHeader\"  Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Data Label Template \" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Spacing=\"5\" Padding=\"5\">\n                        <toolkit:SfCartesianChart IsTransposed=\"True\" HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                                  Margin=\"0, 0, 20, 0\">\n                            <toolkit:SfCartesianChart.Resources>\n                                <DataTemplate x:Key=\"LabelTemplate\">\n                                    <HorizontalStackLayout Spacing=\"5\" Margin=\"10, 0\">\n                                        <Ellipse Fill=\"Aqua\" Stroke=\"Aqua\" HeightRequest=\"15\" WidthRequest=\"15\"/>\n                                        <Label Text=\"{x:Binding Item.Exp}\" VerticalOptions=\"Center\" FontSize=\"15\"/>\n                                    </HorizontalStackLayout>\n                                </DataTemplate>\n                            </toolkit:SfCartesianChart.Resources>\n                            <toolkit:SfCartesianChart.Title>\n                                <Label Text=\"Data Label with Label Template Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                            </toolkit:SfCartesianChart.Title>\n                            <toolkit:SfCartesianChart.XAxes>\n                                <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" IsVisible=\"true\" ShowMajorGridLines=\"false\" />\n                            </toolkit:SfCartesianChart.XAxes>\n                            <toolkit:SfCartesianChart.YAxes>\n                                <toolkit:NumericalAxis ShowMajorGridLines=\"True\" ShowMinorGridLines=\"false\" Interval=\"20\" Maximum=\"120\">\n                                    <toolkit:NumericalAxis.LabelStyle>\n                                        <toolkit:ChartAxisLabelStyle LabelFormat=\"0 Exp\"/>\n                                    </toolkit:NumericalAxis.LabelStyle>\n                                    <toolkit:NumericalAxis.MinorTickStyle>\n                                        <toolkit:ChartAxisTickStyle Stroke=\"Transparent\" StrokeWidth=\"0\"/>\n                                    </toolkit:NumericalAxis.MinorTickStyle>\n                                    <toolkit:NumericalAxis.AxisLineStyle>\n                                        <toolkit:ChartLineStyle StrokeWidth=\"0\" />\n                                    </toolkit:NumericalAxis.AxisLineStyle>\n                                </toolkit:NumericalAxis>\n                            </toolkit:SfCartesianChart.YAxes>\n                            <toolkit:SfCartesianChart.Series>\n                                <toolkit:ColumnSeries EnableAnimation=\"True\" ShowDataLabels=\"True\"  \n                                                      ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                                      XBindingPath=\"Name\" YBindingPath=\"Exp\"\n                                                      LabelTemplate=\"{StaticResource LabelTemplate}\">\n                                    <toolkit:ColumnSeries.DataLabelSettings>\n                                        <toolkit:CartesianDataLabelSettings BarAlignment=\"Top\" LabelPlacement=\"Outer\"/>\n                                    </toolkit:ColumnSeries.DataLabelSettings>\n                                </toolkit:ColumnSeries>\n                            </toolkit:SfCartesianChart.Series>\n                        </toolkit:SfCartesianChart>\n\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/DataLabel/SfCartesianChartDataLabelTemplate.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartDataLabelTemplate : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartDataLabelTemplate()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n        ExpanderHeader.IsVisible = true;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartDataLabelTemplate),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartDataLabelTemplate),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n            ExpanderHeader.IsVisible = false;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n            ExpanderHeader.IsVisible = true;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Legend/SfCartesianChartLegend.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartLegend\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"LegendProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ To define the legend in the chart, initialize the <strong style=\"color:blue\">ChartLegend</strong> class and assign it to the <strong style=\"color:blue\">Legend</strong> property. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The visibility of the chart legend can be controlled using the <strong style=\"color:blue\">IsVisible</strong> property. By default, the IsVisible property is set to <strong style=\"color:blue\">true</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The visibility of individual legend items for specific series can be controlled using the <strong style=\"color:blue\">IsVisibleOnLegend</strong> property of the series. The default value for IsVisibleOnLegend is <strong style=\"color:blue\">true</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">Label</strong> property of <strong style=\"color:blue\">CartesianSeries</strong> is used to define the label for the corresponding series legend item. The appearance of the label can be customized using the <strong style=\"color:blue\">LabelStyle</strong> property. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To specify the legend icon based on the associated series type, use the <strong style=\"color:blue\">LegendIcon</strong> property and change its type using the <strong style=\"color:blue\">ChartLegendIconType</strong> enum values. The default value of the LegendIcon property is <strong style=\"color:blue\">Circle</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The legend can be positioned to the left, right, top, or bottom of the chart area using the <strong style=\"color:blue\">Placement</strong> property in the ChartLegend class. The default placement is <strong style=\"color:blue\">Top</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The visibility of series can be controlled by tapping the legend item using the <strong style=\"color:blue\">ToggleSeriesVisibility</strong> property. The default value of ToggleSeriesVisibility is <strong style=\"color:blue\">false</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To set the maximum size request for the legend view, override the <strong style=\"color:blue\">GetMaximumSizeCoefficient</strong> protected method in <strong style=\"color:blue\">ChartLegend</strong> class. The value should be between 0 and 1, representing the maximum size request, not the desired size for the legend items layout. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">ItemsLayout</strong> property is used to customize the arrangement and position of each legend item. The default value is <strong style=\"color:blue\">null</strong>. This property accepts any layout type. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">ChartLegend</strong> supports customizing the appearance of legend items using the <strong style=\"color:blue\">ItemTemplate</strong> property. The default value of ItemsTemplate is <strong style=\"color:blue\">null</strong>. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"PropertiesArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Legend Properties Information\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"PropertiesInfo\" Margin=\"5\">\n                        <CollectionView x:Name=\"PropertiesCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnPropertiesGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\" \n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend Placement=\"Top\">\n                            <toolkit:ChartLegend.LabelStyle>\n                                <toolkit:ChartLegendLabelStyle TextColor=\"#108dda\" Margin=\"5\" FontSize=\"18\" FontAttributes=\"Bold\"/>\n                            </toolkit:ChartLegend.LabelStyle>\n                        </toolkit:ChartLegend>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Legend Sample Line Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    \n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"false\"  PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\">\n                            <toolkit:CategoryAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"10\"/>\n                            </toolkit:CategoryAxis.MajorTickStyle>\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Maximum=\"0\" Minimum=\"120\" Interval=\"20\">\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\"/>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                            <toolkit:NumericalAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"0\" />\n                            </toolkit:NumericalAxis.MajorTickStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:LineSeries EnableTooltip=\"True\" Label=\"Line 1\" StrokeWidth=\"1\" LegendIcon=\"Diamond\"\n                                            ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" \n                                            XBindingPath=\"Name\" YBindingPath=\"Value\" ShowMarkers=\"True\"/>\n                        <toolkit:LineSeries EnableTooltip=\"True\" Label=\"Line 2\" StrokeWidth=\"1\" LegendIcon=\"Hexagon\"\n                                            ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" \n                                            XBindingPath=\"Name\" YBindingPath=\"Value\" ShowMarkers=\"True\"/>\n                        <toolkit:LineSeries EnableTooltip=\"True\" Label=\"Line 3\" StrokeWidth=\"1\" LegendIcon=\"Pentagon\"\n                                            ItemsSource=\"{x:Binding ThirdLineComponentData, Source={x:Reference root}}\" \n                                            XBindingPath=\"Name\" YBindingPath=\"Value\" ShowMarkers=\"True\"/>\n\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding LegendCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ItemLayoutLegendArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Item Layout Legend\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"ItemLayoutLegendInfo\" Margin=\"5\">\n                        <toolkit:SfCartesianChart x:Name=\"ItemLayoutChart\" HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\" \n                                                  Margin=\"0, 0, 20, 0\">\n                            <toolkit:SfCartesianChart.Legend>\n                                <toolkit:ChartLegend Placement=\"Bottom\">\n                                    <toolkit:ChartLegend.ItemsLayout>\n                                        <FlexLayout HorizontalOptions=\"Center\" Margin=\"10\"\n                                                    WidthRequest=\"{Binding Width, Source={x:Reference ItemLayoutChart}}\"/>\n                                    </toolkit:ChartLegend.ItemsLayout>\n                                </toolkit:ChartLegend>\n                            </toolkit:SfCartesianChart.Legend>\n                            <toolkit:SfCartesianChart.Title>\n                                <Label Text=\"Item Layout Legend Sample Line Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                            </toolkit:SfCartesianChart.Title>\n                            <toolkit:SfCartesianChart.XAxes>\n                                <toolkit:CategoryAxis ShowMajorGridLines=\"false\"  PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\">\n                                    <toolkit:CategoryAxis.MajorTickStyle>\n                                        <toolkit:ChartAxisTickStyle TickSize=\"10\"/>\n                                    </toolkit:CategoryAxis.MajorTickStyle>\n                                </toolkit:CategoryAxis>\n                            </toolkit:SfCartesianChart.XAxes>\n\n                            <toolkit:SfCartesianChart.YAxes>\n                                <toolkit:NumericalAxis Maximum=\"0\" Minimum=\"120\" Interval=\"20\">\n                                    <toolkit:NumericalAxis.AxisLineStyle>\n                                        <toolkit:ChartLineStyle StrokeWidth=\"0\"/>\n                                    </toolkit:NumericalAxis.AxisLineStyle>\n                                    <toolkit:NumericalAxis.MajorTickStyle>\n                                        <toolkit:ChartAxisTickStyle TickSize=\"0\" />\n                                    </toolkit:NumericalAxis.MajorTickStyle>\n                                </toolkit:NumericalAxis>\n                            </toolkit:SfCartesianChart.YAxes>\n\n                            <toolkit:SfCartesianChart.Series>\n                                <toolkit:LineSeries EnableTooltip=\"True\" Label=\"Line 1\" StrokeWidth=\"1\"\n                                                    ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" \n                                                    XBindingPath=\"Name\" YBindingPath=\"Value\" ShowMarkers=\"True\"/>\n                                <toolkit:LineSeries EnableTooltip=\"True\" Label=\"Line 2\" StrokeWidth=\"1\"\n                                                    ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" \n                                                    XBindingPath=\"Name\" YBindingPath=\"Value\" ShowMarkers=\"True\"/>\n                                <toolkit:LineSeries EnableTooltip=\"True\" Label=\"Line 3\" StrokeWidth=\"1\"\n                                                    ItemsSource=\"{x:Binding ThirdLineComponentData, Source={x:Reference root}}\" \n                                                    XBindingPath=\"Name\" YBindingPath=\"Value\" ShowMarkers=\"True\"/>\n\n                            </toolkit:SfCartesianChart.Series>\n                        </toolkit:SfCartesianChart>\n\n                        <core:SourceCodeExpander Code=\"{x:Binding ItemLayoutLegendCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnItemLayoutLegendGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ItemTemplateLegendArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Item Template Legend\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"ItemTemplateLegendInfo\" Margin=\"5\">\n                        <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\" \n                                                  Margin=\"0, 0, 20, 0\">\n                            <toolkit:SfCartesianChart.Resources>\n                                <DataTemplate x:Key=\"LegendTemplate\">\n                                    <Grid ColumnDefinitions=\"Auto,Auto\">\n                                        <HorizontalStackLayout Grid.Column=\"0\" WidthRequest=\"30\" HeightRequest=\"30\">\n                                            <Path Scale=\"0.75\" TranslationX=\"0.5\" HorizontalOptions=\"Center\" VerticalOptions=\"Center\"\n                                                  Data=\"F1 M 19.482422 10 C 19.482422 12.591146 18.549805 14.791667 16.68457 16.601562 C 14.819335 18.411459 12.58789 19.316406 9.990234 19.316406 C 7.392578 19.316406 5.16276 18.411459 3.300781 16.601562 C 1.438802 14.791667 0.507812 12.591146 0.507812 10 C 0.507812 7.408854 1.442057 5.201822 3.310547 3.378906 C 5.166015 1.575521 7.392578 0.673829 9.990234 0.673828 C 12.58789 0.673829 14.814452 1.575521 16.669922 3.378906 C 18.544922 5.201822 19.482422 7.408854 19.482422 10 Z M 18.964844 10 C 18.964844 7.597656 18.037109 5.501303 16.181641 3.710938 L 15.869141 4.248047 L 14.365234 3.847656 L 13.212891 4.169922 L 12.65625 5.673828 L 11.425781 5.996094 L 11.259766 7.265625 L 10.751953 7.03125 L 10.351562 8.105469 L 10.712891 10.048828 L 10.273438 10.878906 L 9.433594 10.917969 L 9.638672 12.03125 C 8.994141 11.666667 8.238932 11.149089 7.373047 10.478516 L 5.908203 10.341797 C 5.745442 10.257162 5.481771 10.139975 5.117188 9.990234 C 4.6875 10.54362 4.127604 11.158854 3.4375 11.835938 L 3.398438 12.548828 L 3.076172 13.203125 L 2.714844 13.173828 L 1.494141 10.722656 L 1.533203 10.009766 L 1.025391 9.980469 L 1.025391 10 C 1.025391 12.447916 1.910807 14.53125 3.681641 16.25 C 5.432942 17.949219 7.535807 18.798828 9.990234 18.798828 C 12.444661 18.798828 14.554036 17.944336 16.318359 16.235352 C 18.082682 14.526367 18.964844 12.447916 18.964844 10 Z M 13.183594 6.484375 L 12.695312 6.787109 L 12.294922 6.787109 L 12.695312 6.113281 L 12.96875 6.162109 Z M 12.451172 7.226562 C 12.262369 7.65625 11.923828 8.235678 11.435547 8.964844 L 11.201172 9.013672 C 11.539713 8.082683 11.865234 7.434896 12.177734 7.070312 Z M 14.042969 11.337891 L 13.789062 11.982422 L 13.173828 11.923828 Z M 14.541016 12.880859 L 14.160156 13.027344 L 14.423828 12.470703 Z M 17.392578 14.21875 L 17.089844 14.902344 C 16.634113 15.195312 16.168619 15.504558 15.693359 15.830078 L 15.380859 16.542969 L 15.097656 16.748047 L 14.873047 16.40625 C 15.0944 15.917969 15.31901 15.566406 15.546875 15.351562 L 16.210938 15.058594 C 16.373697 14.641927 16.5625 14.30013 16.777344 14.033203 L 17.060547 14.462891 Z M 12.177734 12.626953 L 11.416016 12.197266 L 12.138672 11.972656 Z M 10.996094 12.304688 L 10.712891 12.705078 L 10.205078 12.021484 Z M 14.677734 14.814453 C 14.580077 15.426433 14.143879 16.113281 13.369141 16.875 L 12.890625 16.914062 L 11.259766 16.240234 L 9.716797 16.318359 C 9.723307 15.960286 9.576822 15.537109 9.277344 15.048828 C 9.375 14.593099 9.638672 14.117839 10.068359 13.623047 C 10.992838 13.727214 11.774088 13.59375 12.412109 13.222656 L 13.095703 13.779297 L 13.486328 12.744141 C 13.707682 13.447266 14.104817 14.13737 14.677734 14.814453 Z M 9.492188 12.294922 L 9.199219 12.548828 L 8.837891 12.333984 Z M 13.818359 17.314453 L 13.603516 17.587891 L 12.958984 17.548828 L 13.447266 17.148438 Z M 5.214844 13.349609 C 4.817708 13.714193 4.420573 14.003906 4.023438 14.21875 L 3.544922 14.003906 L 4.384766 13.134766 Z \"\n                                                  Fill=\"{x:Binding IconBrush}\" Stroke=\"{x:Binding IconBrush}\"/>\n                                        </HorizontalStackLayout>\n                                        <Label Grid.Column=\"1\" FontSize=\"13\" \n                                               Text=\"{x:Binding Item.Label}\"\n                                               VerticalTextAlignment=\"Center\"\n                                               HorizontalOptions=\"Center\"\n                                               HorizontalTextAlignment=\"Start\"/>\n                                    </Grid>\n                                </DataTemplate>\n                            </toolkit:SfCartesianChart.Resources>\n                            <toolkit:SfCartesianChart.Legend>\n                                <toolkit:ChartLegend ItemTemplate=\"{x:StaticResource LegendTemplate}\" Placement=\"Top\"/>\n                            </toolkit:SfCartesianChart.Legend>\n                            <toolkit:SfCartesianChart.Title>\n                                <Label Text=\"Item Template Legend Sample Line Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                            </toolkit:SfCartesianChart.Title>\n                            \n                            <toolkit:SfCartesianChart.XAxes>\n                                <toolkit:CategoryAxis ShowMajorGridLines=\"false\"  PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\">\n                                    <toolkit:CategoryAxis.MajorTickStyle>\n                                        <toolkit:ChartAxisTickStyle TickSize=\"10\"/>\n                                    </toolkit:CategoryAxis.MajorTickStyle>\n                                </toolkit:CategoryAxis>\n                            </toolkit:SfCartesianChart.XAxes>\n\n                            <toolkit:SfCartesianChart.YAxes>\n                                <toolkit:NumericalAxis Maximum=\"0\" Minimum=\"120\" Interval=\"20\">\n                                    <toolkit:NumericalAxis.AxisLineStyle>\n                                        <toolkit:ChartLineStyle StrokeWidth=\"0\"/>\n                                    </toolkit:NumericalAxis.AxisLineStyle>\n                                    <toolkit:NumericalAxis.MajorTickStyle>\n                                        <toolkit:ChartAxisTickStyle TickSize=\"0\"/>\n                                    </toolkit:NumericalAxis.MajorTickStyle>\n                                </toolkit:NumericalAxis>\n                            </toolkit:SfCartesianChart.YAxes>\n\n                            <toolkit:SfCartesianChart.Series>\n                                <toolkit:LineSeries EnableTooltip=\"True\" Label=\"Line 1\" StrokeWidth=\"1\" \n                                                    ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" \n                                                    XBindingPath=\"Name\" YBindingPath=\"Value\" ShowMarkers=\"True\"/>\n                                <toolkit:LineSeries EnableTooltip=\"True\" Label=\"Line 2\" StrokeWidth=\"1\" \n                                                    ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" \n                                                    XBindingPath=\"Name\" YBindingPath=\"Value\" ShowMarkers=\"True\"/>\n                                <toolkit:LineSeries EnableTooltip=\"True\" Label=\"Line 3\" StrokeWidth=\"1\" \n                                                    ItemsSource=\"{x:Binding ThirdLineComponentData, Source={x:Reference root}}\" \n                                                    XBindingPath=\"Name\" YBindingPath=\"Value\" ShowMarkers=\"True\"/>\n                            </toolkit:SfCartesianChart.Series>\n                        </toolkit:SfCartesianChart>\n\n                        <core:SourceCodeExpander Code=\"{x:Binding ItemTemplateLegendCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnItemTemplateLegendGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Legend/SfCartesianChartLegend.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartLegend : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartLegend()\n    {\n        InitializeComponent();\n        PropertiesInfo.IsVisible = true;\n        ItemLayoutLegendInfo.IsVisible = false;\n        ItemTemplateLegendInfo.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty FirstLineComponentDataProperty = BindableProperty.Create(\n        nameof(FirstLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartLegend),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SecondLineComponentDataProperty = BindableProperty.Create(\n        nameof(SecondLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartLegend),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty ThirdLineComponentDataProperty = BindableProperty.Create(\n        nameof(ThirdLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartLegend),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty LegendCodeDescriptionProperty = BindableProperty.Create(\n        nameof(LegendCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartLegend),\n        default(string)\n    );\n\n    public static readonly BindableProperty ItemLayoutLegendCodeDescriptionProperty = BindableProperty.Create(\n        nameof(ItemLayoutLegendCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartLegend),\n        default(string)\n    );\n\n    public static readonly BindableProperty ItemTemplateLegendCodeDescriptionProperty = BindableProperty.Create(\n        nameof(ItemTemplateLegendCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartLegend),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> FirstLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(FirstLineComponentDataProperty);\n        set => SetValue(FirstLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> SecondLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(SecondLineComponentDataProperty);\n        set => SetValue(SecondLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> ThirdLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ThirdLineComponentDataProperty);\n        set => SetValue(ThirdLineComponentDataProperty, value);\n    }\n\n    public string LegendCodeDescription\n    {\n        get => (string)GetValue(LegendCodeDescriptionProperty);\n        set => SetValue(LegendCodeDescriptionProperty, value);\n    }\n\n    public string ItemLayoutLegendCodeDescription\n    {\n        get => (string)GetValue(ItemLayoutLegendCodeDescriptionProperty);\n        set => SetValue(ItemLayoutLegendCodeDescriptionProperty, value);\n    }\n\n    public string ItemTemplateLegendCodeDescription\n    {\n        get => (string)GetValue(ItemTemplateLegendCodeDescriptionProperty);\n        set => SetValue(ItemTemplateLegendCodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var legendProperties = (string[])Resources[\"LegendProperties\"];\n        PropertiesCollectionView.ItemsSource = legendProperties;\n    }\n\n    private async void OnPropertiesGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (PropertiesArrowImage.Rotation == 0)\n        {\n            await PropertiesArrowImage.RotateTo(90);\n            PropertiesInfo.IsVisible = true;\n        }\n        else\n        {\n            await PropertiesArrowImage.RotateTo(0);\n            PropertiesInfo.IsVisible = false;\n        }\n    }\n\n    private async void OnItemLayoutLegendGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ItemLayoutLegendArrowImage.Rotation == 0)\n        {\n            await ItemLayoutLegendArrowImage.RotateTo(90);\n            ItemLayoutLegendInfo.IsVisible = true;\n        }\n        else\n        {\n            await ItemLayoutLegendArrowImage.RotateTo(0);\n            ItemLayoutLegendInfo.IsVisible = false;\n        }\n    }\n\n    private async void OnItemTemplateLegendGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ItemTemplateLegendArrowImage.Rotation == 0)\n        {\n            await ItemTemplateLegendArrowImage.RotateTo(90);\n            ItemTemplateLegendInfo.IsVisible = true;\n        }\n        else\n        {\n            await ItemTemplateLegendArrowImage.RotateTo(0);\n            ItemTemplateLegendInfo.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/PlotBand/SfCartesianChartDateTimePlotBand.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartDateTimePlotBand\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"DateTimePlotBand\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">NumericalPlotBands</strong> are used to draw plot bands for <strong style=\"color:blue\">NumericalAxis</strong> and <strong style=\"color:blue\">CategoryAxis</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To add a plot band, create an instance of <strong style=\"color:blue\">NumericalPlotBandCollection</strong> and specify numerical value for the <strong style=\"color:blue\">Start</strong> and <strong style=\"color:blue\">End</strong> parameter. These parameters determine the beginning and end of the plot band. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                           Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"DateTime Plot Band\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Grid ColumnDefinitions=\"0.4*, 0.6*\" x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"DateTimePlotBandCollectionView\"\n                                        Grid.Column=\"0\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                        <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                                          Margin=\"0, 0, 20, 0\">\n                                    <toolkit:SfCartesianChart.Legend>\n                                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                                    </toolkit:SfCartesianChart.Legend>\n                                    <toolkit:SfCartesianChart.Title>\n                                        <Label Text=\"DateTime Plot Band Line Sample Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                                    </toolkit:SfCartesianChart.Title>\n                                    <toolkit:SfCartesianChart.XAxes>\n                                        <toolkit:DateTimeAxis>\n                                            <toolkit:DateTimeAxis.PlotBands>\n                                                <toolkit:DateTimePlotBandCollection>\n                                                    <toolkit:DateTimePlotBand Start=\"2022-05-04\" End=\"2022-05-06\" Fill=\"Orange\"/>\n                                                </toolkit:DateTimePlotBandCollection>\n                                            </toolkit:DateTimeAxis.PlotBands>\n                                        </toolkit:DateTimeAxis>\n                                    </toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:SfCartesianChart.YAxes>\n                                        <toolkit:NumericalAxis Maximum=\"40\" Minimum=\"20\" Interval=\"5\">\n                                            <toolkit:NumericalAxis.AxisLineStyle>\n                                                <toolkit:ChartLineStyle StrokeWidth=\"0\">\n                                                </toolkit:ChartLineStyle>\n                                            </toolkit:NumericalAxis.AxisLineStyle>\n                                            <toolkit:NumericalAxis.MajorTickStyle>\n                                                <toolkit:ChartAxisTickStyle TickSize=\"0\" />\n                                            </toolkit:NumericalAxis.MajorTickStyle>\n                                        </toolkit:NumericalAxis>\n                                    </toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:SfCartesianChart.Series>\n                                        <toolkit:LineSeries Label=\"Line 1\" EnableTooltip=\"True\" EnableAnimation=\"True\" StrokeWidth=\"1\" \n                                                            ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                                            XBindingPath=\"Date\" YBindingPath=\"High\" \n                                                            ShowMarkers=\"True\" LegendIcon=\"SeriesType\"/>\n                                    </toolkit:SfCartesianChart.Series>\n                                </toolkit:SfCartesianChart>\n\n                                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/PlotBand/SfCartesianChartDateTimePlotBand.xaml.cs",
    "content": "using Syncfusion.Maui.Toolkit.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartDateTimePlotBand : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartDateTimePlotBand()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartDateTimePlotBand),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartDateTimePlotBand),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var dateTimePlotBand = (string[])Resources[\"DateTimePlotBand\"];\n        DateTimePlotBandCollectionView.ItemsSource = dateTimePlotBand;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/PlotBand/SfCartesianChartNumericalPlotBand.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartNumericalPlotBand\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n    \n    <ContentView.Resources>\n        <x:Array x:Key=\"NumericalPlotBandInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">NumericalPlotBands</strong> are used to draw plot bands for <strong style=\"color:blue\">NumericalAxis</strong> and <strong style=\"color:blue\">CategoryAxis</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ To add a plot band, create an instance of <strong style=\"color:blue\">NumericalPlotBandCollection</strong> and specify numerical value for the <strong style=\"color:blue\">Start</strong> and <strong style=\"color:blue\">End</strong> parameter. These parameters determine the beginning and end of the plot band. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                           Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Numerical Plot Band\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Grid ColumnDefinitions=\"0.4*, 0.6*\" x:Name=\"Info\" Margin=\"5\">\n                        <CollectionView x:Name=\"NumericalPlotBandCollectionView\"\n                                        Grid.Column=\"0\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                        <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                                          Margin=\"0, 0, 20, 0\">\n                                    <toolkit:SfCartesianChart.Legend>\n                                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                                    </toolkit:SfCartesianChart.Legend>\n                                    <toolkit:SfCartesianChart.Title>\n                                        <Label Text=\"Numerical Plot Band Line Sample Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                                    </toolkit:SfCartesianChart.Title>\n                                    <toolkit:SfCartesianChart.XAxes>\n                                        <toolkit:CategoryAxis ShowMajorGridLines=\"false\" Interval=\"2\" PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\">\n                                            <toolkit:CategoryAxis.MajorTickStyle>\n                                                <toolkit:ChartAxisTickStyle TickSize=\"10\">\n                                                </toolkit:ChartAxisTickStyle>\n                                            </toolkit:CategoryAxis.MajorTickStyle>\n                                        </toolkit:CategoryAxis>\n                                    </toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:SfCartesianChart.YAxes>\n                                        <toolkit:NumericalAxis Maximum=\"100\" Minimum=\"0\" Interval=\"20\">\n                                            <toolkit:NumericalAxis.LabelStyle>\n                                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0'%\"/>\n                                            </toolkit:NumericalAxis.LabelStyle>\n                                            <toolkit:NumericalAxis.AxisLineStyle>\n                                                <toolkit:ChartLineStyle StrokeWidth=\"0\">\n                                                </toolkit:ChartLineStyle>\n                                            </toolkit:NumericalAxis.AxisLineStyle>\n                                            <toolkit:NumericalAxis.PlotBands>\n                                                <toolkit:NumericalPlotBandCollection>\n                                                    <toolkit:NumericalPlotBand Start=\"25\" End=\"40\" Fill=\"Orange\"/>\n                                                </toolkit:NumericalPlotBandCollection>\n                                            </toolkit:NumericalAxis.PlotBands>\n                                        </toolkit:NumericalAxis>\n                                    </toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:SfCartesianChart.Series>\n                                        <toolkit:LineSeries Label=\"Line 1\" EnableTooltip=\"True\" EnableAnimation=\"True\" StrokeWidth=\"1\" \n                                                            ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                                            XBindingPath=\"Name\" YBindingPath=\"Value\" \n                                                            ShowMarkers=\"True\" LegendIcon=\"SeriesType\"/>\n                                    </toolkit:SfCartesianChart.Series>\n                                </toolkit:SfCartesianChart>\n\n                                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/PlotBand/SfCartesianChartNumericalPlotBand.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartNumericalPlotBand : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartNumericalPlotBand()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartNumericalPlotBand),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartNumericalPlotBand),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var numericalPlotBandInfo = (string[])Resources[\"NumericalPlotBandInfo\"];\n        NumericalPlotBandCollectionView.ItemsSource = numericalPlotBandInfo;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/PlotBand/SfCartesianChartOtherPlotBand.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartOtherPlotBand\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"RecursivePlotBandInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">RepeatEvery</strong> - Specifies the frequency at which the plot band is repeated. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">RepeatEveryType</strong> - Specifies the date time unit for <strong style=\"color:blue\">DateTimePlotBand</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">RepeatUntil</strong> - Specifies the end value at which the plot band stops repeating.  ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"SegmentedPlotBandInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">AssociatedAxisStart</strong> - Specifies the starting value of the plot band on its associated axis. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">AssociatedAxisEnd</strong> - Specifies the ending value of the plot band on its associated axis. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">AssociatedAxisName</strong> - Specifies the name of the axis associated with the plot band.  ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PlotLineInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ When specifying the same value for both <strong style=\"color:blue\">Start</strong> and <strong style=\"color:blue\">End</strong>, a plot line will be drawn. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Label Text=\"The Plot band recurrence feature enables plot bands to be drawn repeatedly at regular intervals. This functionality is particularly useful when you need to mark events that occur recursively along the timeline of the chart.\"/>\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"RecursiveArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Recursive Plot Band\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Grid ColumnDefinitions=\"0.4*, 0.6*\" x:Name=\"RecursivePlotBandInfo\" Margin=\"5\">\n                        <CollectionView x:Name=\"RecursivePlotBandCollectionView\"\n                                        Grid.Column=\"0\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                        <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                                          Margin=\"0, 0, 20, 0\">\n                                    <toolkit:SfCartesianChart.Title>\n                                        <Label Text=\"Recursive Plot Band Column Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                                    </toolkit:SfCartesianChart.Title>\n                                    <toolkit:SfCartesianChart.XAxes>\n                                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" IsVisible=\"true\" ShowMajorGridLines=\"false\" />\n                                    </toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:SfCartesianChart.YAxes>\n                                        <toolkit:NumericalAxis Maximum=\"100\" Minimum=\"0\">\n                                            <toolkit:NumericalAxis.PlotBands>\n                                                <toolkit:NumericalPlotBandCollection>\n                                                    <toolkit:NumericalPlotBand Start=\"0\" End=\"10\" IsRepeatable=\"True\"\n                                                                               RepeatUntil=\"100\" RepeatEvery=\"20\" Fill=\"LightGray\"/>\n                                                </toolkit:NumericalPlotBandCollection>\n                                            </toolkit:NumericalAxis.PlotBands>\n                                        </toolkit:NumericalAxis>\n                                    </toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:SfCartesianChart.Series>\n                                        <toolkit:LineSeries EnableAnimation=\"True\" ShowMarkers=\"True\"\n                                                            ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                                            XBindingPath=\"Name\" YBindingPath=\"Value\"/>\n                                    </toolkit:SfCartesianChart.Series>\n                                </toolkit:SfCartesianChart>\n\n                                <core:SourceCodeExpander Code=\"{x:Binding RecursivePlotCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnRecursivePlotBandGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Label Text=\"For vertical axis plot bands, the height is determined by the start and end properties, and it extends horizontally across the associated horizontal axis. For horizontal axis plot bands, the width is determined by the start and end properties, and it extends vertically across the associated vertical axis.\"/>\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"SegmentedArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Segmented Plot Band\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Grid ColumnDefinitions=\"0.4*, 0.6*\" x:Name=\"SegmentedPlotBandInfo\" Margin=\"5\">\n                        <CollectionView x:Name=\"SegmentedPlotBandCollectionView\"\n                                        Grid.Column=\"0\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                        <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                                          Margin=\"0, 0, 20, 0\">\n                                    <toolkit:SfCartesianChart.Title>\n                                        <Label Text=\"Segmented Plot Band Column Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                                    </toolkit:SfCartesianChart.Title>\n                                    <toolkit:SfCartesianChart.XAxes>\n                                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" IsVisible=\"true\" ShowMajorGridLines=\"false\" />\n                                    </toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:SfCartesianChart.YAxes>\n                                        <toolkit:NumericalAxis Maximum=\"100\" Minimum=\"0\">\n                                            <toolkit:NumericalAxis.PlotBands>\n                                                <toolkit:NumericalPlotBandCollection>\n                                                    <toolkit:NumericalPlotBand Start=\"0\" End=\"25\" AssociatedAxisEnd=\"0.5\"\n                                                                               Fill=\"#B300E190\" Text=\"Low\"/>\n                                                    <toolkit:NumericalPlotBand Start=\"35\" End=\"65\" AssociatedAxisStart=\"2.5\" AssociatedAxisEnd=\"4\"\n                                                                               Fill=\"#B3FCD404\" Text=\"Average\"/>\n                                                    <toolkit:NumericalPlotBand Start=\"75\" End=\"100\" AssociatedAxisStart=\"5.5\"\n                                                                               Fill=\"#B3FF4E4E\" Text=\"High\"/>\n                                                </toolkit:NumericalPlotBandCollection>\n                                            </toolkit:NumericalAxis.PlotBands>\n                                        </toolkit:NumericalAxis>\n                                    </toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:SfCartesianChart.Series>\n                                        <toolkit:LineSeries EnableAnimation=\"True\" ShowMarkers=\"True\"\n                                                            ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                                            XBindingPath=\"Name\" YBindingPath=\"Value\"/>\n                                    </toolkit:SfCartesianChart.Series>\n                                </toolkit:SfCartesianChart>\n\n                                <core:SourceCodeExpander Code=\"{x:Binding SegmentedPlotCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnSegmentedPlotBandGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n        \n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"LineArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Plot Line\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Grid ColumnDefinitions=\"0.4*, 0.6*\" x:Name=\"PlotLineInfo\" Margin=\"5\">\n                        <CollectionView x:Name=\"PlotLineCollectionView\"\n                                        Grid.Column=\"0\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                        <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                                          Margin=\"0, 0, 20, 0\">\n                                    <toolkit:SfCartesianChart.Title>\n                                        <Label Text=\"Plot Line Column Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                                    </toolkit:SfCartesianChart.Title>\n                                    <toolkit:SfCartesianChart.XAxes>\n                                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" IsVisible=\"true\" ShowMajorGridLines=\"false\" />\n                                    </toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:SfCartesianChart.YAxes>\n                                        <toolkit:NumericalAxis Maximum=\"100\" Minimum=\"0\">\n                                            <toolkit:NumericalAxis.PlotBands>\n                                                <toolkit:NumericalPlotBandCollection>\n                                                    <toolkit:NumericalPlotBand Start=\"20\" End=\"20\"\n                                                                               Fill=\"#B300E190\" Stroke=\"#B300E190\"\n                                                                               StrokeWidth=\"2\"/>\n                                                    <toolkit:NumericalPlotBand Start=\"40\" End=\"40\" \n                                                                               Fill=\"#FCD404\" Stroke=\"#FCD404\"\n                                                                               StrokeWidth=\"2\"/>\n                                                    <toolkit:NumericalPlotBand Start=\"70\" End=\"70\" \n                                                                               Fill=\"#FF4E4E\" Stroke=\"#FF4E4E\"\n                                                                               StrokeWidth=\"2\"/>\n                                                </toolkit:NumericalPlotBandCollection>\n                                            </toolkit:NumericalAxis.PlotBands>\n                                        </toolkit:NumericalAxis>\n                                    </toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:SfCartesianChart.Series>\n                                        <toolkit:LineSeries EnableAnimation=\"True\" ShowMarkers=\"True\"\n                                                            ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                                            XBindingPath=\"Name\" YBindingPath=\"Value\"/>\n                                    </toolkit:SfCartesianChart.Series>\n                                </toolkit:SfCartesianChart>\n\n                                <core:SourceCodeExpander Code=\"{x:Binding PlotLineCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnPlotLineGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/PlotBand/SfCartesianChartOtherPlotBand.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartOtherPlotBand : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartOtherPlotBand()\n    {\n        InitializeComponent();\n        RecursivePlotBandInfo.IsVisible = false;\n        SegmentedPlotBandInfo.IsVisible = false;\n        PlotLineInfo.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartOtherPlotBand),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty RecursivePlotCodeDescriptionProperty = BindableProperty.Create(\n        nameof(RecursivePlotCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartOtherPlotBand),\n        default(string)\n    );\n\n    public static readonly BindableProperty SegmentedPlotCodeDescriptionProperty = BindableProperty.Create(\n        nameof(SegmentedPlotCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartOtherPlotBand),\n        default(string)\n    );\n\n    public static readonly BindableProperty PlotLineCodeDescriptionProperty = BindableProperty.Create(\n        nameof(PlotLineCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartOtherPlotBand),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string RecursivePlotCodeDescription\n    {\n        get => (string)GetValue(RecursivePlotCodeDescriptionProperty);\n        set => SetValue(RecursivePlotCodeDescriptionProperty, value);\n    }\n\n    public string SegmentedPlotCodeDescription\n    {\n        get => (string)GetValue(SegmentedPlotCodeDescriptionProperty);\n        set => SetValue(SegmentedPlotCodeDescriptionProperty, value);\n    }\n\n    public string PlotLineCodeDescription\n    {\n        get => (string)GetValue(PlotLineCodeDescriptionProperty);\n        set => SetValue(PlotLineCodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var recursivePlotBandInfo = (string[])Resources[\"RecursivePlotBandInfo\"];\n        RecursivePlotBandCollectionView.ItemsSource = recursivePlotBandInfo;\n\n        var segmentedPlotBandInfo = (string[])Resources[\"SegmentedPlotBandInfo\"];\n        SegmentedPlotBandCollectionView.ItemsSource = segmentedPlotBandInfo;\n\n        var plotLineInfo = (string[])Resources[\"PlotLineInfo\"];\n        PlotLineCollectionView.ItemsSource = plotLineInfo;\n    }\n\n    private async void OnRecursivePlotBandGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (RecursiveArrowImage.Rotation == 0)\n        {\n            await RecursiveArrowImage.RotateTo(90);\n            RecursivePlotBandInfo.IsVisible = true;\n        }\n        else\n        {\n            await RecursiveArrowImage.RotateTo(0);\n            RecursivePlotBandInfo.IsVisible = false;\n        }\n    }\n\n    private async void OnSegmentedPlotBandGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (SegmentedArrowImage.Rotation == 0)\n        {\n            await SegmentedArrowImage.RotateTo(90);\n            SegmentedPlotBandInfo.IsVisible = true;\n        }\n        else\n        {\n            await SegmentedArrowImage.RotateTo(0);\n            SegmentedPlotBandInfo.IsVisible = false;\n        }\n    }\n\n    private async void OnPlotLineGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (LineArrowImage.Rotation == 0)\n        {\n            await LineArrowImage.RotateTo(90);\n            PlotLineInfo.IsVisible = true;\n        }\n        else\n        {\n            await LineArrowImage.RotateTo(0);\n            PlotLineInfo.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/PlotBand/SfCartesianChartPlotBandPropertiesInfo.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartPlotBandPropertiesInfo\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"PlotBandProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Size</strong> - changes how long plot band should be expanded. This is applicable only when end is not specified. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">SizeType</strong> - changes the date-time unit of the value specified in the Size property. The values can be year, month, day, hour, minute, second, and millisecond. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Text</strong> - changes the text of the plot band. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Fill</strong> - changes the fill of the plot band. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Stroke</strong> - changes the stroke color of the plot band.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">StrokeWidth</strong> - changes the stroke width of the plot band. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">StrokeDashArray</strong> - changes the stoke in dash array. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">IsVisible</strong> - changes the visibility of the plot band in chart axis. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">IsRepeatable</strong> - specifies the plot band need to be repeated in specified interval. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                           Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Plot Band Properties\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Margin=\"5\">\n                        <Label Text=\"Plot bands are classified into NumericalPlotBand and DateTimePlotBand. Based on the axis, plot bands are drawn using these classifications. The following properties are used to configure the plot band:\" />\n                        <CollectionView x:Name=\"PlotBandPRopertiesCollectionView\"\n                                        Grid.Column=\"0\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/PlotBand/SfCartesianChartPlotBandPropertiesInfo.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartPlotBandPropertiesInfo : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartPlotBandPropertiesInfo()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartPlotBandPropertiesInfo),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartPlotBandPropertiesInfo),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var plotBandPRoperties = (string[])Resources[\"PlotBandProperties\"];\n        PlotBandPRopertiesCollectionView.ItemsSource = plotBandPRoperties;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Selection/SfCartesianChartSelection.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartSelection\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <HorizontalStackLayout HorizontalOptions=\"End\">\n                    <Label Text=\"Multiple Selection :\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    <CheckBox HeightRequest=\"35\" VerticalOptions=\"Center\" CheckedChanged=\"CheckedChanged\"/>\n                </HorizontalStackLayout>\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Selection Column Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" IsVisible=\"true\" ShowMajorGridLines=\"false\" />\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"True\" ShowMinorGridLines=\"false\" Interval=\"20\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0 Exp\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:NumericalAxis.MinorTickStyle>\n                                <toolkit:ChartAxisTickStyle Stroke=\"Transparent\" StrokeWidth=\"0\"/>\n                            </toolkit:NumericalAxis.MinorTickStyle>\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\" />\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ColumnSeries EnableAnimation=\"True\" ShowDataLabels=\"True\"  \n                                              ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Exp\">\n                            <toolkit:ColumnSeries.SelectionBehavior>\n                                <toolkit:DataPointSelectionBehavior x:Name=\"DataPointSelection\" SelectionBrush=\"#2A9AF3\" SelectedIndex=\"6\" Type=\"SingleDeselect\"/>\n                            </toolkit:ColumnSeries.SelectionBehavior>\n                        </toolkit:ColumnSeries>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding XamlCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                <core:SourceCodeExpander Code=\"{x:Binding CSharpCodeDescription, Source={x:Reference root}}\"  CodeType=\"CSharp\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Selection/SfCartesianChartSelection.xaml.cs",
    "content": "using Syncfusion.Maui.Toolkit.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartSelection : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartSelection()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartSelection),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty XamlCodeDescriptionProperty = BindableProperty.Create(\n        nameof(XamlCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartSelection),\n        default(string)\n    );\n\n    public static readonly BindableProperty CSharpCodeDescriptionProperty = BindableProperty.Create(\n        nameof(CSharpCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartSelection),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string XamlCodeDescription\n    {\n        get => (string)GetValue(XamlCodeDescriptionProperty);\n        set => SetValue(XamlCodeDescriptionProperty, value);\n    }\n\n    public string CSharpCodeDescription\n    {\n        get => (string)GetValue(CSharpCodeDescriptionProperty);\n        set => SetValue(CSharpCodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void CheckedChanged(object sender, CheckedChangedEventArgs e)\n    {\n        DataPointSelection.Type = e.Value ? ChartSelectionType.Multiple : ChartSelectionType.SingleDeselect;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Selection/SfCartesianChartSeriesSelection.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.SfCartesianChartSeriesSelection\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <HorizontalStackLayout HorizontalOptions=\"End\">\n                    <Label Text=\"Multiple Selection :\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    <CheckBox HeightRequest=\"35\" VerticalOptions=\"Center\" CheckedChanged=\"CheckedChanged\"/>\n                </HorizontalStackLayout>\n                <toolkit:SfCartesianChart x:Name=\"SelectionChart\" HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Selection Column Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.SelectionBehavior>\n                        <toolkit:SeriesSelectionBehavior x:Name =\"SeriesSelection\" SelectionBrush=\"{x:Null}\" SelectionChanging=\"SelectionChanging\" Type=\"SingleDeselect\"/>\n                    </toolkit:SfCartesianChart.SelectionBehavior>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis LabelPlacement=\"BetweenTicks\" IsVisible=\"true\" ShowMajorGridLines=\"false\" />\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"True\" ShowMinorGridLines=\"false\" Interval=\"20\">\n                            <toolkit:NumericalAxis.LabelStyle>\n                                <toolkit:ChartAxisLabelStyle LabelFormat=\"0 Exp\"/>\n                            </toolkit:NumericalAxis.LabelStyle>\n                            <toolkit:NumericalAxis.MinorTickStyle>\n                                <toolkit:ChartAxisTickStyle Stroke=\"Transparent\" StrokeWidth=\"0\"/>\n                            </toolkit:NumericalAxis.MinorTickStyle>\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\" />\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ColumnSeries EnableAnimation=\"True\" Fill=\"#8000BDAE\"\n                                              ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Exp\"/>\n                        <toolkit:ColumnSeries EnableAnimation=\"True\"  Fill=\"#80404041\" \n                                              ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Value\"/>\n                        <toolkit:ColumnSeries EnableAnimation=\"True\" Fill=\"#80357CD2\"\n                                              ItemsSource=\"{x:Binding ComponentData,Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Size\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding XamlCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                <core:SourceCodeExpander Code=\"{x:Binding CSharpCodeDescription, Source={x:Reference root}}\"  CodeType=\"CSharp\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Selection/SfCartesianChartSeriesSelection.xaml.cs",
    "content": "using Syncfusion.Maui.Toolkit.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartSeriesSelection : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartSeriesSelection()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartSeriesSelection),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty XamlCodeDescriptionProperty = BindableProperty.Create(\n        nameof(XamlCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartSelection),\n        default(string)\n    );\n\n    public static readonly BindableProperty CSharpCodeDescriptionProperty = BindableProperty.Create(\n        nameof(CSharpCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartSelection),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    List<int> SelectedIndexes = new List<int>();\n\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string XamlCodeDescription\n    {\n        get => (string)GetValue(XamlCodeDescriptionProperty);\n        set => SetValue(XamlCodeDescriptionProperty, value);\n    }\n\n    public string CSharpCodeDescription\n    {\n        get => (string)GetValue(CSharpCodeDescriptionProperty);\n        set => SetValue(CSharpCodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void CheckedChanged(object sender, CheckedChangedEventArgs e)\n    {\n        SeriesSelection.Type = e.Value ? ChartSelectionType.Multiple : ChartSelectionType.SingleDeselect;\n        SelectedIndexes.Clear();\n\n        var fadedColors = new List<SolidColorBrush> \n        {\n            new SolidColorBrush(Color.FromArgb(\"#8000BDAE\")),\n            new SolidColorBrush(Color.FromArgb(\"#80404041\")),\n            new SolidColorBrush(Color.FromArgb(\"#80357CD2\"))\n        };\n\n        foreach (var series in SelectionChart.Series)\n        {\n            series.Fill = fadedColors[SelectionChart.Series.IndexOf(series)];\n        }\n    }\n\n    private void SelectionChanging(object sender, ChartSelectionChangingEventArgs e)\n    {\n        var defaultColors = new List<SolidColorBrush>\n        {\n            new SolidColorBrush(Color.FromArgb(\"#00BDAE\")),\n            new SolidColorBrush(Color.FromArgb(\"#404041\")),\n            new SolidColorBrush(Color.FromArgb(\"#357CD2\"))\n        };\n\n        var fadedColors = new List<SolidColorBrush>\n        {\n            new SolidColorBrush(Color.FromArgb(\"#8000BDAE\")),\n            new SolidColorBrush(Color.FromArgb(\"#80404041\")),\n            new SolidColorBrush(Color.FromArgb(\"#80357CD2\"))\n        };\n\n        // Create a HashSet of all selected indexes including old and new indexes.\n        var selectedIndexes = new HashSet<int>(SelectedIndexes);\n\n        // Add new indexes to the selected set.\n        foreach (var index in e.NewIndexes)\n        {\n            selectedIndexes.Add(index);\n            if (!SelectedIndexes.Contains(index))\n                SelectedIndexes.Add(index);\n        }\n\n        // Remove old indexes from the selected set.\n        foreach (var index in e.OldIndexes)\n        {\n            selectedIndexes.Remove(index);\n            if (SelectedIndexes.Contains(index))\n                SelectedIndexes.Remove(index);\n        }\n\n        // Set the fill color based on whether the index is in the selected set.\n        foreach (var series in SelectionChart.Series)\n        {\n            int index = SelectionChart.Series.IndexOf(series);\n            series.Fill = selectedIndexes.Contains(index) ? defaultColors[index] : fadedColors[index];\n        }\n    }\n\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Tooltip/SfCartesianChartTooltip.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartTooltip\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\" />\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Title>\n                        <Label Text=\"Tooltip Column Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.TooltipBehavior>\n                        <toolkit:ChartTooltipBehavior Duration=\"500\" TextColor=\"Aqua\" FontSize=\"16\" Background=\"Gray\"/>\n                    </toolkit:SfCartesianChart.TooltipBehavior>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:CategoryAxis ShowMajorGridLines=\"False\" LabelPlacement=\"BetweenTicks\">\n                        </toolkit:CategoryAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"True\" Minimum=\"0\">\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ColumnSeries Label=\"Aqua\" EnableTooltip=\"True\" EnableAnimation=\"True\" Width=\"0.8\" Spacing=\"0.2\" \n                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Exp\" LegendIcon=\"SeriesType\"/>\n                        <toolkit:ColumnSeries Label=\"Gray\" EnableTooltip=\"True\" EnableAnimation=\"True\" Width=\"0.8\" Spacing=\"0.2\" \n                                              ItemsSource=\"{x:Binding ComponentData, Source={x:Reference root}}\" \n                                              XBindingPath=\"Name\" YBindingPath=\"Value\" LegendIcon=\"SeriesType\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding TooltipCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n\n        <Label Text=\"The SfCartesianChart provides support to customize the appearance of the tooltip by using the TooltipTemplate property.\"/>\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Customization Tooltip\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Border x:Name=\"Info\" StrokeShape=\"RoundRectangle 4\" Margin=\"10\" Padding=\"10\">\n                        <VerticalStackLayout Spacing=\"5\">\n                            <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\">\n                                <toolkit:SfCartesianChart.Resources>\n                                    <DataTemplate x:Key=\"TemplateColumn\">\n                                        <VerticalStackLayout Spacing=\"5\">\n                                            <HorizontalStackLayout VerticalOptions=\"Fill\" HorizontalOptions=\"Center\" Spacing=\"10\">\n                                                <Ellipse TranslationY=\"-1\" Stroke=\"Aqua\" StrokeThickness=\"2\" HeightRequest=\"10\" WidthRequest=\"10\" />\n                                                <Label Text=\"{x:Binding Item.Name}\" HorizontalTextAlignment=\"Center\" HorizontalOptions=\"Center\" \n                                                       VerticalTextAlignment=\"Center\" FontAttributes=\"Bold\" \n                                                       FontFamily=\"Helvetica\" Margin=\"0,2\" FontSize=\"12\"/>\n                                            </HorizontalStackLayout>\n                                            <BoxView HeightRequest=\"1\" WidthRequest=\"100\" Color=\"White\" />\n                                            <HorizontalStackLayout VerticalOptions=\"Fill\" >\n                                                <Label Text=\"{x:Binding Item.Value, StringFormat='Value:  {0}M'}\"  \n                                                       VerticalTextAlignment=\"Center\" HorizontalOptions=\"Start\" \n                                                       FontFamily=\"Helvetica\" FontSize=\"12\" />\n                                                <Label Text=\"{x:Binding Item.Exp, StringFormat=', Exp:  {0}M'}\" \n                                                       VerticalTextAlignment=\"Center\" HorizontalOptions=\"End\" \n                                                       FontFamily=\"Helvetica\" FontSize=\"12\" />\n                                            </HorizontalStackLayout>\n                                        </VerticalStackLayout>\n                                    </DataTemplate>\n                                </toolkit:SfCartesianChart.Resources>\n                                <toolkit:SfCartesianChart.Legend>\n                                    <toolkit:ChartLegend ToggleSeriesVisibility=\"True\" />\n                                </toolkit:SfCartesianChart.Legend>\n                                <toolkit:SfCartesianChart.Title>\n                                    <Label Text=\"Custom Tooltip Column Sample Chart\" Margin=\"0,0,0,5\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\"/>\n                                </toolkit:SfCartesianChart.Title>\n                                <toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:CategoryAxis ShowMajorGridLines=\"False\" LabelPlacement=\"BetweenTicks\">\n                                    </toolkit:CategoryAxis>\n                                </toolkit:SfCartesianChart.XAxes>\n                                <toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:NumericalAxis ShowMajorGridLines=\"True\" Minimum=\"0\">\n                                    </toolkit:NumericalAxis>\n                                </toolkit:SfCartesianChart.YAxes>\n                                <toolkit:SfCartesianChart.Series>\n                                    <toolkit:ColumnSeries Label=\"Aqua\" EnableAnimation=\"True\" Width=\"0.8\" Spacing=\"0.2\" \n                                                          ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\" \n                                                          XBindingPath=\"Name\" YBindingPath=\"Exp\" LegendIcon=\"SeriesType\"\n                                                          EnableTooltip=\"True\" TooltipTemplate=\"{x:StaticResource TemplateColumn}\"/>\n                                    <toolkit:ColumnSeries Label=\"Gray\" EnableAnimation=\"True\" Width=\"0.8\" Spacing=\"0.2\" \n                                                          ItemsSource=\"{Binding ComponentData, Source={x:Reference root}}\" \n                                                          XBindingPath=\"Name\" YBindingPath=\"Value\" LegendIcon=\"SeriesType\"\n                                                          EnableTooltip=\"True\" TooltipTemplate=\"{x:StaticResource TemplateColumn}\"/>\n                                </toolkit:SfCartesianChart.Series>\n                            </toolkit:SfCartesianChart>\n\n                            <core:SourceCodeExpander Code=\"{x:Binding CustomToolTipCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                        </VerticalStackLayout>\n                    </Border>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Tooltip/SfCartesianChartTooltip.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartTooltip : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartTooltip()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartTooltip),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty TooltipCodeDescriptionProperty = BindableProperty.Create(\n        nameof(TooltipCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartTooltip),\n        default(string)\n    );\n\n    public static readonly BindableProperty CustomToolTipCodeDescriptionProperty = BindableProperty.Create(\n        nameof(CustomToolTipCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartTooltip),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> ComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string TooltipCodeDescription\n    {\n        get => (string)GetValue(TooltipCodeDescriptionProperty);\n        set => SetValue(TooltipCodeDescriptionProperty, value);\n    }\n\n    public string CustomToolTipCodeDescription\n    {\n        get => (string)GetValue(CustomToolTipCodeDescriptionProperty);\n        set => SetValue(CustomToolTipCodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Trackball/SfCartesianChartCustomTrackball.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartCustomTrackball\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\">\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Label Text=\"Trackball labels can be customized by adding any view as its template by using TrackballLabelTemplate of CartesianSeries.\"/>\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ItemArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Trackball Item Template\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"ItemInfo\" Spacing=\"10\">\n                        <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"FillAndExpand\"\n                                                  Margin=\"0, 0, 20, 0\">\n                            <toolkit:SfCartesianChart.Resources>\n                                <DataTemplate x:Key=\"TrackballLabelTemplate\">\n                                    <HorizontalStackLayout Spacing=\"5\">\n                                        <Ellipse TranslationY=\"-1\" Fill=\"{x:Binding Series.MarkerSettings.Stroke}\" StrokeThickness=\"2\" HeightRequest=\"10\" WidthRequest=\"10\" />\n                                        <Label Text=\"{x:Binding Series.Label, StringFormat='{0}:'}\" FontSize=\"12\"  HorizontalOptions=\"Center\" />\n                                        <Label Text=\"{x:Binding Label,StringFormat='{0}Exp'}\" FontSize=\"12\" Margin=\"0,0,2,0\" HorizontalOptions=\"Center\"/>\n                                    </HorizontalStackLayout>\n                                </DataTemplate>\n                            </toolkit:SfCartesianChart.Resources>\n                            <toolkit:SfCartesianChart.Legend>\n                                <toolkit:ChartLegend Placement=\"Top\" ToggleSeriesVisibility=\"True\"/>\n                            </toolkit:SfCartesianChart.Legend>\n                            <toolkit:SfCartesianChart.Title >\n                                <Label Text=\"Trackball Line Sample Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                            </toolkit:SfCartesianChart.Title>\n                            <toolkit:SfCartesianChart.TrackballBehavior>\n                                <toolkit:ChartTrackballBehavior x:Name=\"Trackball\" ShowLine=\"True\" ShowMarkers=\"True\" DisplayMode=\"FloatAllPoints\" ActivationMode=\"TouchMove\">\n                                    <toolkit:ChartTrackballBehavior.LineStyle>\n                                        <toolkit:ChartLineStyle StrokeWidth=\"1.5\"/>\n                                    </toolkit:ChartTrackballBehavior.LineStyle>\n                                    <toolkit:ChartTrackballBehavior.MarkerSettings>\n                                        <toolkit:ChartMarkerSettings Width=\"10\" Height=\"10\" StrokeWidth=\"1\"/>\n                                    </toolkit:ChartTrackballBehavior.MarkerSettings>\n                                </toolkit:ChartTrackballBehavior>\n                            </toolkit:SfCartesianChart.TrackballBehavior>\n                            <toolkit:SfCartesianChart.XAxes>\n                                <toolkit:DateTimeAxis IntervalType=\"Years\" Interval=\"1\" EdgeLabelsVisibilityMode=\"Visible\" ShowMajorGridLines=\"false\"\n                                                      PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\">\n                                    <toolkit:DateTimeAxis.MajorTickStyle>\n                                        <toolkit:ChartAxisTickStyle TickSize=\"10\"/>\n                                    </toolkit:DateTimeAxis.MajorTickStyle>\n                                </toolkit:DateTimeAxis>\n                            </toolkit:SfCartesianChart.XAxes>\n                            <toolkit:SfCartesianChart.YAxes>\n                                <toolkit:NumericalAxis Maximum=\"120\" Minimum=\"0\" Interval=\"20\">\n                                    <toolkit:NumericalAxis.AxisLineStyle>\n                                        <toolkit:ChartLineStyle StrokeWidth=\"0\"/>\n                                    </toolkit:NumericalAxis.AxisLineStyle>\n                                    <toolkit:NumericalAxis.MajorTickStyle>\n                                        <toolkit:ChartAxisTickStyle TickSize=\"0\" />\n                                    </toolkit:NumericalAxis.MajorTickStyle>\n                                </toolkit:NumericalAxis>\n                            </toolkit:SfCartesianChart.YAxes>\n                            <toolkit:SfCartesianChart.Series>\n                                <toolkit:LineSeries ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" Label=\"Line 1\" \n                                                    XBindingPath=\"Date\" YBindingPath=\"Value\" ShowMarkers=\"True\" StrokeWidth=\"1\"\n                                                    TrackballLabelTemplate=\"{x:StaticResource TrackballLabelTemplate}\">\n                                    <toolkit:LineSeries.MarkerSettings>\n                                        <toolkit:ChartMarkerSettings Type=\"Circle\" Width=\"10\" Height=\"10\" \n                                                                     StrokeWidth=\"1\" Stroke=\"#8000BDAE\"/>\n                                    </toolkit:LineSeries.MarkerSettings>\n                                </toolkit:LineSeries>\n                                <toolkit:LineSeries ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" Label=\"Line 2\" \n                                                    XBindingPath=\"Date\" YBindingPath=\"Value\" ShowMarkers=\"True\" StrokeWidth=\"1\"\n                                                    TrackballLabelTemplate=\"{x:StaticResource TrackballLabelTemplate}\">\n                                    <toolkit:LineSeries.MarkerSettings>\n                                        <toolkit:ChartMarkerSettings Type=\"Circle\" Width=\"10\" Height=\"10\" \n                                                                     StrokeWidth=\"1\" Stroke=\"#80404041\"/>\n                                    </toolkit:LineSeries.MarkerSettings>\n                                </toolkit:LineSeries>\n                                <toolkit:LineSeries ItemsSource=\"{x:Binding ThirdLineComponentData, Source={x:Reference root}}\" Label=\"Line 3\" \n                                                    XBindingPath=\"Date\" YBindingPath=\"Value\" ShowMarkers=\"True\" StrokeWidth=\"1\"\n                                                    TrackballLabelTemplate=\"{x:StaticResource TrackballLabelTemplate}\">\n                                    <toolkit:LineSeries.MarkerSettings>\n                                        <toolkit:ChartMarkerSettings Type=\"Circle\" Width=\"10\" Height=\"10\" \n                                                                     StrokeWidth=\"1\" Stroke=\"#80357CD2\"/>\n                                    </toolkit:LineSeries.MarkerSettings>\n                                </toolkit:LineSeries>\n                            </toolkit:SfCartesianChart.Series>\n                        </toolkit:SfCartesianChart>\n                        \n                        <core:SourceCodeExpander Code=\"{x:Binding SeriesCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnItemGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Label Text=\"To customize the appearance of axis labels on the trackball, you can use the TrackballLabelTemplate property of the ChartAxis.\"/>\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"AxisArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Trackball Axis Template\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"AxisInfo\" Spacing=\"10\">\n                        <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                            <toolkit:SfCartesianChart.Resources>\n                                <DataTemplate x:Key=\"AxisLabelTemplate\">\n                                    <Label WidthRequest=\"100\" HeightRequest=\"20\" HorizontalTextAlignment=\"Center\" \n                                           Text=\"{x:Binding .}\" TextColor=\"White\" FontSize =\"15\"/>\n                                </DataTemplate>\n                            </toolkit:SfCartesianChart.Resources>\n                            <toolkit:SfCartesianChart.Legend>\n                                <toolkit:ChartLegend Placement=\"Top\" ToggleSeriesVisibility=\"True\"/>\n                            </toolkit:SfCartesianChart.Legend>\n                            <toolkit:SfCartesianChart.Title >\n                                <Label Text=\"Trackball Line Sample Chart\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                            </toolkit:SfCartesianChart.Title>\n                            <toolkit:SfCartesianChart.TrackballBehavior>\n                                <toolkit:ChartTrackballBehavior ShowLine=\"True\" ShowMarkers=\"True\" DisplayMode=\"FloatAllPoints\" ActivationMode=\"TouchMove\">\n                                    <toolkit:ChartTrackballBehavior.LineStyle>\n                                        <toolkit:ChartLineStyle StrokeWidth=\"1.5\"/>\n                                    </toolkit:ChartTrackballBehavior.LineStyle>\n                                    <toolkit:ChartTrackballBehavior.MarkerSettings>\n                                        <toolkit:ChartMarkerSettings Width=\"10\" Height=\"10\" StrokeWidth=\"1\"/>\n                                    </toolkit:ChartTrackballBehavior.MarkerSettings>\n                                </toolkit:ChartTrackballBehavior>\n                            </toolkit:SfCartesianChart.TrackballBehavior>\n                            <toolkit:SfCartesianChart.XAxes>\n                                <toolkit:DateTimeAxis IntervalType=\"Years\" Interval=\"1\" EdgeLabelsVisibilityMode=\"Visible\" ShowMajorGridLines=\"false\"\n                                                      PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\"\n                                                      ShowTrackballLabel=\"True\" TrackballLabelTemplate=\"{x:StaticResource AxisLabelTemplate}\">\n                                    <toolkit:DateTimeAxis.MajorTickStyle>\n                                        <toolkit:ChartAxisTickStyle TickSize=\"10\"/>\n                                    </toolkit:DateTimeAxis.MajorTickStyle>\n                                </toolkit:DateTimeAxis>\n                            </toolkit:SfCartesianChart.XAxes>\n                            <toolkit:SfCartesianChart.YAxes>\n                                <toolkit:NumericalAxis Maximum=\"120\" Minimum=\"0\" Interval=\"20\">\n                                    <toolkit:NumericalAxis.AxisLineStyle>\n                                        <toolkit:ChartLineStyle StrokeWidth=\"0\"/>\n                                    </toolkit:NumericalAxis.AxisLineStyle>\n                                    <toolkit:NumericalAxis.MajorTickStyle>\n                                        <toolkit:ChartAxisTickStyle TickSize=\"0\" />\n                                    </toolkit:NumericalAxis.MajorTickStyle>\n                                </toolkit:NumericalAxis>\n                            </toolkit:SfCartesianChart.YAxes>\n                            <toolkit:SfCartesianChart.Series>\n                                <toolkit:LineSeries ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" Label=\"Line 1\" \n                                                    XBindingPath=\"Date\" YBindingPath=\"Value\" ShowMarkers=\"True\" StrokeWidth=\"1\" >\n                                    <toolkit:LineSeries.MarkerSettings>\n                                        <toolkit:ChartMarkerSettings Type=\"Circle\" Width=\"10\" Height=\"10\" StrokeWidth=\"1\"/>\n                                    </toolkit:LineSeries.MarkerSettings>\n                                </toolkit:LineSeries>\n                                <toolkit:LineSeries ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" Label=\"Line 2\" \n                                                    XBindingPath=\"Date\" YBindingPath=\"Value\" ShowMarkers=\"True\" StrokeWidth=\"1\" >\n                                    <toolkit:LineSeries.MarkerSettings>\n                                        <toolkit:ChartMarkerSettings Type=\"Circle\" Width=\"10\" Height=\"10\" StrokeWidth=\"1\"/>\n                                    </toolkit:LineSeries.MarkerSettings>\n                                </toolkit:LineSeries>\n                                <toolkit:LineSeries ItemsSource=\"{x:Binding ThirdLineComponentData, Source={x:Reference root}}\" Label=\"Line 3\" \n                                                    XBindingPath=\"Date\" YBindingPath=\"Value\" ShowMarkers=\"True\" StrokeWidth=\"1\" >\n                                    <toolkit:LineSeries.MarkerSettings>\n                                        <toolkit:ChartMarkerSettings Type=\"Circle\" Width=\"10\" Height=\"10\" StrokeWidth=\"1\"/>\n                                    </toolkit:LineSeries.MarkerSettings>\n                                </toolkit:LineSeries>\n                            </toolkit:SfCartesianChart.Series>\n                        </toolkit:SfCartesianChart>\n                        \n                        <core:SourceCodeExpander Code=\"{x:Binding AxisCodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnAxisGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Trackball/SfCartesianChartCustomTrackball.xaml.cs",
    "content": "using Syncfusion.Maui.Toolkit.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartCustomTrackball : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartCustomTrackball()\n    {\n        InitializeComponent();\n        ItemInfo.IsVisible = false;\n        AxisInfo.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty FirstLineComponentDataProperty = BindableProperty.Create(\n        nameof(FirstLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartCustomTrackball),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SecondLineComponentDataProperty = BindableProperty.Create(\n        nameof(SecondLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartCustomTrackball),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty ThirdLineComponentDataProperty = BindableProperty.Create(\n        nameof(ThirdLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartCustomTrackball),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SeriesCodeDescriptionProperty = BindableProperty.Create(\n        nameof(SeriesCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartCustomTrackball),\n        default(string)\n    );\n\n    public static readonly BindableProperty AxisCodeDescriptionProperty = BindableProperty.Create(\n        nameof(AxisCodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartCustomTrackball),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> FirstLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(FirstLineComponentDataProperty);\n        set => SetValue(FirstLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> SecondLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(SecondLineComponentDataProperty);\n        set => SetValue(SecondLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> ThirdLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ThirdLineComponentDataProperty);\n        set => SetValue(ThirdLineComponentDataProperty, value);\n    }\n\n    public string SeriesCodeDescription\n    {\n        get => (string)GetValue(SeriesCodeDescriptionProperty);\n        set => SetValue(SeriesCodeDescriptionProperty, value);\n    }\n\n    public string AxisCodeDescription\n    {\n        get => (string)GetValue(AxisCodeDescriptionProperty);\n        set => SetValue(AxisCodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private async void OnItemGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ItemArrowImage.Rotation == 0)\n        {\n            await ItemArrowImage.RotateTo(90);\n            ItemInfo.IsVisible = true;\n        }\n        else\n        {\n            await ItemArrowImage.RotateTo(0);\n            ItemInfo.IsVisible = false;\n        }\n    }\n\n    private async void OnAxisGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (AxisArrowImage.Rotation == 0)\n        {\n            await AxisArrowImage.RotateTo(90);\n            AxisInfo.IsVisible = true;\n        }\n        else\n        {\n            await AxisArrowImage.RotateTo(0);\n            AxisInfo.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Trackball/SfCartesianChartTrackball.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartTrackball\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"TrackballBehaviorProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">ShowLabel</strong>, of type <strong style=\"color:blue\">bool</strong>, indicates the shows or hides the trackball label. The default value is <strong style=\"color:blue\">True</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">ShowMarkers</strong>, of type <strong style=\"color:blue\">bool</strong>, indicates the shows or hides trackball markers. The default value is <strong style=\"color:blue\">True</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">ShowLine</strong>, of type <strong style=\"color:blue\">bool</strong>, indicates the shows or hides the trackball line. The default value is <strong style=\"color:blue\">True</strong>. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"TrackballDisplayEnum\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FloatAllPoints</strong> – Displays labels for all the data points along the vertical line. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">NearestPoint</strong> – Displays a label for a single data point nearer to the touch point on the chart area. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">GroupAllPoints</strong> – Displays all the data point labels grouped at the top of the chart area. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"TrackballActivationMode\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">LongPress</strong> – Activates trackball only when performing the long press action. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">TouchMove</strong> – Activates trackball only when performing touch move action. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">None</strong> – Hides the visibility of trackball when setting activation mode to None. It will be activated when calling the Show method. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"TrackballLabelProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Background</strong>, of type <strong style=\"color:blue\">Brush</strong>, used to change the label background color. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Margin</strong>, of type <strong style=\"color:blue\">Thickness</strong>, used to change the margin of the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, used to change the text color. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">StrokeWidth</strong>, of type <strong style=\"color:blue\">double</strong>, used to change the stroke thickness of the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Stroke</strong>, of type <strong style=\"color:blue\">Brush</strong>, used to customize the border of the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">LabelFormat</strong>, of type <strong style=\"color:blue\">string</strong>, used to change the format of the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontFamily</strong>, of type <strong style=\"color:blue\">string</strong>, used to change the font family for the trackball label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontAttributes</strong>, of type <strong style=\"color:blue\">FontAttributes</strong>, used to change the font style for the trackball label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">double</strong>, used to change the font size for the trackball label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">CornerRadius</strong>, of type <strong style=\"color:blue\">CornerRadius</strong>, used to set the rounded corners for labels. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <Grid>\n                <VerticalStackLayout>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                           Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Category Axis\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <VerticalStackLayout x:Name=\"Info\" Grid.Column=\"0\" Margin=\"5\" Spacing=\"5\">\n                        <Label Text=\"To enable the trackball in the chart, create an instance of the ChartTrackballBehavior and set it to the TrackballBehavior property. The following properties are used to show or hide the line and tooltip.\" />\n                        <CollectionView x:Name=\"BehaviorPropertiesCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n\n                        <Label Text=\"The DisplayMode property specifies whether a label should be displayed for all data points along the trackball line or only the nearest data point label. The following choices are available for this property.\" />\n                        <CollectionView x:Name=\"DisplayEnumCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n\n                        <Label Text=\"The ActivationMode property is used to restrict the visibility of trackball based on the touch actions.\" />\n                        <CollectionView x:Name=\"ActivationModeEnumCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n\n                        <Label Text=\"The LabelStyle property provides to customize the trackball labels. These options are:\" />\n                        <CollectionView x:Name=\"LabelPropertiesCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n                <Grid.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                </Grid.GestureRecognizers>\n            </Grid>\n        </Border>\n\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"5\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\" Placement=\"Top\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Title>\n                        <Grid>\n                            <Label Text=\"Trackball Line Sample Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                            <HorizontalStackLayout Spacing=\"5\" HorizontalOptions=\"EndAndExpand\">\n                                <Label Text=\"Mode: \" VerticalTextAlignment=\"Center\" FontSize=\"14\"/>\n                                <Picker x:Name=\"LabelDisplayModePicker\" ItemsSource=\"{x:Binding LabelDisplayModes, Source={x:Reference root}}\" \n                                        VerticalOptions=\"Center\" SelectedIndex=\"0\" HeightRequest=\"30\"\n                                        SelectedIndexChanged=\"OnPickerSelectedChanged\" FontSize=\"14\">\n                                </Picker>\n                            </HorizontalStackLayout>\n                        </Grid>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.TrackballBehavior>\n                        <toolkit:ChartTrackballBehavior x:Name=\"Trackball\" ShowLine=\"True\" ShowMarkers=\"True\" DisplayMode=\"FloatAllPoints\" ActivationMode=\"TouchMove\">\n                            <toolkit:ChartTrackballBehavior.LabelStyle>\n                                <toolkit:ChartLabelStyle Background=\"#383838\" Stroke=\"#383838\" \n                                                         FontSize=\"15\" TextColor=\"#ff8900\"\n                                                         CornerRadius=\"4\" StrokeWidth=\"1\" />\n                            </toolkit:ChartTrackballBehavior.LabelStyle>\n                            <toolkit:ChartTrackballBehavior.LineStyle>\n                                <toolkit:ChartLineStyle Stroke=\"White\" StrokeWidth=\"1\"/>\n                            </toolkit:ChartTrackballBehavior.LineStyle>\n                            <toolkit:ChartTrackballBehavior.MarkerSettings>\n                                <toolkit:ChartMarkerSettings Height=\"10\" Width=\"10\" Fill=\"#ff8900\"/>\n                            </toolkit:ChartTrackballBehavior.MarkerSettings>\n                        </toolkit:ChartTrackballBehavior>\n                    </toolkit:SfCartesianChart.TrackballBehavior>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:DateTimeAxis IntervalType=\"Years\" Interval=\"1\" EdgeLabelsVisibilityMode=\"Visible\" ShowMajorGridLines=\"false\"\n                                              PlotOffsetStart=\"10\" PlotOffsetEnd=\"10\" AxisLineOffset=\"10\">\n                            <toolkit:DateTimeAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"10\"/>\n                            </toolkit:DateTimeAxis.MajorTickStyle>\n                        </toolkit:DateTimeAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis Maximum=\"120\" Minimum=\"0\" Interval=\"20\">\n                            <toolkit:NumericalAxis.AxisLineStyle>\n                                <toolkit:ChartLineStyle StrokeWidth=\"0\"/>\n                            </toolkit:NumericalAxis.AxisLineStyle>\n                            <toolkit:NumericalAxis.MajorTickStyle>\n                                <toolkit:ChartAxisTickStyle TickSize=\"0\" />\n                            </toolkit:NumericalAxis.MajorTickStyle>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:LineSeries ItemsSource=\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\" Label=\"Line 1\" \n                                            XBindingPath=\"Date\" YBindingPath=\"Value\" ShowMarkers=\"True\" StrokeWidth=\"1\">\n                            <toolkit:LineSeries.MarkerSettings>\n                                <toolkit:ChartMarkerSettings Type=\"Circle\" Width=\"10\" Height=\"10\" StrokeWidth=\"1\"/>\n                            </toolkit:LineSeries.MarkerSettings>\n                        </toolkit:LineSeries>\n                        <toolkit:LineSeries ItemsSource=\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\" Label=\"Line 2\" \n                                            XBindingPath=\"Date\" YBindingPath=\"Value\" ShowMarkers=\"True\" StrokeWidth=\"1\">\n                            <toolkit:LineSeries.MarkerSettings>\n                                <toolkit:ChartMarkerSettings Type=\"Circle\" Width=\"10\" Height=\"10\" StrokeWidth=\"1\"/>\n                            </toolkit:LineSeries.MarkerSettings>\n                        </toolkit:LineSeries>\n                        <toolkit:LineSeries ItemsSource=\"{x:Binding ThirdLineComponentData, Source={x:Reference root}}\" Label=\"Line 3\" \n                                            XBindingPath=\"Date\" YBindingPath=\"Value\" ShowMarkers=\"True\" StrokeWidth=\"1\">\n                            <toolkit:LineSeries.MarkerSettings>\n                                <toolkit:ChartMarkerSettings Type=\"Circle\" Width=\"10\" Height=\"10\" StrokeWidth=\"1\"/>\n                            </toolkit:LineSeries.MarkerSettings>\n                        </toolkit:LineSeries>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Trackball/SfCartesianChartTrackball.xaml.cs",
    "content": "using Syncfusion.Maui.Toolkit.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartTrackball : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartTrackball()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty FirstLineComponentDataProperty = BindableProperty.Create(\n        nameof(FirstLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartTrackball),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SecondLineComponentDataProperty = BindableProperty.Create(\n        nameof(SecondLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartTrackball),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty ThirdLineComponentDataProperty = BindableProperty.Create(\n        nameof(ThirdLineComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartTrackball),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty LabelDisplayModesProperty = BindableProperty.Create(\n        nameof(LabelDisplayModes),\n        typeof(ObservableCollection<string>),\n        typeof(SfCartesianChartTrackball),\n        default(ObservableCollection<string>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartTrackball),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> FirstLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(FirstLineComponentDataProperty);\n        set => SetValue(FirstLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> SecondLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(SecondLineComponentDataProperty);\n        set => SetValue(SecondLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> ThirdLineComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(ThirdLineComponentDataProperty);\n        set => SetValue(ThirdLineComponentDataProperty, value);\n    }\n\n    public ObservableCollection<string> LabelDisplayModes\n    {\n        get => (ObservableCollection<string>)GetValue(LabelDisplayModesProperty);\n        set => SetValue(LabelDisplayModesProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        LabelDisplayModePicker.SelectedIndex = 0;\n\n        var trackballBehaviorProperties = (string[])Resources[\"TrackballBehaviorProperties\"];\n        BehaviorPropertiesCollectionView.ItemsSource = trackballBehaviorProperties;\n\n        var trackballDisplayEnum = (string[])Resources[\"TrackballDisplayEnum\"];\n        DisplayEnumCollectionView.ItemsSource = trackballDisplayEnum;\n\n        var trackballActivationMode = (string[])Resources[\"TrackballActivationMode\"];\n        ActivationModeEnumCollectionView.ItemsSource = trackballActivationMode;\n\n        var trackballLabelProperties = (string[])Resources[\"TrackballLabelProperties\"];\n        LabelPropertiesCollectionView.ItemsSource = trackballLabelProperties;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n\n    private void OnPickerSelectedChanged(object sender, EventArgs e)\n    {\n        var picker = (Picker)sender;\n        int selectedIndex = picker.SelectedIndex;\n        switch (selectedIndex)\n        {\n            case (0): Trackball.DisplayMode = LabelDisplayMode.FloatAllPoints;\n                break;\n            case (1): Trackball.DisplayMode = LabelDisplayMode.NearestPoint;\n                break;\n            case (2): Trackball.DisplayMode = LabelDisplayMode.GroupAllPoints;\n                break;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Zooming/SfCartesianChartSelectionZooming.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartSelectionZooming\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <ContentView.Resources>\n        <x:Array x:Key=\"SelectionRectangleProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">SelectionRectStrokeWidth</strong> – Get or set the stroke width for selection rectangle. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">SelectionRectStroke</strong> - Get or set the stroke color for selection rectangle. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">SelectionRectStrokeDashArray</strong> - Get or set the stroke dashes for selection rectangle. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">SelectionRectFill</strong> - Get or set the fill color for the selection rectangle. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"TrackballAxisLabelProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">CategoryAxis</strong> is an indexed based axis that plots values based on the index of the data point collection. The points are equally spaced here. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">LabelPlacement</strong> property in <strong style=\"color:blue\">CategoryAxis</strong> is used to placed the axis labels based on ticks and between ticks. The default value of <strong style=\"color:blue\">LabelPlacement</strong> is <strong style=\"color:blue\">OnTicks</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ By default, the <strong style=\"color:blue\">CategoryAxis</strong> axis labels are display with fixed interval 1. It can customized by using the <strong style=\"color:blue\">Interval</strong> property of axis. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ In Cartesian Charts, the <strong style=\"color:blue\">ArrangeByIndex</strong> property is used to determine how the items in a category axis are arranged. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ If <strong style=\"color:blue\">ArrangeByIndex</strong> is set to true, then the items in the category axis will be arranged according to their index values. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ If <strong style=\"color:blue\">ArrangeByIndex</strong> is set to false, then the items in the category axis will be arranged according to their values. By default, <strong style=\"color:blue\">ArrangeByIndex</strong> is true. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">CategoryAxis</strong> is an indexed based axis that plots values based on the index of the data point collection. The points are equally spaced here. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">LabelPlacement</strong> property in <strong style=\"color:blue\">CategoryAxis</strong> is used to placed the axis labels based on ticks and between ticks. The default value of <strong style=\"color:blue\">LabelPlacement</strong> is <strong style=\"color:blue\">OnTicks</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ By default, the <strong style=\"color:blue\">CategoryAxis</strong> axis labels are display with fixed interval 1. It can customized by using the <strong style=\"color:blue\">Interval</strong> property of axis. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ In Cartesian Charts, the <strong style=\"color:blue\">ArrangeByIndex</strong> property is used to determine how the items in a category axis are arranged. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ If <strong style=\"color:blue\">ArrangeByIndex</strong> is set to true, then the items in the category axis will be arranged according to their index values. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ If <strong style=\"color:blue\">ArrangeByIndex</strong> is set to false, then the items in the category axis will be arranged according to their values. By default, <strong style=\"color:blue\">ArrangeByIndex</strong> is true. ]]>\n            </x:String>\n        </x:Array>\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout>\n                <Grid>\n                    <HorizontalStackLayout Spacing=\"10\">\n                        <Image x:Name=\"ArrowImage\" Grid.Column=\"1\" HeightRequest=\"20\" WidthRequest=\"20\" \n                               Source=\"{x:StaticResource ArrowCircleRight24Regular}\" />\n                        <Label Text=\"Selection Zooming\" VerticalTextAlignment=\"Center\" FontSize=\"16\"/>\n                    </HorizontalStackLayout>\n                    <Grid.GestureRecognizers>\n                        <TapGestureRecognizer Tapped=\"OnGridTapped\" />\n                    </Grid.GestureRecognizers>\n                </Grid>\n                <Grid ColumnDefinitions=\"0.4*, 0.6*\" x:Name=\"Info\" Margin=\"5\">\n                    <VerticalStackLayout Grid.Column=\"0\" Spacing=\"5\">\n                        <Label Text=\"Selection rectangle can be customized by using the following properties:\"/>\n                        <CollectionView x:Name=\"SelectionRectangleCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                        <Label Text=\"The selection zooming trackball axis label is enabled by setting the ShowTrackballLabel property to true. The default value of the ShowTrackballLabel is false. The TrackballLabelStyle property provides to customize the trackball axis labels. These options are:\"/>\n                        <CollectionView x:Name=\"TrackballAxisCollectionView\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\"/>\n                    </VerticalStackLayout>\n\n                    <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n                        <VerticalStackLayout Spacing=\"10\">\n                            <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                                Margin=\"0, 0, 20, 0\">\n                                <toolkit:SfCartesianChart.Legend>\n                                    <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                                </toolkit:SfCartesianChart.Legend>\n                                <toolkit:SfCartesianChart.Title>\n                                    <Label Text=\"Selection Zooming Scatter Sample Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                                </toolkit:SfCartesianChart.Title>\n                                <toolkit:SfCartesianChart.ZoomPanBehavior>\n                                    <toolkit:ChartZoomPanBehavior EnableSelectionZooming=\"True\" EnablePinchZooming=\"False\"/>\n                                </toolkit:SfCartesianChart.ZoomPanBehavior>\n                                <toolkit:SfCartesianChart.XAxes>\n                                    <toolkit:NumericalAxis ShowMajorGridLines=\"False\" EdgeLabelsDrawingMode=\"Shift\" Minimum=\"100\" Maximum=\"220\" Interval=\"20\">\n                                        <toolkit:NumericalAxis.Title>\n                                            <toolkit:ChartAxisTitle Margin=\"5,10,5,2\" Text=\"Centimeter\"/>\n                                        </toolkit:NumericalAxis.Title>\n                                    </toolkit:NumericalAxis>\n                                </toolkit:SfCartesianChart.XAxes>\n                                <toolkit:SfCartesianChart.YAxes>\n                                    <toolkit:NumericalAxis ShowMajorGridLines=\"False\" Minimum=\"50\" Maximum=\"80\" Interval=\"5\">\n                                        <toolkit:NumericalAxis.Title>\n                                            <toolkit:ChartAxisTitle Text=\"Kilogram\"/>\n                                        </toolkit:NumericalAxis.Title>\n                                    </toolkit:NumericalAxis>\n                                </toolkit:SfCartesianChart.YAxes>\n                                <toolkit:SfCartesianChart.Series>\n                                    <toolkit:ScatterSeries Label=\"Scatter 1\" EnableTooltip=\"True\" EnableAnimation=\"True\" \n                                                    Opacity=\"0.6\" PointWidth=\"8\" PointHeight=\"8\" \n                                                    ItemsSource=\"{Binding FirstScatterComponentData, Source={x:Reference root}}\" \n                                                    XBindingPath=\"Value\" YBindingPath=\"Size\"/>\n                                    <toolkit:ScatterSeries Label=\"Scatter 2\" EnableTooltip=\"True\" EnableAnimation=\"True\" \n                                                    Opacity=\"0.6\" PointWidth=\"8\" PointHeight=\"8\" \n                                                    ItemsSource=\"{Binding SecondScatterComponentData, Source={x:Reference root}}\" \n                                                    XBindingPath=\"Value\" YBindingPath=\"Size\"/>\n                                </toolkit:SfCartesianChart.Series>\n                            </toolkit:SfCartesianChart>\n                            <Label Text=\"Double tap then hold and drag out, to get back to default please double tap\"/>\n                            <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n                        </VerticalStackLayout>\n                    </Border>\n                </Grid>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Zooming/SfCartesianChartSelectionZooming.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartSelectionZooming : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartSelectionZooming()\n    {\n        InitializeComponent();\n        Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty FirstScatterComponentDataProperty = BindableProperty.Create(\n        nameof(FirstScatterComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartSelectionZooming),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SecondScatterComponentDataProperty = BindableProperty.Create(\n        nameof(SecondScatterComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartSelectionZooming),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartSelectionZooming),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> FirstScatterComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(FirstScatterComponentDataProperty);\n        set => SetValue(FirstScatterComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> SecondScatterComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(SecondScatterComponentDataProperty);\n        set => SetValue(SecondScatterComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var selectionRectangleProperties = (string[])Resources[\"SelectionRectangleProperties\"];\n        SelectionRectangleCollectionView.ItemsSource = selectionRectangleProperties;\n\n        var trackballAxisLabelProperties = (string[])Resources[\"TrackballAxisLabelProperties\"];\n        TrackballAxisCollectionView.ItemsSource = trackballAxisLabelProperties;\n    }\n\n    private async void OnGridTapped(object sender, EventArgs e)\n    {\n        // Rotate the arrow image based on the expanded state\n        if (ArrowImage.Rotation == 0)\n        {\n            await ArrowImage.RotateTo(90);\n            Info.IsVisible = true;\n        }\n        else\n        {\n            await ArrowImage.RotateTo(0);\n            Info.IsVisible = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Zooming/SfCartesianChartZooming.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView \n    x:Class=\"MAUIsland.Core.SfCartesianChartZooming\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"OnComponentLoaded\">\n\n    <VerticalStackLayout Spacing=\"5\">\n        <Border StrokeShape=\"RoundRectangle 4\" Margin=\"5\" Padding=\"10\">\n            <VerticalStackLayout Spacing=\"10\">\n                <toolkit:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\"\n                                          Margin=\"0, 0, 20, 0\">\n                    <toolkit:SfCartesianChart.Legend>\n                        <toolkit:ChartLegend ToggleSeriesVisibility=\"True\"/>\n                    </toolkit:SfCartesianChart.Legend>\n                    <toolkit:SfCartesianChart.Title>\n                        <Grid>\n                            <Label Text=\"Zooming Scatter Sample Chart\" Margin=\"0\" HorizontalOptions=\"Fill\" HorizontalTextAlignment=\"Center\" VerticalOptions=\"Center\" FontSize=\"16\" />\n                            <HorizontalStackLayout Spacing=\"5\" HorizontalOptions=\"EndAndExpand\">\n                                <Label Text=\"Mode: \" VerticalTextAlignment=\"Center\" FontSize=\"14\"/>\n                                <Picker x:Name=\"ZoomModePicker\"\n                                        VerticalOptions=\"Center\" HeightRequest=\"30\"\n                                        SelectedIndexChanged=\"OnZoomModeChanged\">\n                                </Picker>\n                            </HorizontalStackLayout>\n                        </Grid>\n                    </toolkit:SfCartesianChart.Title>\n                    <toolkit:SfCartesianChart.ZoomPanBehavior>\n                        <toolkit:ChartZoomPanBehavior x:Name=\"Zooming\" ZoomMode=\"XY\" EnablePanning=\"True\" MaximumZoomLevel=\"2\" \n                                                      EnablePinchZooming=\"True\" EnableDirectionalZooming=\"True\"/>\n                    </toolkit:SfCartesianChart.ZoomPanBehavior>\n                    <toolkit:SfCartesianChart.XAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\" EdgeLabelsDrawingMode=\"Shift\" Minimum=\"100\" Maximum=\"220\" Interval=\"20\">\n                            <toolkit:NumericalAxis.Title>\n                                <toolkit:ChartAxisTitle Margin=\"5,10,5,2\" Text=\"Centimeter\"/>\n                            </toolkit:NumericalAxis.Title>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.XAxes>\n                    <toolkit:SfCartesianChart.YAxes>\n                        <toolkit:NumericalAxis ShowMajorGridLines=\"False\" Minimum=\"50\" Maximum=\"80\" Interval=\"5\">\n                            <toolkit:NumericalAxis.Title>\n                                <toolkit:ChartAxisTitle Text=\"Kilogram\"/>\n                            </toolkit:NumericalAxis.Title>\n                        </toolkit:NumericalAxis>\n                    </toolkit:SfCartesianChart.YAxes>\n                    <toolkit:SfCartesianChart.Series>\n                        <toolkit:ScatterSeries Label=\"Scatter 1\" EnableTooltip=\"True\" EnableAnimation=\"True\" Opacity=\"0.6\" PointWidth=\"8\" PointHeight=\"8\" \n                                               ItemsSource=\"{Binding FirstScatterComponentData, Source={x:Reference root}}\" XBindingPath=\"Value\" YBindingPath=\"Size\"/>\n                        <toolkit:ScatterSeries Label=\"Scatter 2\" EnableTooltip=\"True\" EnableAnimation=\"True\" Opacity=\"0.6\" PointWidth=\"8\" PointHeight=\"8\" \n                                               ItemsSource=\"{Binding SecondScatterComponentData, Source={x:Reference root}}\" XBindingPath=\"Value\" YBindingPath=\"Size\"/>\n                    </toolkit:SfCartesianChart.Series>\n                </toolkit:SfCartesianChart>\n\n                <core:SourceCodeExpander Code=\"{x:Binding CodeDescription, Source={x:Reference root}}\"  CodeType=\"Xaml\"/>\n            </VerticalStackLayout>\n        </Border>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/ContentView/Zooming/SfCartesianChartZooming.xaml.cs",
    "content": "using Syncfusion.Maui.Toolkit.Charts;\n\nnamespace MAUIsland.Core;\n\npublic partial class SfCartesianChartZooming : ContentView\n{\n    #region [ CTor ]\n    public SfCartesianChartZooming()\n    {\n        InitializeComponent();\n        //Info.IsVisible = false;\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty FirstScatterComponentDataProperty = BindableProperty.Create(\n        nameof(FirstScatterComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartZooming),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty SecondScatterComponentDataProperty = BindableProperty.Create(\n        nameof(SecondScatterComponentData),\n        typeof(ObservableCollection<SfCartesianChartModel>),\n        typeof(SfCartesianChartZooming),\n        default(ObservableCollection<SfCartesianChartModel>)\n    );\n\n    public static readonly BindableProperty CodeDescriptionProperty = BindableProperty.Create(\n        nameof(CodeDescription),\n        typeof(string),\n        typeof(SfCartesianChartZooming),\n        default(string)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<SfCartesianChartModel> FirstScatterComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(FirstScatterComponentDataProperty);\n        set => SetValue(FirstScatterComponentDataProperty, value);\n    }\n\n    public ObservableCollection<SfCartesianChartModel> SecondScatterComponentData\n    {\n        get => (ObservableCollection<SfCartesianChartModel>)GetValue(SecondScatterComponentDataProperty);\n        set => SetValue(SecondScatterComponentDataProperty, value);\n    }\n\n    public string CodeDescription\n    {\n        get => (string)GetValue(CodeDescriptionProperty);\n        set => SetValue(CodeDescriptionProperty, value);\n    }\n    #endregion\n\n    #region [ Events ]\n    private void OnComponentLoaded(object sender, EventArgs e)\n    {\n        var zoomMode = Enum.GetNames(typeof(ZoomMode)).ToList();\n        ZoomModePicker.ItemsSource = zoomMode;\n        ZoomModePicker.SelectedIndex = 2;   \n    }\n\n    private void OnZoomModeChanged(object sender, EventArgs e)\n    {\n        var picker = (Picker)sender;\n        int selectedIndex = picker.SelectedIndex;\n        switch (selectedIndex)\n        {\n            case 0: Zooming.ZoomMode = ZoomMode.X;\n                break;\n            case 1: Zooming.ZoomMode = ZoomMode.Y;\n                break;\n            case 2: Zooming.ZoomMode = ZoomMode.XY;\n                break;\n\n        };\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/Models/SfCartesianChartModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class SfCartesianChartModel : BaseModel\n{\n    [ObservableProperty]\n    int? number;\n\n    [ObservableProperty]\n    string? name;\n\n    [ObservableProperty]\n    string? year;\n\n    [ObservableProperty]\n    double exp;\n\n    [ObservableProperty]\n    double high;\n\n    [ObservableProperty]\n    double low;\n\n    [ObservableProperty]\n    double value;\n\n    [ObservableProperty]\n    double size;\n\n    [ObservableProperty]\n    DateTime date;\n\n    [ObservableProperty]\n    List<double>? values;\n\n    [ObservableProperty]\n    bool isSummary;\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/SfCartesianChartControlInfo.cs",
    "content": "using Syncfusion.Maui.Charts;\n\nnamespace MAUIsland.Core;\nclass SfCartesianChartControlInfo : IGalleryCardInfo\n{\n    public string ControlName => nameof(SfCartesianChart);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_data_histogram_24_regular\n    };\n    public string ControlDetail => \"The .NET MAUI chart provides a perfect way to visualize data with a high level of user involvement that focuses on development, productivity, and simplicity of use. Chart also provides a wide variety of charting features that can be used to visualize large quantities of data, as well as flexibility in data binding and user customization.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/Syncfusion/Controls/{ControlName}\";\n    public string DocumentUrl => \"https://help.syncfusion.com/maui/cartesian-charts/overview\";\n    public string GroupName => ControlGroupInfo.SyncfusionControls;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/SfCartesianChartPageViewModel.cs",
    "content": "using Syncfusion.Maui.Data;\nusing Syncfusion.Maui.Toolkit.Charts;\nusing System.Diagnostics.Metrics;\n\nnamespace MAUIsland.Core;\npublic partial class SfCartesianChartPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public SfCartesianChartPageViewModel(IAppNavigator appNavigator) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> crossingAxis;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> annotation;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> area;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> rangeArea;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> stackingArea;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> bar;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> rangeBar;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> stackingBar;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> column;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> rangeColumn;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> stackingColumn;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> firstLine;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> secondLine;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> thirdLine;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> fastLine;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> firstScatter;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> secondScatter;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> bubble;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> box;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> histogram;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> financial;\n\n    [ObservableProperty]\n    ObservableCollection<SfCartesianChartModel> waterfall;\n\n    [ObservableProperty]\n    ObservableCollection<string> chartOptions;\n\n    [ObservableProperty]\n    ObservableCollection<string> areaChartOptions;\n\n    [ObservableProperty]\n    ObservableCollection<string> barChartOptions;\n\n    [ObservableProperty]\n    ObservableCollection<string> columnChartOptions;\n\n    [ObservableProperty]\n    ObservableCollection<string> lineChartOptions;\n\n    [ObservableProperty]\n    ObservableCollection<string> scatterChartOptions;\n\n    [ObservableProperty]\n    ObservableCollection<string> histogramChartOptions;\n\n    [ObservableProperty]\n    ObservableCollection<string> boxPlotChartOptions;\n\n    [ObservableProperty]\n    ObservableCollection<string> bubbleChartOptions;\n\n    [ObservableProperty]\n    ObservableCollection<string> financialChartOptions;\n\n    [ObservableProperty]\n    ObservableCollection<string> waterfallChartOptions;\n\n    [ObservableProperty]\n    ObservableCollection<string> errorBarTypes;\n\n    [ObservableProperty]\n    ObservableCollection<string> errorBarModes;\n\n    [ObservableProperty]\n    ObservableCollection<string> errorBarDirections;\n\n    [ObservableProperty]\n    ObservableCollection<string> trackballDisplayMode;\n\n    [ObservableProperty]\n    string chartsSelectedOption;\n\n    [ObservableProperty]\n    string areaSelectedOption;\n\n    [ObservableProperty]\n    string columnBarSelectedOption;\n\n    [ObservableProperty]\n    string lineSelectedOption;\n\n    [ObservableProperty]\n    string scatterSelectedOption;\n\n    [ObservableProperty]\n    string histogramSelectedOption;\n\n    [ObservableProperty]\n    string boxPlotSelectedOption;\n\n    [ObservableProperty]\n    string bubbleSelectedOption;\n\n    [ObservableProperty]\n    string financialSelectedOption;\n\n    [ObservableProperty]\n    string waterfallSelectedOption;\n\n    [ObservableProperty]\n    ControlGroupInfo controlGroup;\n\n    [ObservableProperty]\n    List<Brush> coldPalletBrushes;\n\n    [ObservableProperty]\n    List<Brush> rainbowPalletBrushes;\n\n    [ObservableProperty]\n    bool isRefreshing;\n\n    #region [ String Properties ]\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.syncfusion.com/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string cartesianCategoryAxisXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\" \\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Category Axis Column Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis IsVisible=\\\"False\\\" ShowMajorGridLines=\\\"False\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries ShowDataLabels=\\\"True\\\" EnableAnimation=\\\"True\\\" \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding Column}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\">\\r\\n\" +\n        \"            <toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings LabelPlacement=\\\"Inner\\\">\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"            </toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"        </toolkit:ColumnSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianNumericalAxisXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Numerical Axis Column Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Center\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"CenterAndExpand\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Interval=\\\"1\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"True\\\" Minimum=\\\"0\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries ShowDataLabels=\\\"True\\\" EnableAnimation=\\\"True\\\" Label=\\\"Data 1\\\" Spacing=\\\"0.075\\\" \\r\\n\" +\n        \"                                ItemsSource=\\\"{x:Binding ComponentData, Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                                XBindingPath=\\\"Number\\\" YBindingPath=\\\"Exp\\\">\\r\\n\" +\n        \"            <toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"                    <toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                        <toolkit:ChartDataLabelStyle Margin=\\\"0\\\" FontSize=\\\"10\\\"/>\\r\\n\" +\n        \"                    </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"            </toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"        </toolkit:ColumnSeries>\\r\\n\" +\n        \"        <toolkit:ColumnSeries ShowDataLabels=\\\"True\\\" EnableAnimation=\\\"True\\\" Label=\\\"Data 2\\\" Spacing=\\\"0.075\\\" \\r\\n\" +\n        \"                                ItemsSource=\\\"{x:Binding ComponentData, Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                                XBindingPath=\\\"Number\\\" YBindingPath=\\\"Exp\\\">\\r\\n\" +\n        \"            <toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"                    <toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                        <toolkit:ChartDataLabelStyle Margin=\\\"0\\\" FontSize=\\\"10\\\"/>\\r\\n\" +\n        \"                    </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"            </toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"        </toolkit:ColumnSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianDateTimeAxisXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"DateTime Axis Line Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:DateTimeAxis EdgeLabelsDrawingMode=\\\"Shift\\\" ZoomFactor=\\\"0.7\\\" ZoomPosition=\\\"0.4\\\" >\\r\\n\" +\n        \"            <toolkit:DateTimeAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"DateTime Axis\\\"/>\\r\\n\" +\n        \"            </toolkit:DateTimeAxis.Title>\\r\\n\" +\n        \"        </toolkit:DateTimeAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Numerical Axis\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"        <toolkit:ChartZoomPanBehavior x:Name=\\\"zooming1\\\" EnablePinchZooming=\\\"False\\\" EnableDoubleTap=\\\"False\\\" EnablePanning=\\\"False\\\" ZoomMode=\\\"X\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:FastLineSeries EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" \\r\\n\" +\n        \"                                ItemsSource=\\\"{x:Binding FastLine}\\\" \\r\\n\" +\n        \"                                XBindingPath=\\\"Date\\\" YBindingPath=\\\"Value\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianMultipleAxesXamlCode =\n        \"<toolkit:SfCartesianChart>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"False\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\"/>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Name=\\\"ColumnYAxis2\\\" CrossesAt=\\\"{Static x:Double.MaxValue}\\\" ShowMajorGridLines=\\\"False\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:ColumnSeries ItemsSource=\\\"{x:Binding Column}\\\" \\r\\n\" +\n        \"                          XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" YAxisName=\\\"ColumnYAxis2\\\"/>\\r\\n\" +\n        \"    <toolkit:SplineSeries ItemsSource=\\\"{x:Binding Column}\\\" \\r\\n\" +\n        \"                          XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\"/>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianCrossingAxisXamlCode =\n        \"<toolkit:SfCartesianChart x:Name=\\\"axisCrossingChart\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"        <toolkit:ChartZoomPanBehavior/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis CrossesAt=\\\"0\\\" Minimum=\\\"-10\\\" Maximum=\\\"10\\\" \\r\\n\" +\n        \"                               EdgeLabelsDrawingMode=\\\"Shift\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis CrossesAt=\\\"0\\\" Minimum=\\\"-10\\\" Maximum=\\\"10\\\"  \\r\\n\" +\n        \"                               EdgeLabelsDrawingMode=\\\"Shift\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:SplineSeries ItemsSource=\\\"{x:Binding CrossingAxis}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Value\\\" YBindingPath=\\\"Size\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianAnnotationXamlCode =\n        \"<toolkit:SfCartesianChart VerticalOptions=\\\"FillAndExpand\\\" Margin=\\\"0,0,5,0\\\" x:Name=\\\"Chart\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Annotations Demo\\\" Margin=\\\"0,2,0,10\\\"\\r\\n\" +\n        \"               HorizontalOptions=\\\"Center\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"CenterAndExpand\\\"\\r\\n\" +\n        \"               FontSize=\\\"16\\\" LineBreakMode=\\\"WordWrap\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"0\\\" Maximum=\\\"4\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"20\\\" Maximum=\\\"70\\\" Interval=\\\"10\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Annotations>\\r\\n\" +\n        \"        <toolkit:VerticalLineAnnotation X1=\\\"2\\\" LineCap=\\\"Arrow\\\" Text=\\\"Vertical Line\\\" Stroke=\\\"Orange\\\">\\r\\n\" +\n        \"            <toolkit:VerticalLineAnnotation.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAnnotationLabelStyle VerticalTextAlignment=\\\"Start\\\" HorizontalTextAlignment=\\\"Start\\\" FontAttributes=\\\"Bold\\\" FontSize=\\\"13\\\" TextColor=\\\"Orange\\\"/>\\r\\n\" +\n        \"            </toolkit:VerticalLineAnnotation.LabelStyle>\\r\\n\" +\n        \"        </toolkit:VerticalLineAnnotation>\\r\\n\\r\\n\" +\n        \"        <toolkit:HorizontalLineAnnotation Y1=\\\"45\\\" LineCap=\\\"Arrow\\\" Text=\\\"Horizontal Line\\\" Stroke=\\\"Orange\\\">\\r\\n\" +\n        \"            <toolkit:HorizontalLineAnnotation.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAnnotationLabelStyle VerticalTextAlignment=\\\"Start\\\" HorizontalTextAlignment=\\\"End\\\" FontAttributes=\\\"Bold\\\" FontSize=\\\"13\\\" TextColor=\\\"Orange\\\"/>\\r\\n\" +\n        \"            </toolkit:HorizontalLineAnnotation.LabelStyle>\\r\\n\" +\n        \"        </toolkit:HorizontalLineAnnotation>\\r\\n\\r\\n\" +\n        \"        <toolkit:LineAnnotation X1=\\\"2.5\\\" X2=\\\"3.5\\\" Y1=\\\"52\\\" Y2=\\\"63\\\" LineCap=\\\"Arrow\\\" Text=\\\"Random Line\\\" Stroke=\\\"Orange\\\">\\r\\n\" +\n        \"            <toolkit:LineAnnotation.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAnnotationLabelStyle FontAttributes=\\\"Bold\\\" FontSize=\\\"13\\\" TextColor=\\\"Orange\\\"/>\\r\\n\" +\n        \"            </toolkit:LineAnnotation.LabelStyle>\\r\\n\" +\n        \"        </toolkit:LineAnnotation>\\r\\n\\r\\n\" +\n        \"        <toolkit:RectangleAnnotation X1=\\\"0.5\\\" X2=\\\"1.5\\\" Y1=\\\"25\\\" Y2=\\\"35\\\" Text=\\\"Rectangle\\\" Stroke=\\\"Orange\\\">\\r\\n\" +\n        \"            <toolkit:RectangleAnnotation.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAnnotationLabelStyle FontAttributes=\\\"Bold\\\" FontSize=\\\"13\\\" TextColor=\\\"Orange\\\"/>\\r\\n\" +\n        \"            </toolkit:RectangleAnnotation.LabelStyle>\\r\\n\" +\n        \"        </toolkit:RectangleAnnotation>\\r\\n\\r\\n\" +\n        \"        <toolkit:EllipseAnnotation X1=\\\"2.5\\\" X2=\\\"3.5\\\" Y1=\\\"25\\\" Y2=\\\"35\\\" Text=\\\"Ellipse\\\" HorizontalAlignment=\\\"End\\\" VerticalAlignment=\\\"End\\\" Stroke=\\\"Orange\\\">\\r\\n\" +\n        \"            <toolkit:EllipseAnnotation.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAnnotationLabelStyle FontAttributes=\\\"Bold\\\" FontSize=\\\"13\\\" TextColor=\\\"Orange\\\"/>\\r\\n\" +\n        \"            </toolkit:EllipseAnnotation.LabelStyle>\\r\\n\" +\n        \"        </toolkit:EllipseAnnotation>\\r\\n\\r\\n\" +\n        \"        <toolkit:TextAnnotation X1=\\\"1\\\" Y1=\\\"57.5\\\" Text=\\\"Text Annotation\\\">\\r\\n\" +\n        \"            <toolkit:TextAnnotation.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAnnotationLabelStyle FontAttributes=\\\"Bold\\\" FontSize=\\\"13\\\" TextColor=\\\"Orange\\\"/>\\r\\n\" +\n        \"            </toolkit:TextAnnotation.LabelStyle>\\r\\n\" +\n        \"        </toolkit:TextAnnotation>\\r\\n\\r\\n\" +\n        \"        <toolkit:ViewAnnotation X1=\\\"2.15\\\" Y1=\\\"35\\\">\\r\\n\" +\n        \"            <toolkit:ViewAnnotation.View>\\r\\n\" +\n        \"                <Image>\\r\\n\" +\n        \"                    <Image.Source>\\r\\n\" +\n        \"                        <FontImageSource Glyph=\\\"{x:Static core:FluentUIIcon.Ic_fluent_data_histogram_24_regular}\\\" \\r\\n\" +\n        \"                                            FontFamily=\\\"{x:Static core:FontNames.FluentSystemIconsRegular}\\\" \\r\\n\" +\n        \"                                            Size =\\\"50\\\"\\r\\n\" +\n        \"                                            Color=\\\"Orange\\\"/>\\r\\n\" +\n        \"                    </Image.Source>\\r\\n\" +\n        \"                </Image>\\r\\n\" +\n        \"            </toolkit:ViewAnnotation.View>\\r\\n\" +\n        \"        </toolkit:ViewAnnotation>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Annotations>\\r\\n\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianAreaChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\" \\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Value Comparison\\\" FontSize=\\\"16\\\" \\r\\n\" +\n        \"               HorizontalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Fill\\\"  VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis EdgeLabelsDrawingMode=\\\"Shift\\\" Interval=\\\"1\\\" ShowMajorGridLines=\\\"false\\\">\\r\\n\" +\n        \"            <toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"5\\\"/>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"0\\\" Maximum=\\\"6\\\" Interval=\\\"1\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Value in Millions\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'M\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:AreaSeries Label=\\\"Product A\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" \\r\\n\" +\n        \"                            StrokeWidth=\\\"1\\\" LegendIcon=\\\"SeriesType\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{Binding Area}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"High\\\" />\\r\\n\" +\n        \"        <toolkit:AreaSeries Label=\\\"Product B\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" \\r\\n\" +\n        \"                            StrokeWidth=\\\"1\\\" LegendIcon=\\\"SeriesType\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{Binding Area}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Low\\\" />\\r\\n\" +\n        \"        <toolkit:AreaSeries Label=\\\"Product C\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" \\r\\n\" +\n        \"                            StrokeWidth=\\\"1\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{Binding Area}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" />\\r\\n\" +\n        \"        <toolkit:AreaSeries Label=\\\"Product D\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" \\r\\n\" +\n        \"                            StrokeWidth=\\\"1\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{Binding Area}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Size\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianSplineAreaChartXamlCode =\n\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\" \\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Value Comparison\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis EdgeLabelsDrawingMode=\\\"Shift\\\" Interval=\\\"1\\\" ShowMajorGridLines=\\\"false\\\">\\r\\n\" +\n        \"           <toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"5\\\"/>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"0\\\" Maximum=\\\"6\\\" Interval=\\\"1\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Value in Millions\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'M\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:SplineAreaSeries Label=\\\"Product A\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                                  ItemsSource=\\\"{Binding Area}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"High\\\"\\r\\n\" +\n        \"                                  LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"        <toolkit:SplineAreaSeries Label=\\\"Product B\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                                  ItemsSource=\\\"{Binding Area}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Low\\\"\\r\\n\" +\n        \"                                  LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"        <toolkit:SplineAreaSeries Label=\\\"Product C\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                                  ItemsSource=\\\"{Binding Area}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"\\r\\n\" +\n        \"                                  LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"        <toolkit:SplineAreaSeries Label=\\\"Product D\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                                  ItemsSource=\\\"{Binding Area}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Size\\\"\\r\\n\" +\n        \"                                  LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianStepAreaChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\" \\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Step Area Chart\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis EdgeLabelsDrawingMode=\\\"Shift\\\" Interval=\\\"1\\\" ShowMajorGridLines=\\\"false\\\">\\r\\n\" +\n        \"            <toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"5\\\"/>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"0\\\" Maximum=\\\"6\\\" Interval=\\\"1\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Value in Millions\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'M\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:StepAreaSeries Label=\\\"Product A\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                                ItemsSource=\\\"{Binding Area}\\\" \\r\\n\" +\n        \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"High\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"        <toolkit:StepAreaSeries Label=\\\"Product B\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                                ItemsSource=\\\"{Binding Area}\\\" \\r\\n\" +\n        \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Low\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"        <toolkit:StepAreaSeries Label=\\\"Product C\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                                ItemsSource=\\\"{Binding Area}\\\" \\r\\n\" +\n        \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"        <toolkit:StepAreaSeries Label=\\\"Product D\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                                ItemsSource=\\\"{Binding Area}\\\" \\r\\n\" +\n        \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Size\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianRangeAreaChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\" \\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"        <toolkit:ChartZoomPanBehavior EnablePinchZooming=\\\"False\\\" EnableDoubleTap=\\\"False\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Range Area Chart\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:DateTimeAxis Interval=\\\"5\\\" ShowMajorGridLines=\\\"false\\\" AutoScrollingMode=\\\"Start\\\" AutoScrollingDeltaType=\\\"Days\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes >\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" Minimum=\\\"0\\\" Maximum=\\\"50\\\" Interval=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat= \\\"0.#&#186;C\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:RangeAreaSeries ItemsSource=\\\"{Binding RangeArea}\\\" \\r\\n\" +\n        \"                                 XBindingPath=\\\"Date\\\" High=\\\"High\\\" Low=\\\"Low\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                 EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" StrokeWidth=\\\"1\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\" + \"\";\n\n    [ObservableProperty]\n    string cartesianSplineRangeAreaChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\" \\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"        <toolkit:ChartZoomPanBehavior EnablePinchZooming=\\\"False\\\" EnableDoubleTap=\\\"False\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Spline Range Area Chart\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:DateTimeAxis Interval=\\\"5\\\" ShowMajorGridLines=\\\"false\\\" AutoScrollingMode=\\\"Start\\\" AutoScrollingDeltaType=\\\"Days\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes >\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" Minimum=\\\"0\\\" Maximum=\\\"50\\\" Interval=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat= \\\"0.#&#186;c\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SplineRangeAreaSeries ItemsSource=\\\"{x:Binding RangeArea}\\\" \\r\\n\" +\n        \"                                   XBindingPath=\\\"Date\\\" High=\\\"High\\\" Low=\\\"Low\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                   EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" ShowTrackballLabel=\\\"True\\\" StrokeWidth=\\\"1\\\" />\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianStackingAreaChartXamlCode = \n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Stacking Area Chart\\\" LineBreakMode=\\\"WordWrap\\\" Margin=\\\"2,0,2,0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis IsVisible=\\\"True\\\" ShowMajorGridLines=\\\"False\\\" Interval=\\\"2\\\" EdgeLabelsDrawingMode=\\\"Shift\\\" PlotOffsetEnd=\\\"5\\\">\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes >\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"0\\\" Maximum=\\\"7\\\" Interval=\\\"1\\\" ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"false\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'B\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\">\\r\\n\" +\n        \"                </toolkit:ChartLineStyle>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:StackingAreaSeries ItemsSource=\\\"{x:Binding StackingArea}\\\"\\r\\n\" +\n        \"                                XBindingPath=\\\"Year\\\" YBindingPath=\\\"High\\\"\\r\\n\" +\n        \"                                Label=\\\"Organic\\\" LegendIcon=\\\"SeriesType\\\" EnableAnimation=\\\"True\\\"\\r\\n\" +\n        \"                                EnableTooltip=\\\"True\\\" />\\r\\n\" +\n        \"    <toolkit:StackingAreaSeries ItemsSource=\\\"{x:Binding StackingArea}\\\"\\r\\n\" +\n        \"                                XBindingPath=\\\"Year\\\" YBindingPath=\\\"Low\\\"\\r\\n\" +\n        \"                                Label=\\\"Fairtrade\\\" LegendIcon=\\\"SeriesType\\\" EnableAnimation=\\\"True\\\"\\r\\n\" +\n        \"                                EnableTooltip=\\\"True\\\" />\\r\\n\" +\n        \"    <toolkit:StackingAreaSeries ItemsSource=\\\"{x:Binding StackingArea}\\\" \\r\\n\" +\n        \"                                XBindingPath=\\\"Year\\\" YBindingPath=\\\"Value\\\"\\r\\n\" +\n        \"                                Label=\\\"Veg Alternatives\\\" LegendIcon=\\\"SeriesType\\\" EnableAnimation=\\\"True\\\"\\r\\n\" +\n        \"                                EnableTooltip=\\\"True\\\" />\\r\\n\" +\n        \"    <toolkit:StackingAreaSeries ItemsSource=\\\"{x:Binding StackingArea}\\\"\\r\\n\" +\n        \"                                XBindingPath=\\\"Year\\\" YBindingPath=\\\"Size\\\"\\r\\n\" +\n        \"                                Label=\\\"Others\\\" LegendIcon=\\\"SeriesType\\\" EnableAnimation=\\\"True\\\"\\r\\n\" +\n        \"                                EnableTooltip=\\\"True\\\" />\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianStackingArea100ChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\" \\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"StackingArea100 Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis IsVisible=\\\"True\\\" ShowMajorGridLines=\\\"False\\\" Interval=\\\"2\\\" EdgeLabelsDrawingMode=\\\"Shift\\\">\\r\\n\" +\n        \"            <toolkit:CategoryAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle/>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.AxisLineStyle>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes >\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"0\\\" Maximum=\\\"100\\\" Interval=\\\"20\\\" ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"False\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'%\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\">\\r\\n\" +\n        \"                </toolkit:ChartLineStyle>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:StackingArea100Series ItemsSource=\\\"{x:Binding StackingArea}\\\" \\r\\n\" +\n        \"                                   XBindingPath=\\\"Year\\\" YBindingPath=\\\"High\\\"\\r\\n\" +\n        \"                                   Label=\\\"Product 1\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                   EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\"/>\\r\\n\" +\n        \"    <toolkit:StackingArea100Series ItemsSource=\\\"{x:Binding StackingArea}\\\" \\r\\n\" +\n        \"                                   XBindingPath=\\\"Year\\\" YBindingPath=\\\"Low\\\" \\r\\n\" +\n        \"                                   Label=\\\"Product 2\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                   EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\"/>\\r\\n\" +\n        \"    <toolkit:StackingArea100Series ItemsSource=\\\"{x:Binding StackingArea}\\\" \\r\\n\" +\n        \"                                   XBindingPath=\\\"Year\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                                   Label=\\\"Product 3\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                   EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\"/>\\r\\n\" +\n        \"    <toolkit:StackingArea100Series ItemsSource=\\\"{x:Binding StackingArea}\\\" \\r\\n\" +\n        \"                                   XBindingPath=\\\"Year\\\" YBindingPath=\\\"Size\\\" \\r\\n\" +\n        \"                                   Label=\\\"Product 4\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                   EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\"/>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianBarChartXamlCode =\n        \"<toolkit:SfCartesianChart IsTransposed=\\\"True\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\" \\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Bar Chart\\\" LineBreakMode=\\\"WordWrap\\\" Margin=\\\"2,0,2,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis EdgeLabelsDrawingMode=\\\"Shift\\\" LabelPlacement=\\\"BetweenTicks\\\" ShowMajorGridLines=\\\"false\\\">\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"0\\\" Interval=\\\"10\\\" IsVisible=\\\"False\\\" EdgeLabelsDrawingMode=\\\"Shift\\\" ShowMajorGridLines=\\\"false\\\" ShowMinorGridLines=\\\"false\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"8\\\">\\r\\n\" +\n        \"                </toolkit:ChartAxisTickStyle>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\" ItemsSource=\\\"{x:Binding Bar}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\">\\r\\n\" +\n        \"            <toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings LabelPlacement=\\\"Inner\\\">\\r\\n\" +\n        \"                    <toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                        <toolkit:ChartDataLabelStyle LabelFormat=\\\"0.## Exp\\\"/>\\r\\n\" +\n        \"                    </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"            </toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"        </toolkit:ColumnSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianCustomBarChartCSharpCode = \n        \"using Syncfusion.Maui.Toolkit.Charts;\\r\\n\\r\\n\" +\n        \"public class CustomBarChart : ColumnSeries\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    protected override ChartSegment CreateSegment()\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        return new BarSegment();\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    public static readonly BindableProperty TrackColorProperty = BindableProperty.Create(\\r\\n\" +\n        \"        nameof(TrackColor), \\r\\n\" +\n        \"        typeof(SolidColorBrush), \\r\\n\" +\n        \"        typeof(ColumnSeries), \\r\\n\" +\n        \"        new SolidColorBrush(Color.FromArgb(\\\"#E7E0EC\\\"))\\r\\n\" +\n        \"    );\\r\\n\\r\\n\" +\n        \"    public SolidColorBrush TrackColor\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        get { return (SolidColorBrush)GetValue(TrackColorProperty); }\\r\\n\" +\n        \"        set { SetValue(TrackColorProperty, value); }\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"public class BarSegment : ColumnSegment\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    RectF trackRect = RectF.Zero;\\r\\n\\r\\n\" +\n        \"    protected override void OnLayout()\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        base.OnLayout();\\r\\n\" +\n        \"        if (Series is CartesianSeries series && series.ActualYAxis is NumericalAxis yAxis)\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            var top = yAxis.ValueToPoint(Convert.ToDouble(yAxis.Maximum ?? double.NaN));\\r\\n\" +\n        \"            trackRect = new RectF() { Left = Left, Top = Top, Right = top, Bottom = Bottom };\\r\\n\" +\n        \"        }\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    protected override void Draw(ICanvas canvas)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        if (Series is not CustomBarChart series) return;\\r\\n\\r\\n\" +\n        \"        canvas.SetFillPaint(series.TrackColor, trackRect);\\r\\n\" +\n        \"        canvas.FillRoundedRectangle(trackRect, 25);\\r\\n\\r\\n\" +\n        \"        base.Draw(canvas);\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cartesianCustomBarChartXamlCode =\n        \"<toolkit:SfCartesianChart IsTransposed=\\\"True\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Custom Bar Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" ShowMajorGridLines=\\\"false\\\">\\r\\n\" +\n        \"            <toolkit:CategoryAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"100\\\" ShowMajorGridLines=\\\"False\\\" IsVisible=\\\"False\\\" EdgeLabelsDrawingMode=\\\"Shift\\\" ShowMinorGridLines=\\\"false\\\">\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <core:CustomBarChart ShowDataLabels=\\\"True\\\" Width=\\\"0.5\\\" \\r\\n\" +\n        \"                             EnableAnimation=\\\"True\\\" CornerRadius=\\\"25\\\"  \\r\\n\" +\n        \"                             ItemsSource=\\\"{x:Binding Bar}\\\" \\r\\n\" +\n        \"                             XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\">\\r\\n\" +\n        \"            <core:CustomBarChart.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings UseSeriesPalette=\\\"True\\\" LabelPlacement=\\\"Inner\\\">\\r\\n\" +\n        \"                    <toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                        <toolkit:ChartDataLabelStyle LabelFormat=\\\"#.##\\\" />\\r\\n\" +\n        \"                    </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"            </core:CustomBarChart.DataLabelSettings>\\r\\n\" +\n        \"        </core:CustomBarChart>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianDoubleBarChartXamlCode = \n        \"<toolkit:SfCartesianChart IsTransposed=\\\"True\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Double Bar Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis EdgeLabelsDrawingMode=\\\"Shift\\\" ShowMajorGridLines=\\\"false\\\">\\r\\n\" +\n        \"            <toolkit:CategoryAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Food\\\" />\\r\\n\" +\n        \"            </toolkit:CategoryAxis.Title>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis IsVisible=\\\"false\\\" EdgeLabelsDrawingMode=\\\"Shift\\\" ShowMajorGridLines=\\\"false\\\" ShowMinorGridLines=\\\"false\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"8\\\">\\r\\n\" +\n        \"                </toolkit:ChartAxisTickStyle>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries Label=\\\"Imports\\\" Width=\\\"0.8\\\" EnableTooltip=\\\"True\\\" Spacing=\\\"0.1\\\" \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding Bar}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\" EnableAnimation=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"        <toolkit:ColumnSeries Label=\\\"Exports\\\" Width=\\\"0.8\\\" EnableTooltip=\\\"True\\\" Spacing=\\\"0.1\\\" \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding Bar}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\" EnableAnimation=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianErrorBarChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\" >\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Error Bar Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"False\\\" EdgeLabelsDrawingMode=\\\"Shift\\\" Interval=\\\"1\\\" >\\r\\n\" +\n        \"            <toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"10\\\"/>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" Minimum=\\\"0\\\" Maximum=\\\"120\\\" >\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries ItemsSource=\\\"{x:Binding Bar}\\\"   \\r\\n\" +\n        \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\" Fill=\\\"#95DB9C\\\"/>\\r\\n\" +\n        \"        <toolkit:ErrorBarSeries ItemsSource=\\\"{x:Binding Bar}\\\"  \\r\\n\" +\n        \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\"  \\r\\n\" +\n        \"                                Mode=\\\"Vertical\\\" Type=\\\"Custom\\\" VerticalDirection=\\\"Both\\\"\\r\\n\" +\n        \"                                HorizontalErrorPath=\\\"Low\\\" VerticalErrorPath=\\\"High\\\"\\r\\n\" +\n        \"                                HorizontalErrorValue=\\\"1\\\" VerticalErrorValue=\\\"25\\\">\\r\\n\" +\n        \"            <toolkit:ErrorBarSeries.VerticalLineStyle>\\r\\n\" +\n        \"                <toolkit:ErrorBarLineStyle StrokeWidth=\\\"2\\\" Stroke=\\\"Red\\\"/>\\r\\n\" +\n        \"            </toolkit:ErrorBarSeries.VerticalLineStyle>\\r\\n\" +\n        \"            <toolkit:ErrorBarSeries.VerticalCapLineStyle>\\r\\n\" +\n        \"                <toolkit:ErrorBarCapLineStyle StrokeWidth=\\\"2\\\" Stroke=\\\"Red\\\"/>\\r\\n\" +\n        \"            </toolkit:ErrorBarSeries.VerticalCapLineStyle>\\r\\n\" +\n        \"        </toolkit:ErrorBarSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianCustomErrorBarChartXamlCode =\n    \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\" \\r\\n\" +\n    \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n    \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n    \"        <Label Text=\\\"Custom Error Bar Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n    \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n    \"    <toolkit:SfCartesianChart.XAxes >\\r\\n\" +\n    \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"False\\\" EdgeLabelsDrawingMode=\\\"Shift\\\" Interval=\\\"1\\\"  >\\r\\n\" +\n    \"            <toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n    \"                <toolkit:ChartAxisTickStyle TickSize=\\\"10\\\"/>\\r\\n\" +\n    \"            </toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n    \"        </toolkit:CategoryAxis>\\r\\n\" +\n    \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n    \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n    \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\"/>\\r\\n\" +\n    \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n    \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n    \"        <toolkit:ScatterSeries ItemsSource=\\\"{x:Binding Bar}\\\" \\r\\n\" +\n    \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\" PointHeight=\\\"10\\\" PointWidth=\\\"10\\\"/>\\r\\n\" +\n    \"        <toolkit:ErrorBarSeries x:Name=\\\"CustomErrorSeries\\\" ItemsSource=\\\"{x:Binding Bar}\\\" \\r\\n\" +\n    \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\"   \\r\\n\" +\n    \"                                HorizontalErrorValue=\\\"1\\\" VerticalErrorValue=\\\"10\\\" \\r\\n\" +\n    \"                                Type=\\\"Fixed\\\" Mode=\\\"Vertical\\\"\\r\\n\" +\n    \"                                HorizontalDirection=\\\"Both\\\" VerticalDirection=\\\"Both\\\">\\r\\n\" +\n    \"            <toolkit:ErrorBarSeries.VerticalLineStyle>\\r\\n\" +\n    \"                <toolkit:ErrorBarLineStyle StrokeWidth=\\\"2\\\" Stroke=\\\"Red\\\"/>\\r\\n\" +\n    \"            </toolkit:ErrorBarSeries.VerticalLineStyle>\\r\\n\" +\n    \"            <toolkit:ErrorBarSeries.HorizontalLineStyle>\\r\\n\" +\n    \"                <toolkit:ErrorBarLineStyle StrokeWidth=\\\"2\\\" Stroke=\\\"Red\\\"/>\\r\\n\" +\n    \"            </toolkit:ErrorBarSeries.HorizontalLineStyle>\\r\\n\" +\n    \"            <toolkit:ErrorBarSeries.VerticalCapLineStyle>\\r\\n\" +\n    \"                <toolkit:ErrorBarCapLineStyle StrokeWidth=\\\"2\\\" Stroke=\\\"Red\\\"/>\\r\\n\" +\n    \"            </toolkit:ErrorBarSeries.VerticalCapLineStyle>\\r\\n\" +\n    \"            <toolkit:ErrorBarSeries.HorizontalCapLineStyle>\\r\\n\" +\n    \"                <toolkit:ErrorBarCapLineStyle StrokeWidth=\\\"2\\\" Stroke=\\\"Red\\\"/>\\r\\n\" +\n    \"            </toolkit:ErrorBarSeries.HorizontalCapLineStyle>\\r\\n\" +\n    \"        </toolkit:ErrorBarSeries>\\r\\n\" +\n    \"        <toolkit:ScatterSeries ItemsSource=\\\"{x:Binding Bar}\\\" \\r\\n\" +\n    \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\" PointHeight=\\\"10\\\" PointWidth=\\\"10\\\"/>\\r\\n\" +\n    \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n    \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianRangeBarChartXamlCode =\n        \"<toolkit:SfCartesianChart IsTransposed=\\\"True\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\" HeightRequest=\\\"500\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Range Bar Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"        <toolkit:ChartZoomPanBehavior EnableDoubleTap=\\\"False\\\" EnablePinchZooming=\\\"False\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis Interval=\\\"1\\\" EdgeLabelsDrawingMode=\\\"Shift\\\" LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"False\\\" AutoScrollingMode=\\\"End\\\">\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes >\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"0\\\" EdgeLabelsDrawingMode=\\\"Shift\\\" ShowMajorGridLines=\\\"false\\\" ShowMinorGridLines=\\\"false\\\" Interval=\\\"5\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat= \\\"0.#&#186;C\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:RangeColumnSeries EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"\\r\\n\" +\n        \"                               ItemsSource=\\\"{x:Binding RangeBar}\\\"\\r\\n\" +\n        \"                               XBindingPath=\\\"Name\\\" High=\\\"High\\\" Low=\\\"Low\\\">\\r\\n\" +\n        \"        <toolkit:RangeColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"            <toolkit:CartesianDataLabelSettings UseSeriesPalette=\\\"False\\\">\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings.LabelStyle >\\r\\n\" +\n        \"                    <toolkit:ChartDataLabelStyle TextColor=\\\"White\\\" LabelFormat= \\\"0.#&#186;C\\\" />\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"            </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"        </toolkit:RangeColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"    </toolkit:RangeColumnSeries>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianStackingBarChartXamlCode =\n        \"<toolkit:SfCartesianChart IsTransposed=\\\"True\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\" Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Stacking Bar Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"false\\\" >\\r\\n\" +\n        \"            <toolkit:CategoryAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Product\\\"/>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.Title>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"-20\\\" Maximum=\\\"48\\\" Interval=\\\"10\\\" ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"false\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle  LabelFormat=\\\"$###,##0.##K\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:StackingColumnSeries XBindingPath=\\\"Name\\\" YBindingPath=\\\"High\\\"\\r\\n\" +\n        \"                                  Label=\\\"Zone 1\\\" EnableTooltip=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                  ItemsSource=\\\"{x:Binding StackingBar}\\\" />\\r\\n\" +\n        \"    <toolkit:StackingColumnSeries XBindingPath=\\\"Name\\\" YBindingPath=\\\"Low\\\" \\r\\n\" +\n        \"                                  Label=\\\"Zone 2\\\" EnableTooltip=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                  ItemsSource=\\\"{x:Binding StackingBar}\\\" />\\r\\n\" +\n        \"    <toolkit:StackingColumnSeries XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"\\r\\n\" +\n        \"                                  Label=\\\"Zone 3\\\" EnableTooltip=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                  ItemsSource=\\\"{x:Binding StackingBar}\\\" />\\r\\n\" +\n        \"    <toolkit:StackingColumnSeries XBindingPath=\\\"Name\\\" YBindingPath=\\\"Size\\\"\\r\\n\" +\n        \"                                  Label=\\\"Zone 4\\\" EnableTooltip=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                  ItemsSource=\\\"{x:Binding StackingBar}\\\"/>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianStackingBar100ChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\" IsTransposed=\\\"True\\\" \\r\\n\" +\n        \"                        Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Stacking Bar 100 Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" ShowMajorGridLines=\\\"False\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Interval=\\\"20\\\" ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"True\\\" RangePadding=\\\"None\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'%\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:StackingColumn100Series Label=\\\"Quarter 1\\\" LegendIcon=\\\"Rectangle\\\"\\r\\n\" +\n        \"                                         ItemsSource=\\\"{x:Binding StackingColumn}\\\" \\r\\n\" +\n        \"                                         XBindingPath=\\\"Name\\\" YBindingPath=\\\"High\\\" \\r\\n\" +\n        \"                                         EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:StackingColumn100Series Label=\\\"Quarter 2\\\" LegendIcon=\\\"Rectangle\\\"\\r\\n\" +\n        \"                                         ItemsSource=\\\"{x:Binding StackingColumn}\\\" \\r\\n\" +\n        \"                                         XBindingPath=\\\"Name\\\" YBindingPath=\\\"Low\\\" \\r\\n\" +\n        \"                                         EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:StackingColumn100Series Label=\\\"Quarter 3\\\" LegendIcon=\\\"Rectangle\\\"\\r\\n\" +\n        \"                                         ItemsSource=\\\"{x:Binding StackingColumn}\\\" \\r\\n\" +\n        \"                                         XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                                         EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:StackingColumn100Series Label=\\\"Quarter 4\\\" LegendIcon=\\\"Rectangle\\\"\\r\\n\" +\n        \"                                         ItemsSource=\\\"{x:Binding StackingColumn}\\\" \\r\\n\" +\n        \"                                         XBindingPath=\\\"Name\\\" YBindingPath=\\\"Size\\\" \\r\\n\" +\n        \"                                         EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianColumnChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Column Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"false\\\" >\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"false\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0 Exp\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle Stroke=\\\"Transparent\\\" StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"  \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding ComponentData,Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\">\\r\\n\" +\n        \"            <toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings >\\r\\n\" +\n        \"                    <toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                        <toolkit:ChartDataLabelStyle FontSize=\\\"12\\\" LabelFormat='0 Exp'/>\\r\\n\" +\n        \"                    </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"            </toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"        </toolkit:ColumnSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianTripleColumnChartXamlCode =\n        \"<toolkit:SfCartesianChart x:Name=\\\"Chart2\\\" PaletteBrushes=\\\"{Binding OlympicColorModel}\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Column Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"False\\\" LabelPlacement=\\\"BetweenTicks\\\">\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"True\\\" Minimum=\\\"0\\\">\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries Label=\\\"Aqua\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" Width=\\\"0.8\\\" Spacing=\\\"0.2\\\" \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding Column}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"        <toolkit:ColumnSeries Label=\\\"Gray\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" Width=\\\"0.8\\\" Spacing=\\\"0.2\\\" \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding Column}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"        <toolkit:ColumnSeries Label=\\\"Blue\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" Width=\\\"0.8\\\" Spacing=\\\"0.2\\\" \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding Column}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Size\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianRoundedColumnChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\" \\r\\n\" +\n        \"                            Margin=\\\"20, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Column Chart with Rounded Conner\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"false\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis IsVisible=\\\"False\\\" Minimum=\\\"0\\\" Maximum=\\\"120\\\" Interval=\\\"20\\\" ShowMajorGridLines=\\\"True\\\" >\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"10\\\" StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" CornerRadius=\\\"10\\\" \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding Column}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\">\\r\\n\" +\n        \"        </toolkit:ColumnSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Annotations>\\r\\n\" +\n        \"        <toolkit:HorizontalLineAnnotation Y1=\\\"90\\\" Stroke=\\\"#E75A6E\\\" StrokeWidth=\\\"2\\\" StrokeDashArray=\\\"15, 6, 5, 3\\\" Text=\\\"Overflow\\\">\\r\\n\" +\n        \"            <toolkit:HorizontalLineAnnotation.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAnnotationLabelStyle TextColor=\\\"#E75A6E\\\" HorizontalTextAlignment=\\\"Start\\\" VerticalTextAlignment=\\\"Start\\\" FontSize=\\\"15\\\"/>\\r\\n\" +\n        \"            </toolkit:HorizontalLineAnnotation.LabelStyle>\\r\\n\" +\n        \"        </toolkit:HorizontalLineAnnotation>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Annotations>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianCustomColumnChartCSharpCode =\n        \"public class CustomColumnSeries : ColumnSeries\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    protected override ChartSegment CreateSegment()\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        return new CustomColumnSegment();\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    public static readonly BindableProperty TrackColorProperty =BindableProperty.Create(\\r\\n\" +\n        \"        nameof(TrackColor), \\r\\n\" +\n        \"        typeof(SolidColorBrush), \\r\\n\" +\n        \"        typeof(CustomColumnSeries), \\r\\n\" +\n        \"        new SolidColorBrush(Color.FromArgb(\\\"#E7E0EC\\\"))\\r\\n\" +\n        \"    );\\r\\n\\r\\n\" +\n        \"    public SolidColorBrush TrackColor\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        get { return (SolidColorBrush)GetValue(TrackColorProperty); }\\r\\n\" +\n        \"        set { SetValue(TrackColorProperty, value); }\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    protected override void DrawDataLabel(ICanvas canvas, Brush? fillcolor, string label, PointF point, int index)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        var items = ItemsSource as ObservableCollection<SfCartesianChartModel>;\\r\\n\" +\n        \"        if (items != null)\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            var text = items[index].Name ?? \\\"\\\";\\r\\n\" +\n        \"            base.DrawDataLabel(canvas, new SolidColorBrush(Colors.Transparent), label, point, index);\\r\\n\" +\n        \"            base.DrawDataLabel(canvas, new SolidColorBrush(Colors.Transparent), text, new PointF(point.X, point.Y - 30), index);\\r\\n\" +\n        \"        }\\r\\n\" +\n        \"    }\\r\\n}\\r\\n\\r\\n\" +\n        \"public class CustomColumnSegment : ColumnSegment\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    float curveHeight;\\r\\n\" +\n        \"    float curveXGape = 30;\\r\\n\" +\n        \"    float curveYGape = 20;\\r\\n\\r\\n\" +\n        \"    protected override void Draw(ICanvas canvas)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        base.Draw(canvas);\\r\\n\\r\\n\" +\n        \"        if (Series is CartesianSeries series && series.ActualYAxis is NumericalAxis yAxis)\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            var top = yAxis.ValueToPoint(Convert.ToDouble(yAxis.Maximum ?? double.NaN));\\r\\n\\r\\n\" +\n        \"            var trackRect = new RectF() { Left = Left, Top = top, Right = Right, Bottom = Bottom };\\r\\n\" +\n        \"            curveHeight = trackRect.Height / curveYGape;\\r\\n\" +\n        \"            var width = trackRect.Width + (float)Math.Sqrt((trackRect.Width * trackRect.Width) + (trackRect.Height * trackRect.Height));\\r\\n\" +\n        \"            var waveLeft = trackRect.Left;\\r\\n\" +\n        \"            var waveRight = waveLeft + width;\\r\\n\" +\n        \"            var waveTop = trackRect.Bottom;\\r\\n\" +\n        \"            var waveBottom = trackRect.Bottom + trackRect.Height;\\r\\n\\r\\n\" +\n        \"            var waveRect = new Rect() { Left = waveLeft, Top = waveTop, Right = waveRight, Bottom = waveBottom };\\r\\n\\r\\n\" +\n        \"            float freq = trackRect.Bottom - Top;\\r\\n\\r\\n\" +\n        \"            canvas.CanvasSaveState();\\r\\n\\r\\n\" +\n        \"            DrawTrackPath(canvas, trackRect);\\r\\n\\r\\n\" +\n        \"            var color = (Fill is SolidColorBrush brush) ? brush.Color : Colors.Transparent;\\r\\n\\r\\n\" +\n        \"            canvas.SetFillPaint(new SolidColorBrush(color.MultiplyAlpha(0.6f)), waveRect);\\r\\n\" +\n        \"            DrawWave(canvas, new Rect(new Point(waveLeft - curveXGape - freq, waveTop - freq), waveRect.Size));\\r\\n\\r\\n\" +\n        \"            canvas.SetFillPaint(Fill, waveRect);\\r\\n\" +\n        \"            DrawWave(canvas, new Rect(new Point(waveLeft - freq, waveTop - freq), waveRect.Size));\\r\\n\\r\\n\" +\n        \"            canvas.CanvasRestoreState();\\r\\n\" +\n        \"        }\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    private void DrawTrackPath(ICanvas canvas, RectF trackRect)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        if (Series is not CustomColumnSeries series) return;\\r\\n\" +\n        \"        PathF path = new();\\r\\n\" +\n        \"        path.MoveTo(trackRect.Left, trackRect.Bottom);\\r\\n\" +\n        \"        path.LineTo(trackRect.Left, trackRect.Top);\\r\\n\" +\n        \"        path.LineTo(trackRect.Right, trackRect.Top);\\r\\n\" +\n        \"        path.LineTo(trackRect.Right, trackRect.Bottom);\\r\\n\\r\\n\" +\n        \"        path.Close();\\r\\n\" +\n        \"        canvas.ClipPath(path);\\r\\n\\r\\n\" +\n        \"        canvas.SetFillPaint(series.TrackColor, trackRect);\\r\\n\" +\n        \"        canvas.FillPath(path);\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    private void DrawWave(ICanvas canvas, RectF rectangle)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        PathF path = new();\\r\\n\\r\\n\" +\n        \"        path.MoveTo(rectangle.Left, rectangle.Bottom);\\r\\n\" +\n        \"        path.LineTo(rectangle.Left, rectangle.Top);\\r\\n\\r\\n\" +\n        \"        var top = rectangle.Top;\\r\\n\" +\n        \"        var start = rectangle.Left;\\r\\n\" +\n        \"        var split = rectangle.Width / 5;\\r\\n\" +\n        \"        do\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            var next = start + split;\\r\\n\\r\\n\" +\n        \"            var crX = start + (split / 2);\\r\\n\" +\n        \"            var crY = top - curveHeight;\\r\\n\" +\n        \"            var crY2 = top + curveHeight;\\r\\n\\r\\n\" +\n        \"            path.CurveTo(crX, crY, crX, crY2, next, top);\\r\\n\\r\\n\" +\n        \"            start = next;\\r\\n\" +\n        \"        } while (start <= rectangle.Right);\\r\\n\\r\\n\" +\n        \"        path.LineTo(rectangle.Right, rectangle.Bottom);\\r\\n\" +\n        \"        path.Close();\\r\\n\" +\n        \"        canvas.FillPath(path);\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cartesianCustomColumnChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\" Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Custom Column Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis IsVisible=\\\"False\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" IsVisible=\\\"False\\\" Maximum=\\\"150\\\" Minimum=\\\"0\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <core:CustomColumnSeries EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"\\r\\n\" +\n        \"                                        ItemsSource=\\\"{x:Binding Column}\\\" \\r\\n\" +\n        \"                                        XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\">\\r\\n\" +\n        \"            <core:CustomColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings UseSeriesPalette=\\\"False\\\" LabelPlacement=\\\"Outer\\\">\\r\\n\" +\n        \"                    <toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                        <toolkit:ChartDataLabelStyle FontSize=\\\"16\\\" LabelFormat=\\\"0.00'M\\\"/>\\r\\n\" +\n        \"                    </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"            </core:CustomColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"        </core:CustomColumnSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianRangeColumnChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\" \\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\" HeightRequest=\\\"500\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Range Column Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"        <toolkit:ChartZoomPanBehavior EnableDoubleTap=\\\"False\\\" EnablePinchZooming=\\\"False\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" Interval=\\\"1\\\" ShowMajorGridLines=\\\"false\\\" AutoScrollingMode=\\\"Start\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes >\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"True\\\" Interval=\\\"5\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat= \\\"0.#&#186;C\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:RangeColumnSeries EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"\\r\\n\" +\n        \"                               Fill=\\\"{x:AppThemeBinding Light={x:StaticResource series1Light}, Dark={x:StaticResource series1Dark}}\\\"\\r\\n\" +\n        \"                               ItemsSource=\\\"{x:Binding RangeColumn}\\\"\\r\\n\" +\n        \"                               XBindingPath=\\\"Name\\\" High=\\\"High\\\" Low=\\\"Low\\\">\\r\\n\" +\n        \"        <toolkit:RangeColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"            <toolkit:CartesianDataLabelSettings UseSeriesPalette=\\\"False\\\">\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings.LabelStyle >\\r\\n\" +\n        \"                    <toolkit:ChartDataLabelStyle TextColor=\\\"White\\\" LabelFormat= \\\"0.#&#186;C\\\"/>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"            </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"        </toolkit:RangeColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"    </toolkit:RangeColumnSeries>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianStackingColumnChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\" \\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Stacking Column Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"false\\\">\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes >\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"false\\\" Minimum=\\\"0\\\" Maximum=\\\"60\\\" Interval=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\\r\\n\" +\n        \"    <toolkit:StackingColumnSeries Label=\\\"Zone 1\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"\\r\\n\" +\n        \"                                    ItemsSource=\\\"{x:Binding StackingColumn}\\\"\\r\\n\" +\n        \"                                    EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"    <toolkit:StackingColumnSeries Label=\\\"Zone 2\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"High\\\"\\r\\n\" +\n        \"                                    ItemsSource=\\\"{x:Binding StackingColumn}\\\"\\r\\n\" +\n        \"                                    EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"    <toolkit:StackingColumnSeries Label=\\\"Zone 3\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Low\\\"\\r\\n\" +\n        \"                                    ItemsSource=\\\"{x:Binding StackingColumn}\\\" \\r\\n\" +\n        \"                                    EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianStackingColumn100ChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\" IsTransposed=\\\"True\\\" \\r\\n\" +\n        \"                        Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Stacking Column 100 Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" ShowMajorGridLines=\\\"False\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Interval=\\\"20\\\" ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"True\\\" RangePadding=\\\"None\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'%\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:StackingColumn100Series Label=\\\"Quarter 1\\\" LegendIcon=\\\"Rectangle\\\"\\r\\n\" +\n        \"                                            ItemsSource=\\\"{x:Binding StackingColumn}\\\" \\r\\n\" +\n        \"                                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"High\\\" \\r\\n\" +\n        \"                                            EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:StackingColumn100Series Label=\\\"Quarter 2\\\" LegendIcon=\\\"Rectangle\\\"\\r\\n\" +\n        \"                                            ItemsSource=\\\"{x:Binding StackingColumn}\\\" \\r\\n\" +\n        \"                                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Low\\\" \\r\\n\" +\n        \"                                            EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:StackingColumn100Series Label=\\\"Quarter 3\\\" LegendIcon=\\\"Rectangle\\\"\\r\\n\" +\n        \"                                            ItemsSource=\\\"{x:Binding StackingColumn}\\\" \\r\\n\" +\n        \"                                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                                            EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:StackingColumn100Series Label=\\\"Quarter 4\\\" LegendIcon=\\\"Rectangle\\\"\\r\\n\" +\n        \"                                            ItemsSource=\\\"{x:Binding StackingColumn}\\\" \\r\\n\" +\n        \"                                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Size\\\" \\r\\n\" +\n        \"                                            EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianLineChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Line Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"false\\\" Interval=\\\"2\\\" PlotOffsetStart=\\\"10\\\" PlotOffsetEnd=\\\"10\\\" AxisLineOffset=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"10\\\">\\r\\n\" +\n        \"                </toolkit:ChartAxisTickStyle>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"100\\\" Minimum=\\\"0\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'%\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\">\\r\\n\" +\n        \"                </toolkit:ChartLineStyle>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries Label=\\\"Line 1\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" StrokeWidth=\\\"1\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding FirstLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                            ShowMarkers=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"        <toolkit:LineSeries Label=\\\"Line 2\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" StrokeWidth=\\\"1\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding SecondLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                            ShowMarkers=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianDashedLineChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <DoubleCollection x:Key=\\\"DashArray\\\">\\r\\n\" +\n        \"            <x:Double>6</x:Double>\\r\\n\" +\n        \"            <x:Double>3</x:Double>\\r\\n\" +\n        \"            <x:Double>3</x:Double>\\r\\n\" +\n        \"            <x:Double>3</x:Double>\\r\\n\" +\n        \"        </DoubleCollection>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Dashed Line Chart\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"false\\\" Interval=\\\"2\\\" PlotOffsetStart=\\\"10\\\" PlotOffsetEnd=\\\"10\\\" AxisLineOffset=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"10\\\">\\r\\n\" +\n        \"                </toolkit:ChartAxisTickStyle>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Interval=\\\"20\\\" Maximum=\\\"100\\\" Minimum=\\\"0\\\" >\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'%\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\">\\r\\n\" +\n        \"                </toolkit:ChartLineStyle>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries Label=\\\"Line 1\\\" StrokeDashArray=\\\"{x:StaticResource DashArray}\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                        EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" StrokeWidth=\\\"1\\\" ShowMarkers=\\\"True\\\"\\r\\n\" +\n        \"                        ItemsSource=\\\"{x:Binding FirstLine}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"/>\\r\\n\" +\n        \"        <toolkit:LineSeries Label=\\\"Line 2\\\" StrokeDashArray=\\\"{x:StaticResource DashArray}\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                        EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" StrokeWidth=\\\"1\\\" ShowMarkers=\\\"True\\\"\\r\\n\" +\n        \"                        ItemsSource=\\\"{x:Binding SecondLine}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianSplineChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Spline Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"false\\\" PlotOffsetStart=\\\"10\\\" PlotOffsetEnd=\\\"10\\\" AxisLineOffset=\\\"10\\\">\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"100\\\" Minimum=\\\"0\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\">\\r\\n\" +\n        \"                </toolkit:ChartLineStyle>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'F\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:SplineSeries Label=\\\"High\\\" LegendIcon=\\\"SeriesType\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding FirstLine}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                              EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" ShowMarkers=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:SplineSeries Label=\\\"Low\\\" StrokeWidth=\\\"1\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding SecondLine}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                              EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" ShowMarkers=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianDashedSplineChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <DoubleCollection x:Key=\\\"DashArray\\\">\\r\\n\" +\n        \"            <x:Double>6</x:Double>\\r\\n\" +\n        \"            <x:Double>3</x:Double>\\r\\n\" +\n        \"            <x:Double>3</x:Double>\\r\\n\" +\n        \"            <x:Double>3</x:Double>\\r\\n\" +\n        \"        </DoubleCollection>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Dashed Spline Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"false\\\" PlotOffsetStart=\\\"10\\\" PlotOffsetEnd=\\\"10\\\" AxisLineOffset=\\\"10\\\">\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"100\\\" Minimum=\\\"0\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\">\\r\\n\" +\n        \"                </toolkit:ChartLineStyle>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'%\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:SplineSeries Label=\\\"Line 1\\\" StrokeDashArray=\\\"{x:StaticResource DashArray}\\\" StrokeWidth=\\\"1\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                              EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" ShowMarkers=\\\"True\\\"\\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding FirstLine}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" />\\r\\n\" +\n        \"        <toolkit:SplineSeries Label=\\\"Line 2\\\" StrokeDashArray=\\\"{x:StaticResource DashArray}\\\" StrokeWidth=\\\"1\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                              EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" ShowMarkers=\\\"True\\\"\\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding SecondLine}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianStepLineChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Step Line Chart\\\" MaxLines=\\\"2\\\" LineBreakMode=\\\"WordWrap\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"False\\\" PlotOffsetEnd=\\\"10\\\" PlotOffsetStart=\\\"10\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"0\\\" Maximum=\\\"100\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'%\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:StepLineSeries Label=\\\"Line 1\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                ItemsSource=\\\"{x:Binding FirstLine}\\\" \\r\\n\" +\n        \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                                EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" ShowMarkers=\\\"True\\\">\\r\\n\" +\n        \"            <toolkit:StepLineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:StepLineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:StepLineSeries>\\r\\n\" +\n        \"        <toolkit:StepLineSeries Label=\\\"Line 2\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                ItemsSource=\\\"{x:Binding SecondLine}\\\" \\r\\n\" +\n        \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                                EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" ShowMarkers=\\\"True\\\">\\r\\n\" +\n        \"            <toolkit:StepLineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:StepLineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:StepLineSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianDashedStepLineChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Dashed Step Line\\\" MaxLines=\\\"2\\\" LineBreakMode=\\\"WordWrap\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <DoubleCollection x:Key=\\\"DashArray\\\">\\r\\n\" +\n        \"            <x:Double>6</x:Double>\\r\\n\" +\n        \"            <x:Double>3</x:Double>\\r\\n\" +\n        \"            <x:Double>3</x:Double>\\r\\n\" +\n        \"            <x:Double>3</x:Double>\\r\\n\" +\n        \"        </DoubleCollection>\\r\\n\" +\n        \"        <ResourceDictionary>\\r\\n\" +\n        \"            <DataTemplate x:Key=\\\"TooltipTemplate\\\">\\r\\n\" +\n        \"                <StackLayout>\\r\\n\" +\n        \"                    <Label Text=\\\"Grades\\\" HorizontalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Center\\\" VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                            FontAttributes=\\\"Bold\\\" FontFamily=\\\"Helvetica\\\" Margin=\\\"0,2,0,2\\\" FontSize=\\\"12\\\" />\\r\\n\" +\n        \"                    <BoxView HeightRequest=\\\"1\\\" WidthRequest=\\\"100\\\"/>\\r\\n\" +\n        \"                    <StackLayout Orientation=\\\"Horizontal\\\" VerticalOptions=\\\"Fill\\\" Spacing=\\\"0\\\" Padding=\\\"3\\\" Margin=\\\"0\\\">\\r\\n\" +\n        \"                        <Ellipse TranslationY=\\\"-1\\\" StrokeThickness=\\\"2\\\" \\r\\n\" +\n        \"                                    HeightRequest=\\\"10\\\" WidthRequest=\\\"10\\\" Fill=\\\"#04ABC1\\\" Margin=\\\"0,3,3,0\\\"/>\\r\\n\" +\n        \"                        <Label Text=\\\"{x:Binding Item.Name,StringFormat='{0:MMM-dd}'}\\\" \\r\\n\" +\n        \"                                VerticalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Start\\\" \\r\\n\" +\n        \"                                FontFamily=\\\"Helvetica\\\" FontSize=\\\"12\\\" Margin=\\\"3,0,3,0\\\"/>\\r\\n\" +\n        \"                        <Label Text=\\\"{x:Binding Item.Value,StringFormat=' :  {0}'}\\\" \\r\\n\" +\n        \"                                VerticalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"End\\\" \\r\\n\" +\n        \"                                FontFamily=\\\"Helvetica\\\" Margin=\\\"0,0,3,0\\\" FontSize=\\\"12\\\"/>\\r\\n\" +\n        \"                    </StackLayout>\\r\\n\" +\n        \"                </StackLayout>\\r\\n\" +\n        \"            </DataTemplate>\\r\\n\" +\n        \"        </ResourceDictionary>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"        <toolkit:ChartZoomPanBehavior ZoomMode=\\\"X\\\" EnableDoubleTap=\\\"False\\\" EnablePinchZooming=\\\"False\\\" EnablePanning=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"False\\\" PlotOffsetEnd=\\\"10\\\" PlotOffsetStart=\\\"10\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis EdgeLabelsDrawingMode=\\\"Fit\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle LabelFormat=\\\"0'%\\\"/>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:StepLineSeries Label=\\\"Line 1\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                StrokeDashArray=\\\"{x:StaticResource DashArray}\\\" \\r\\n\" +\n        \"                                ItemsSource=\\\"{x:Binding FirstLine}\\\" \\r\\n\" +\n        \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                                ShowMarkers=\\\"True\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\"  \\r\\n\" +\n        \"                                TooltipTemplate=\\\"{x:StaticResource TooltipTemplate}\\\" >\\r\\n\" +\n        \"            <toolkit:StepLineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:StepLineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:StepLineSeries>\\r\\n\" +\n        \"        <toolkit:StepLineSeries Label=\\\"Line 2\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                StrokeDashArray=\\\"{x:StaticResource DashArray}\\\" \\r\\n\" +\n        \"                                ItemsSource=\\\"{x:Binding SecondLine}\\\" \\r\\n\" +\n        \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                                ShowMarkers=\\\"True\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\"  \\r\\n\" +\n        \"                                TooltipTemplate=\\\"{x:StaticResource TooltipTemplate}\\\" >\\r\\n\" +\n        \"            <toolkit:StepLineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:StepLineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:StepLineSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianVerticalStepLineChartXamlCode =\n        \"<toolkit:SfCartesianChart IsTransposed=\\\"True\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Vertical Step Line\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <ResourceDictionary>\\r\\n\" +\n        \"            <DataTemplate x:Key=\\\"TooltipTemplateVerticalLine\\\">\\r\\n\" +\n        \"                <StackLayout>\\r\\n\" +\n        \"                    <Label Text=\\\"Grades\\\" HorizontalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Center\\\" VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                           FontAttributes=\\\"Bold\\\" FontFamily=\\\"Helvetica\\\" Margin=\\\"0,2\\\" FontSize=\\\"12\\\" />\\r\\n\" +\n        \"                    <BoxView HeightRequest=\\\"1\\\" WidthRequest=\\\"100\\\" />\\r\\n\" +\n        \"                    <StackLayout Orientation=\\\"Horizontal\\\" VerticalOptions=\\\"Fill\\\" Padding=\\\"3\\\" >\\r\\n\" +\n        \"                        <Ellipse TranslationY=\\\"-1\\\" StrokeThickness=\\\"2\\\" \\r\\n\" +\n        \"                                 HeightRequest=\\\"10\\\" WidthRequest=\\\"10\\\" Fill=\\\"#04ABC1\\\" Margin=\\\"0,3,3,0\\\"/>\\r\\n\" +\n        \"                        <Label Text=\\\"{x:Binding Item.Name}\\\"  VerticalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Start\\\"  \\r\\n\" +\n        \"                               FontFamily=\\\"Helvetica\\\" FontSize=\\\"12\\\" Margin=\\\"3,0,3,0\\\"/>\\r\\n\" +\n        \"                        <Label Text=\\\"{x:Binding Item.Value,StringFormat=' :  {0} %'}\\\" VerticalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"End\\\" \\r\\n\" +\n        \"                               FontFamily=\\\"Helvetica\\\" Margin=\\\"0,0,3,0\\\" FontSize=\\\"12\\\"/>\\r\\n\" +\n        \"                    </StackLayout>\\r\\n\" +\n        \"                </StackLayout>\\r\\n\" +\n        \"            </DataTemplate>\\r\\n\" +\n        \"        </ResourceDictionary>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"False\\\" LabelPlacement=\\\"BetweenTicks\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"0\\\" Maximum=\\\"100\\\" Interval=\\\"20\\\" ShowMajorGridLines=\\\"True\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle LabelFormat=\\\"0'%\\\"/>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:StepLineSeries Label=\\\"Line 1\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                ItemsSource=\\\"{x:Binding FirstLine}\\\"  \\r\\n\" +\n        \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                                ShowMarkers=\\\"True\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\" \\r\\n\" +\n        \"                                TooltipTemplate=\\\"{StaticResource TooltipTemplateVerticalLine}\\\">\\r\\n\" +\n        \"            <toolkit:StepLineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:StepLineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:StepLineSeries>\\r\\n\" +\n        \"        <toolkit:StepLineSeries Label=\\\"Line 2\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                                ItemsSource=\\\"{x:Binding SecondLine}\\\"  \\r\\n\" +\n        \"                                XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                                ShowMarkers=\\\"True\\\" EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\"  \\r\\n\" +\n        \"                                TooltipTemplate=\\\"{StaticResource TooltipTemplateVerticalLine}\\\">\\r\\n\" +\n        \"            <toolkit:StepLineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:StepLineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:StepLineSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianStackingLineChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\" \\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <ResourceDictionary>\\r\\n\" +\n        \"            <DataTemplate x:Key=\\\"TooltipTemplate\\\">\\r\\n\" +\n        \"                <StackLayout>\\r\\n\" +\n        \"                    <Label Text=\\\"Grades\\\" HorizontalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Center\\\" VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                           FontAttributes=\\\"Bold\\\" FontFamily=\\\"Helvetica\\\" Margin=\\\"0,2,0,2\\\" FontSize=\\\"13\\\"/>\\r\\n\" +\n        \"                    <BoxView HeightRequest=\\\"1\\\" WidthRequest=\\\"80\\\" />\\r\\n\" +\n        \"                    <StackLayout Orientation=\\\"Horizontal\\\" VerticalOptions=\\\"Fill\\\" Spacing=\\\"0\\\" Padding=\\\"3\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Center\\\">\\r\\n\" +\n        \"                        <Ellipse TranslationY=\\\"-1\\\" StrokeThickness=\\\"2\\\" \\r\\n\" +\n        \"                                 HeightRequest=\\\"10\\\" WidthRequest=\\\"10\\\" Fill=\\\"#04ABC1\\\" Margin=\\\"0,3,3,0\\\"/>\\r\\n\" +\n        \"                        <Label Text=\\\"{Binding Item.Name}\\\"  VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                            HorizontalOptions=\\\"Start\\\"  FontFamily=\\\"Helvetica\\\" FontSize=\\\"12\\\" Margin=\\\"3,0,3,0\\\"/>\\r\\n\" +\n        \"                        <Label Text=\\\"{Binding Item.Value,StringFormat=' :  {0}'}\\\" VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                            HorizontalOptions=\\\"End\\\" FontFamily=\\\"Helvetica\\\" Margin=\\\"0,0,3,0\\\" FontSize=\\\"12\\\" />\\r\\n\" +\n        \"                    </StackLayout>\\r\\n\" +\n        \"                </StackLayout>\\r\\n\" +\n        \"            </DataTemplate>\\r\\n\" +\n        \"        </ResourceDictionary>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Stacking Line Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"False\\\" LabelPlacement=\\\"BetweenTicks\\\">\\r\\n\" +\n        \"            <toolkit:CategoryAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Year\\\"/>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.Title>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes >\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"0\\\" Maximum=\\\"300\\\" Interval=\\\"50\\\" ShowMajorGridLines=\\\"True\\\"\\r\\n\" +\n        \"                            EdgeLabelsDrawingMode=\\\"Center\\\" PlotOffsetEnd=\\\"10\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:StackingLineSeries Label=\\\"Line 1\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding FirstLine}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"\\r\\n\" +\n        \"                            EnableAnimation=\\\"True\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"2\\\" \\r\\n\" +\n        \"                            EnableTooltip=\\\"True\\\" TooltipTemplate=\\\"{x:StaticResource TooltipTemplate}\\\">\\r\\n\" +\n        \"        <toolkit:StackingLineSeries.MarkerSettings>\\r\\n\" +\n        \"            <toolkit:ChartMarkerSettings Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"2\\\"/>\\r\\n\" +\n        \"        </toolkit:StackingLineSeries.MarkerSettings>\\r\\n\" +\n        \"    </toolkit:StackingLineSeries>\\r\\n\" +\n        \"    <toolkit:StackingLineSeries Label=\\\"Line 2\\\" LegendIcon=\\\"SeriesType\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding SecondLine}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"\\r\\n\" +\n        \"                            EnableAnimation=\\\"True\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"2\\\" \\r\\n\" +\n        \"                            EnableTooltip=\\\"True\\\" TooltipTemplate=\\\"{x:StaticResource TooltipTemplate}\\\">\\r\\n\" +\n        \"        <toolkit:StackingLineSeries.MarkerSettings>\\r\\n\" +\n        \"            <toolkit:ChartMarkerSettings Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"2\\\"/>\\r\\n\" +\n        \"        </toolkit:StackingLineSeries.MarkerSettings>\\r\\n\" +\n        \"    </toolkit:StackingLineSeries>\\r\\n\" +\n        \"    <toolkit:StackingLineSeries Label=\\\"Line 3\\\" LegendIcon=\\\"SeriesType\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding ThirdLine}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"\\r\\n\" +\n        \"                            EnableAnimation=\\\"True\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"2\\\"\\r\\n\" +\n        \"                            EnableTooltip=\\\"True\\\" TooltipTemplate=\\\"{x:StaticResource TooltipTemplate}\\\">\\r\\n\" +\n        \"        <toolkit:StackingLineSeries.MarkerSettings>\\r\\n\" +\n        \"            <toolkit:ChartMarkerSettings Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"2\\\"/>\\r\\n\" +\n        \"        </toolkit:StackingLineSeries.MarkerSettings>\\r\\n\" +\n        \"    </toolkit:StackingLineSeries>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianStackingLine100ChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\" \\r\\n\" +\n        \"                        Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <ResourceDictionary>\\r\\n\" +\n        \"            <DataTemplate x:Key=\\\"TooltipTemplate\\\">\\r\\n\" +\n        \"                <StackLayout Orientation=\\\"Horizontal\\\">\\r\\n\" +\n        \"                    <Rectangle HeightRequest=\\\"35\\\" WidthRequest=\\\"8\\\"/>\\r\\n\" +\n        \"                    <StackLayout Orientation=\\\"Vertical\\\">\\r\\n\" +\n        \"                        <Label Text=\\\"{Binding Item.Name}\\\" FontSize=\\\"13\\\" Padding=\\\"5,0,0,0\\\"/>\\r\\n\" +\n        \"                        <Label FontSize=\\\"12\\\" Padding=\\\"5,0,0,0\\\" Margin=\\\"0,0,3,0\\\">\\r\\n\" +\n        \"                            <Label.FormattedText>\\r\\n\" +\n        \"                                <FormattedString>\\r\\n\" +\n        \"                                    <Span Text=\\\"Grades\\\" FontAttributes=\\\"Bold\\\" />\\r\\n\" +\n        \"                                    <Span Text=\\\"{Binding Item.Value, StringFormat=' : {0}%'}\\\" />\\r\\n\" +\n        \"                                </FormattedString>\\r\\n\" +\n        \"                            </Label.FormattedText>\\r\\n\" +\n        \"                        </Label>\\r\\n\" +\n        \"                    </StackLayout>\\r\\n\" +\n        \"                </StackLayout>\\r\\n\" +\n        \"            </DataTemplate>\\r\\n\" +\n        \"        </ResourceDictionary>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Blood Type Distribution Among Population\\\"  LineBreakMode=\\\"WordWrap\\\"  Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis IsVisible=\\\"True\\\" ShowMajorGridLines=\\\"False\\\" LabelPlacement=\\\"BetweenTicks\\\">\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes >\\r\\n\" +\n        \"        <toolkit:NumericalAxis Minimum=\\\"0\\\" Maximum=\\\"100\\\" Interval=\\\"20\\\" ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"False\\\" \\r\\n\" +\n        \"                            EdgeLabelsDrawingMode=\\\"Center\\\" PlotOffsetEnd=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'%\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:StackingLine100Series Label=\\\"Line 1\\\" LegendIcon=\\\"SeriesType\\\" \\r\\n\" +\n        \"                                ItemsSource=\\\"{x:Binding FirstLine}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"\\r\\n\" +\n        \"                                EnableAnimation=\\\"True\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"2\\\" \\r\\n\" +\n        \"                                EnableTooltip=\\\"True\\\" TooltipTemplate=\\\"{x:StaticResource TooltipTemplate}\\\">\\r\\n\" +\n        \"        <toolkit:StackingLine100Series.MarkerSettings>\\r\\n\" +\n        \"            <toolkit:ChartMarkerSettings Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"2\\\"/>\\r\\n\" +\n        \"        </toolkit:StackingLine100Series.MarkerSettings>\\r\\n\" +\n        \"    </toolkit:StackingLine100Series>\\r\\n\" +\n        \"    <toolkit:StackingLine100Series Label=\\\"Line 2\\\" LegendIcon=\\\"SeriesType\\\" \\r\\n\" +\n        \"                                ItemsSource=\\\"{x:Binding SecondLine}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"\\r\\n\" +\n        \"                                EnableAnimation=\\\"True\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"2\\\" \\r\\n\" +\n        \"                                EnableTooltip=\\\"True\\\" TooltipTemplate=\\\"{x:StaticResource TooltipTemplate}\\\">\\r\\n\" +\n        \"        <toolkit:StackingLine100Series.MarkerSettings>\\r\\n\" +\n        \"            <toolkit:ChartMarkerSettings Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"2\\\"/>\\r\\n\" +\n        \"        </toolkit:StackingLine100Series.MarkerSettings>\\r\\n\" +\n        \"    </toolkit:StackingLine100Series>\\r\\n\" +\n        \"    <toolkit:StackingLine100Series Label=\\\"Line 3\\\" LegendIcon=\\\"SeriesType\\\" \\r\\n\" +\n        \"                                ItemsSource=\\\"{x:Binding ThirdLine}\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"\\r\\n\" +\n        \"                                EnableAnimation=\\\"True\\\"  ShowMarkers=\\\"True\\\" StrokeWidth=\\\"2\\\" \\r\\n\" +\n        \"                                EnableTooltip=\\\"True\\\" TooltipTemplate=\\\"{x:StaticResource TooltipTemplate}\\\">\\r\\n\" +\n        \"        <toolkit:StackingLine100Series.MarkerSettings>\\r\\n\" +\n        \"            <toolkit:ChartMarkerSettings Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"2\\\"/>\\r\\n\" +\n        \"        </toolkit:StackingLine100Series.MarkerSettings>\\r\\n\" +\n        \"    </toolkit:StackingLine100Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianFastLineChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Fast Line Chart\\\" Margin=\\\"0,0,0,5\\\" \\r\\n\" +\n        \"                HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:DateTimeAxis ShowMinorGridLines=\\\"False\\\" ShowMajorGridLines=\\\"False\\\" \\r\\n\" +\n        \"                            IntervalType=\\\"Years\\\" Interval=\\\"15\\\">\\r\\n\" +\n        \"            <toolkit:DateTimeAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"X-Axis\\\"/>\\r\\n\" +\n        \"            </toolkit:DateTimeAxis.Title>\\r\\n\" +\n        \"            <toolkit:DateTimeAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"yyyy\\\"/>\\r\\n\" +\n        \"            </toolkit:DateTimeAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:DateTimeAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Y-Axis\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"        <toolkit:ChartZoomPanBehavior EnablePinchZooming=\\\"True\\\" EnableDoubleTap=\\\"True\\\" \\r\\n\" +\n        \"                                        EnablePanning=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:FastLineSeries ItemsSource=\\\"{x:Binding FastLine}\\\"\\r\\n\" +\n        \"                                EnableAntiAliasing=\\\"True\\\"\\r\\n\" +\n        \"                                XBindingPath=\\\"Date\\\" YBindingPath=\\\"Value\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianScatterChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\" \\r\\n\" +\n        \"                        Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Height vs Weight\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" EdgeLabelsDrawingMode=\\\"Shift\\\" Minimum=\\\"100\\\" Maximum=\\\"220\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Margin=\\\"5,10,5,2\\\" Text=\\\"Centimeter\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" Minimum=\\\"50\\\" Maximum=\\\"80\\\" Interval=\\\"5\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Kilogram\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ScatterSeries Label=\\\"Scatter 1\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" Opacity=\\\"0.6\\\" PointWidth=\\\"8\\\" PointHeight=\\\"8\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{Binding FirstScatter}\\\" XBindingPath=\\\"Value\\\" YBindingPath=\\\"Size\\\"/>\\r\\n\" +\n        \"        <toolkit:ScatterSeries Label=\\\"Scatter 2\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" Opacity=\\\"0.6\\\" PointWidth=\\\"8\\\" PointHeight=\\\"8\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{Binding SecondScatter}\\\" XBindingPath=\\\"Value\\\" YBindingPath=\\\"Size\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianBubbleChartXamlCode =\n        \"<toolkit:SfCartesianChart VerticalOptions=\\\"FillAndExpand\\\" HorizontalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"Rooltiptemplate\\\">\\r\\n\" +\n        \"            <Grid RowDefinitions=\\\"auto, auto, auto\\\">\\r\\n\" +\n        \"                <Label Grid.Row=\\\"0\\\" Text=\\\"{Binding Item.Name,StringFormat='{0}'}\\\" \\r\\n\" +\n        \"                        HorizontalTextAlignment=\\\"Center\\\" VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                        Margin=\\\"0,0,0,2\\\" HorizontalOptions=\\\"Center\\\" FontFamily=\\\"Helvetica\\\" FontAttributes=\\\"Bold\\\" FontSize=\\\"10\\\"/>\\r\\n\" +\n        \"                <BoxView Grid.Row=\\\"1\\\" VerticalOptions=\\\"Center\\\" HeightRequest=\\\"1\\\" />\\r\\n\" +\n        \"                <StackLayout Grid.Row=\\\"2\\\" Orientation=\\\"Vertical\\\"  VerticalOptions=\\\"Fill\\\" Spacing=\\\"0\\\" Padding=\\\"2\\\" Margin=\\\"0\\\">\\r\\n\" +\n        \"                    <Label Text=\\\"{x:Binding Item.Value,StringFormat='Literacy rate         : {0}%'}\\\" \\r\\n\" +\n        \"                            VerticalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Start\\\" FontFamily=\\\"Helvetica\\\" FontSize=\\\"10\\\" />\\r\\n\" +\n        \"                    <Label Text=\\\"{x:Binding Item.High,StringFormat='GDP growth rate : {0}'}\\\" \\r\\n\" +\n        \"                            VerticalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Start\\\" FontFamily=\\\"Helvetica\\\" FontSize=\\\"10\\\" />\\r\\n\" +\n        \"                    <Label Text=\\\"{x:Binding Item.Low,StringFormat='Population           : {0}B'}\\\" \\r\\n\" +\n        \"                            VerticalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Start\\\" FontFamily=\\\"Helvetica\\\" FontSize=\\\"10\\\" />\\r\\n\" +\n        \"                </StackLayout>\\r\\n\" +\n        \"            </Grid>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Bubble Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" RangePadding=\\\"Additional\\\" EdgeLabelsDrawingMode=\\\"Fit\\\">\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis LabelCreated=\\\"LabelCreated\\\" Minimum=\\\"0\\\" RangePadding=\\\"Additional\\\" EdgeLabelsDrawingMode=\\\"Fit\\\">\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:BubbleSeries EnableAnimation=\\\"True\\\" TooltipTemplate=\\\"{StaticResource Tooltiptemplate}\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding Bubble}\\\" \\r\\n\" +\n        \"                            EnableTooltip=\\\"True\\\" ShowDataLabels=\\\"False\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Exp\\\" YBindingPath=\\\"High\\\" SizeValuePath=\\\"Low\\\" Opacity=\\\"1\\\"/>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianCustomBubbleChartXamlCode =\n        \"<toolkit:SfCartesianChart VerticalOptions=\\\"FillAndExpand\\\" HorizontalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"CustomTooltiptemplate\\\">\\r\\n\" +\n        \"            <Grid RowDefinitions=\\\"auto, auto\\\">\\r\\n\" +\n        \"                <Label Grid.Row=\\\"0\\\" LineBreakMode=\\\"WordWrap\\\" MaximumWidthRequest=\\\"100\\\" \\r\\n\" +\n        \"                        Text=\\\"{x:Binding Item.Name,StringFormat='{0}'}\\\" HorizontalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                        HorizontalOptions=\\\"Center\\\" VerticalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                        FontFamily=\\\"Helvetica\\\" FontAttributes=\\\"Bold\\\" Margin=\\\"0,2,0,2\\\" FontSize=\\\"10\\\"/>\\r\\n\" +\n        \"                <BoxView Grid.Row=\\\"1\\\" VerticalOptions=\\\"Center\\\" HeightRequest=\\\"1\\\" />\\r\\n\" +\n        \"                <StackLayout Grid.Row=\\\"2\\\" Orientation=\\\"Vertical\\\" VerticalOptions=\\\"Fill\\\" Spacing=\\\"0\\\" Padding=\\\"3\\\" Margin=\\\"0\\\">\\r\\n\" +\n        \"                    <Label Text=\\\"{x:Binding Item.High,StringFormat='Budget   : ${0}M'}\\\" \\r\\n\" +\n        \"                            VerticalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Start\\\" \\r\\n\" +\n        \"                            FontFamily=\\\"Helvetica\\\" Margin=\\\"0,0,3,0\\\" FontSize=\\\"10\\\"/>\\r\\n\" +\n        \"                    <Label Text=\\\"{x:Binding Item.Low,StringFormat='Revenue : ${0}M'}\\\" \\r\\n\" +\n        \"                            VerticalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Start\\\" \\r\\n\" +\n        \"                            FontFamily=\\\"Helvetica\\\" Margin=\\\"0,0,3,0\\\" FontSize=\\\"10\\\"/>\\r\\n\" +\n        \"                </StackLayout>\\r\\n\" +\n        \"            </Grid>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Custom Bubble Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis RangePadding=\\\"Additional\\\" ShowMajorGridLines=\\\"False\\\" EdgeLabelsDrawingMode=\\\"Fit\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis LabelCreated=\\\"LabelCreated\\\" Minimum=\\\"0\\\" RangePadding=\\\"Additional\\\" EdgeLabelsDrawingMode=\\\"Fit\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:BubbleSeries EnableTooltip=\\\"True\\\" TooltipTemplate=\\\"{x:StaticResource CustomTooltiptemplate}\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding ComponentData, Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                            EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"False\\\"\\r\\n\" +\n        \"                            XBindingPath=\\\"Exp\\\" YBindingPath=\\\"High\\\" SizeValuePath=\\\"Low\\\" Opacity=\\\"1\\\">\\r\\n\" +\n        \"        <toolkit:BubbleSeries.Fill>\\r\\n\" +\n        \"            <RadialGradientBrush Center=\\\"0.35,0.35\\\" Radius=\\\"0.5\\\">\\r\\n\" +\n        \"                <GradientStop Offset=\\\"0\\\" Color=\\\"#EAEAEA\\\" />\\r\\n\" +\n        \"                <GradientStop Offset=\\\"1\\\" Color=\\\"#EC9329\\\" />\\r\\n\" +\n        \"            </RadialGradientBrush>\\r\\n\" +\n        \"        </toolkit:BubbleSeries.Fill>\\r\\n\" +\n        \"    </toolkit:BubbleSeries>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianBoxAndWhiskerChartXamlCode =\n        \"<toolkit:SfCartesianChart VerticalOptions=\\\"FillAndExpand\\\" HorizontalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Box And Whisker Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:BoxAndWhiskerSeries ItemsSource=\\\"{x:Binding Box}\\\"\\r\\n\" +\n        \"                                 XBindingPath=\\\"Name\\\" YBindingPath=\\\"Values\\\"\\r\\n\" +\n        \"                                 ShowOutlier=\\\"True\\\" ShowMedian=\\\"True\\\" \\r\\n\" +\n        \"                                 EnableTooltip=\\\"True\\\" \\r\\n\" +\n        \"                                 Fill=\\\"BlueViolet\\\" Stroke=\\\"White\\\">\\r\\n\" +\n        \"    </toolkit:BoxAndWhiskerSeries>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianHistogramChartXamlCode =\n        \"<VerticalStackLayout Spacing=\\\"10\\\">\\r\\n\" +\n        \"    <HorizontalStackLayout HorizontalOptions=\\\"End\\\">\\r\\n\" +\n        \"        <Label Text=\\\"Show distribution line\\\" VerticalTextAlignment=\\\"Center\\\"/>\\r\\n\" +\n        \"        <CheckBox x:Name=\\\"CheckBox\\\" IsChecked=\\\"True\\\" VerticalOptions=\\\"Start\\\" Margin=\\\"30,0,0,0\\\"/>\\r\\n\" +\n        \"    </HorizontalStackLayout>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart VerticalOptions=\\\"FillAndExpand\\\">\\r\\n\" +\n        \"        <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"            <Label Text=\\\"Histogram Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"        </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"            <toolkit:NumericalAxis />\\r\\n\" +\n        \"        </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"            <toolkit:NumericalAxis />\\r\\n\" +\n        \"        </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:HistogramSeries ItemsSource=\\\"{x:Binding Candle}\\\"\\r\\n\" +\n        \"                            XBindingPath=\\\"Value\\\" YBindingPath=\\\"Size\\\"\\r\\n\" +\n        \"                            ShowNormalDistributionCurve=\\\"{x:Binding Source={x:Reference CheckBox},Path=IsChecked}\\\"\\r\\n\" +\n        \"                            HistogramInterval=\\\"20\\\" StrokeWidth=\\\"1.5\\\" ShowDataLabels=\\\"True\\\"\\r\\n\" +\n        \"                            EnableTooltip=\\\"True\\\">\\r\\n\" +\n        \"            <toolkit:HistogramSeries.CurveStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeDashArray=\\\"12, 3, 3, 3\\\" StrokeWidth=\\\"2\\\"/>\\r\\n\" +\n        \"            </toolkit:HistogramSeries.CurveStyle>\\r\\n\" +\n        \"            <toolkit:HistogramSeries.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings UseSeriesPalette=\\\"False\\\">\\r\\n\" +\n        \"                    <toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                        <toolkit:ChartDataLabelStyle TextColor=\\\"Aqua\\\"/>\\r\\n\" +\n        \"                    </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"            </toolkit:HistogramSeries.DataLabelSettings>\\r\\n\" +\n        \"        </toolkit:HistogramSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart>\\r\\n\\r\\n\" +\n        \"    <core:SourceCodeExpander Code=\\\"{x:Binding CodeDescription, Source={x:Reference root}}\\\"  CodeType=\\\"Xaml\\\"/>\\r\\n\" +\n        \"</VerticalStackLayout>\";\n\n    [ObservableProperty]\n    string cartesianCandleChartXamlCode =\n        \"<VerticalStackLayout Spacing=\\\"10\\\">\\r\\n\" +\n        \"    <HorizontalStackLayout HorizontalOptions=\\\"End\\\">\\r\\n\" +\n        \"        <Label Text=\\\"Enable Solid Candles\\\" VerticalTextAlignment=\\\"Center\\\"/>\\r\\n\" +\n        \"        <CheckBox x:Name=\\\"CheckBox\\\" IsChecked=\\\"False\\\" VerticalOptions=\\\"Start\\\" Margin=\\\"30,0,0,0\\\" />\\r\\n\" +\n        \"    </HorizontalStackLayout>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\" Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"        <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"            <Label Text=\\\"Candle Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"        </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"            <toolkit:DateTimeAxis AutoScrollingMode=\\\"End\\\" AutoScrollingDeltaType=\\\"Months\\\" LabelCreated=\\\"LabelCreated\\\" ShowMajorGridLines=\\\"False\\\" >\\r\\n\" +\n        \"                <toolkit:DateTimeAxis.LabelStyle>\\r\\n\" +\n        \"                    <toolkit:ChartAxisLabelStyle LabelFormat=\\\"MMM-dd\\\"/>\\r\\n\" +\n        \"                </toolkit:DateTimeAxis.LabelStyle>\\r\\n\" +\n        \"            </toolkit:DateTimeAxis>\\r\\n\" +\n        \"        </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"            <toolkit:NumericalAxis ShowMinorGridLines=\\\"True\\\" Maximum=\\\"110\\\" IsVisible=\\\"True\\\">\\r\\n\" +\n        \"                <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                    <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"                </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                    <toolkit:ChartAxisLabelStyle LabelFormat=\\\"$0\\\"/>\\r\\n\" +\n        \"                </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            </toolkit:NumericalAxis>\\r\\n\" +\n        \"        </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:CandleSeries ItemsSource=\\\"{x:Binding ComponentData, Source={x:Reference root}}\\\"\\r\\n\" +\n        \"                        XBindingPath=\\\"Date\\\" Open=\\\"Value\\\" High=\\\"High\\\" Low=\\\"Low\\\" Close=\\\"Size\\\"\\r\\n\" +\n        \"                        EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\"\\r\\n\" +\n        \"                        EnableSolidCandle=\\\"{x:Binding Source={x:Reference CheckBox},Path=IsChecked}\\\">\\r\\n\" +\n        \"        </toolkit:CandleSeries>\\r\\n\" +\n        \"        <toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"            <toolkit:ChartZoomPanBehavior ZoomMode=\\\"X\\\" EnableDoubleTap=\\\"False\\\" EnablePanning=\\\"True\\\" EnablePinchZooming=\\\"True\\\"/>\\r\\n\" +\n        \"        </toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart>\\r\\n\" +\n        \"</VerticalStackLayout>\";\n\n    [ObservableProperty]\n    string cartesianOHLCChartXamlCode =\n        \"<toolkit:SfCartesianChart  HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"OHLC Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:DateTimeAxis  AutoScrollingMode=\\\"End\\\" AutoScrollingDeltaType=\\\"Months\\\" LabelCreated=\\\"LabelCreated\\\" ShowMajorGridLines=\\\"False\\\" >\\r\\n\" +\n        \"            <toolkit:DateTimeAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"MMM-dd\\\"/>\\r\\n\" +\n        \"            </toolkit:DateTimeAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:DateTimeAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMinorGridLines=\\\"True\\\" Maximum=\\\"110\\\" x:Name=\\\"YAxis\\\" IsVisible=\\\"True\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"$##.##\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:HiLoOpenCloseSeries ItemsSource=\\\"{x:Binding ComponentData, Source={x:Reference root}}\\\"\\r\\n\" +\n        \"                                    XBindingPath=\\\"Date\\\" Open=\\\"Value\\\" High=\\\"High\\\" Low=\\\"Low\\\" Close=\\\"Size\\\"\\r\\n\" +\n        \"                                    EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\"/>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"        <toolkit:ChartZoomPanBehavior x:Name=\\\"ZoomPan\\\" ZoomMode=\\\"X\\\" EnableDoubleTap=\\\"False\\\" EnablePanning=\\\"True\\\" EnablePinchZooming=\\\"True\\\"></toolkit:ChartZoomPanBehavior>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianWaterfallChartXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Waterfall Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes >\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"False\\\" LabelPlacement=\\\"BetweenTicks\\\">\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" >\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'B\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:WaterfallSeries ItemsSource=\\\"{x:Binding Waterfall}\\\" \\r\\n\" +\n        \"                                AllowAutoSum=\\\"True\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" SummaryBindingPath=\\\"IsSummary\\\"\\r\\n\" +\n        \"                                Fill=\\\"#95DB9C\\\" NegativePointsBrush=\\\"#B95375\\\" SummaryPointsBrush=\\\"#327DBE\\\" \\r\\n\" +\n        \"                                EnableAnimation=\\\"True\\\">\\r\\n\" +\n        \"        <toolkit:WaterfallSeries.DataLabelSettings>\\r\\n\" +\n        \"            <toolkit:CartesianDataLabelSettings >\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                    <toolkit:ChartDataLabelStyle LabelFormat=\\\"0'B\\\"/>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"            </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"        </toolkit:WaterfallSeries.DataLabelSettings>\\r\\n\" +\n        \"    </toolkit:WaterfallSeries>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianVerticalWaterfallChartXamlCode =\n        \"<toolkit:SfCartesianChart IsTransposed=\\\"True\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\" >\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Vertical Waterfall Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" ShowMajorGridLines=\\\"False\\\" >\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" IsVisible=\\\"False\\\">\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:WaterfallSeries ItemsSource=\\\"{x:Binding ComponentData, Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                                AllowAutoSum=\\\"True\\\" XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" SummaryBindingPath=\\\"IsSummary\\\" \\r\\n\" +\n        \"                                Fill=\\\"#95DB9C\\\" NegativePointsBrush=\\\"#B95375\\\" SummaryPointsBrush=\\\"#327DBE\\\" \\r\\n\" +\n        \"                                EnableAnimation=\\\"True\\\" EnableTooltip=\\\"True\\\">\\r\\n\" +\n        \"        <toolkit:WaterfallSeries.DataLabelSettings >\\r\\n\" +\n        \"            <toolkit:CartesianDataLabelSettings BarAlignment=\\\"Middle\\\">\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                    <toolkit:ChartDataLabelStyle LabelFormat=\\\"0'M\\\"/>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"            </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"        </toolkit:WaterfallSeries.DataLabelSettings>\\r\\n\" +\n        \"    </toolkit:WaterfallSeries>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianAppearanceChartXamlCode =\n        \"<toolkit:SfCartesianChart PaletteBrushes=\\\"{x:Binding ColdPalletBrushes}\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Simple Sample Chart\\\" FontSize=\\\"16\\\" \\r\\n\" +\n        \"               HorizontalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Fill\\\"  VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis>\\r\\n\" +\n        \"            <toolkit:CategoryAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Name\\\" TextColor=\\\"{x:AppThemeBinding Dark={x:StaticResource White}, Light={x:StaticResource Black}}\\\" />\\r\\n\" +\n        \"            </toolkit:CategoryAxis.Title>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle TextColor=\\\"{x:AppThemeBinding Dark={x:StaticResource White}, Light={x:StaticResource Black}}\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:ColumnSeries EnableAnimation=\\\"True\\\"\\r\\n\" +\n        \"                          ItemsSource=\\\"{x:Binding Column}\\\"\\r\\n\" +\n        \"                          SelectionBehavior=\\\"{x:StaticResource SfCartesianChartSelectionBrush}\\\"\\r\\n\" +\n        \"                          XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\" />\\r\\n\" +\n        \"    <toolkit:ColumnSeries EnableAnimation=\\\"True\\\"\\r\\n\" +\n        \"                          ItemsSource=\\\"{x:Binding Column}\\\"\\r\\n\" +\n        \"                          SelectionBehavior=\\\"{x:StaticResource SfCartesianChartSelectionBrush}\\\"\\r\\n\" +\n        \"                          XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" />\\r\\n\" +\n        \"    <toolkit:ColumnSeries EnableAnimation=\\\"True\\\"\\r\\n\" +\n        \"                          ItemsSource=\\\"{x:Binding Column}\\\"\\r\\n\" +\n        \"                          SelectionBehavior=\\\"{x:StaticResource SfCartesianChartSelectionBrush}\\\"\\r\\n\" +\n        \"                          XBindingPath=\\\"Name\\\" YBindingPath=\\\"Size\\\" />\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianAppearanceSeriesLinearXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Simple Sample Chart\\\" FontSize=\\\"16\\\" \\r\\n\" +\n        \"                HorizontalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Fill\\\"  VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis>\\r\\n\" +\n        \"            <toolkit:CategoryAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Name\\\" TextColor=\\\"{x:AppThemeBinding Dark={x:StaticResource White}, Light={x:StaticResource Black}}\\\" />\\r\\n\" +\n        \"            </toolkit:CategoryAxis.Title>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Exp\\\" TextColor=\\\"{x:AppThemeBinding Dark={x:StaticResource White}, Light={x:StaticResource Black}}\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:ColumnSeries EnableAnimation=\\\"True\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding Column}\\\"\\r\\n\" +\n        \"                            PaletteBrushes=\\\"{x:Binding ColdPalletBrushes}\\\"\\r\\n\" +\n        \"                            SelectionBehavior=\\\"{x:StaticResource SfCartesianChartSelectionBrush}\\\"\\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\" />\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianAppearanceSeriesLinearCSharpCode =\n        \"[ObservableProperty]\\r\\n\" +\n        \"List<Brush> coldPalletBrushes;\\r\\n\\r\\n\" +\n        \"List<Brush> CreateColdGradientPalletBrushes(int count)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    var allBrushes = new List<LinearGradientBrush>\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        new LinearGradientBrush\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            GradientStops = new GradientStopCollection\\r\\n\" +\n        \"            {\\r\\n\" +\n        \"                new GradientStop { Offset = 1, Color = Color.FromRgb(0, 255, 255) },\\r\\n\" +\n        \"                new GradientStop { Offset = 0, Color = Color.FromRgb(0, 191, 255) }\\r\\n\" +\n        \"            }\\r\\n\" +\n        \"        },\\r\\n\" +\n        \"        new LinearGradientBrush\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            GradientStops = new GradientStopCollection\\r\\n\" +\n        \"            {\\r\\n\" +\n        \"                new GradientStop { Offset = 1, Color = Color.FromRgb(0, 191, 255) },\\r\\n\" +\n        \"                new GradientStop { Offset = 0, Color = Color.FromRgb(0, 128, 255) }\\r\\n\" +\n        \"            }\\r\\n\" +\n        \"        },\\r\\n\" +\n        \"        new LinearGradientBrush\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            GradientStops = new GradientStopCollection\\r\\n\" +\n        \"            {\\r\\n\" +\n        \"                new GradientStop { Offset = 1, Color = Color.FromRgb(0, 128, 255) },\\r\\n\" +\n        \"                new GradientStop { Offset = 0, Color = Color.FromRgb(0, 64, 255) }\\r\\n\" +\n        \"            }\\r\\n\" +\n        \"        },\\r\\n\" +\n        \"        new LinearGradientBrush\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            GradientStops = new GradientStopCollection\\r\\n\" +\n        \"            {\\r\\n\" +\n        \"                new GradientStop { Offset = 1, Color = Color.FromRgb(0, 64, 255) },\\r\\n\" +\n        \"                new GradientStop { Offset = 0, Color = Color.FromRgb(0, 0, 255) }\\r\\n\" +\n        \"            }\\r\\n\" +\n        \"        },\\r\\n\" +\n        \"        new LinearGradientBrush\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            GradientStops = new GradientStopCollection\\r\\n\" +\n        \"            {\\r\\n\" +\n        \"                new GradientStop { Offset = 1, Color = Color.FromRgb(0, 0, 255) },\\r\\n\" +\n        \"                new GradientStop { Offset = 0, Color = Color.FromRgb(0, 0, 191) }\\r\\n\" +\n        \"            }\\r\\n\" +\n        \"        }\\r\\n\" +\n        \"    };\\r\\n\\r\\n\" +\n        \"    var brush = new List<Brush>();\\r\\n\" +\n        \"    allBrushes.Take(count).ToList().ForEach(item => { brush.Add(item); });\\r\\n\\r\\n\" +\n        \"    return brush;\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cartesianAppearanceSeriesGradientXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Simple Sample Chart\\\" FontSize=\\\"16\\\" \\r\\n\" +\n        \"                HorizontalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Fill\\\"  VerticalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis>\\r\\n\" +\n        \"            <toolkit:CategoryAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Name\\\" TextColor=\\\"{x:AppThemeBinding Dark={x:StaticResource White}, Light={x:StaticResource Black}}\\\" />\\r\\n\" +\n        \"            </toolkit:CategoryAxis.Title>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Exp\\\" TextColor=\\\"{x:AppThemeBinding Dark={x:StaticResource White}, Light={x:StaticResource Black}}\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:ColumnSeries EnableAnimation=\\\"True\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding Column}\\\"\\r\\n\" +\n        \"                            PaletteBrushes=\\\"{x:Binding RainbowPalletBrushes}\\\"\\r\\n\" +\n        \"                            SelectionBehavior=\\\"{x:StaticResource SfCartesianChartSelectionBrush}\\\"\\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\" />\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianAppearanceSeriesGradientCSharpCode =\n        \"[ObservableProperty]\\r\\n\" +\n        \"List<Brush> rainbowPalletBrushes;\\r\\n\\r\\n\" +\n        \"List<Brush> createRainbowGradientPalletBrushes(int count)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    var allBrushes = new List<RadialGradientBrush> \\r\\n\" +\n        \"    { \\r\\n\" +\n        \"        new RadialGradientBrush\\r\\n\" +\n        \"        { \\r\\n\" +\n        \"            GradientStops = new GradientStopCollection \\r\\n\" +\n        \"            { \\r\\n\" +\n        \"                new GradientStop { Offset = 1, Color = Color.FromRgb(255, 231, 199) }, \\r\\n\" +\n        \"                new GradientStop { Offset = 0, Color = Color.FromRgb(252, 182, 159) } \\r\\n\" +\n        \"            } \\r\\n\" +\n        \"        }, \\r\\n\" +\n        \"        new RadialGradientBrush\\r\\n\" +\n        \"        { \\r\\n\" +\n        \"            GradientStops = new GradientStopCollection \\r\\n\" +\n        \"            { \\r\\n\" +\n        \"                new GradientStop { Offset = 1, Color = Color.FromRgb(250, 221, 125) }, \\r\\n\" +\n        \"                new GradientStop { Offset = 0, Color = Color.FromRgb(252, 204, 45) } \\r\\n\" +\n        \"            } \\r\\n\" +\n        \"        }, \\r\\n\" +\n        \"        new RadialGradientBrush\\r\\n\" +\n        \"        { \\r\\n\" +\n        \"            GradientStops = new GradientStopCollection \\r\\n\" +\n        \"            { \\r\\n\" +\n        \"                new GradientStop { Offset = 1, Color = Color.FromRgb(255, 231, 199) }, \\r\\n\" +\n        \"                new GradientStop { Offset = 0, Color = Color.FromRgb(252, 182, 159) } \\r\\n\" +\n        \"            } \\r\\n\" +\n        \"        }, \\r\\n\" +\n        \"        new RadialGradientBrush\\r\\n\" +\n        \"        { \\r\\n\" +\n        \"            GradientStops = new GradientStopCollection \\r\\n\" +\n        \"            { \\r\\n\" +\n        \"                new GradientStop { Offset = 1, Color = Color.FromRgb(221, 214, 243) }, \\r\\n\" +\n        \"                new GradientStop { Offset = 0, Color = Color.FromRgb(250, 172, 168) } \\r\\n\" +\n        \"            } \\r\\n\" +\n        \"        }, \\r\\n\" +\n        \"        new RadialGradientBrush\\r\\n\" +\n        \"        { \\r\\n\" +\n        \"            GradientStops = new GradientStopCollection \\r\\n\" +\n        \"            { \\r\\n\" +\n        \"                new GradientStop { Offset = 1, Color = Color.FromRgb(168, 234, 238) }, \\r\\n\" +\n        \"                new GradientStop { Offset = 0, Color = Color.FromRgb(123, 176, 249) } \\r\\n\" +\n        \"            } \\r\\n\" +\n        \"        },\\r\\n\" +\n        \"    };\\r\\n\\r\\n\" +\n        \"    var brush = new List<Brush>();\\r\\n\" +\n        \"    allBrushes.Take(count).ToList().ForEach(item => { brush.Add(item); });\\r\\n\\r\\n\" +\n        \"    return brush;\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cartesianPlottingCustomizationXamlCode =\n        \"<toolkit:SfCartesianChart>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.PlotAreaBackgroundView>\\r\\n\" +\n        \"        <AbsoluteLayout>\\r\\n\" +\n        \"            <Label Text=\\\"Copyright @ 2001 - 2022 Syncfusion Inc\\\"\\r\\n\" +\n        \"                    FontSize=\\\"18\\\" AbsoluteLayout.LayoutBounds=\\\"1,1,-1,-1\\\"\\r\\n\" +\n        \"                    AbsoluteLayout.LayoutFlags=\\\"PositionProportional\\\"\\r\\n\" +\n        \"                    Opacity=\\\"0.4\\\"/>\\r\\n\" +\n        \"            <Label Text=\\\"CONFIDENTIAL\\\"\\r\\n\" +\n        \"                    Rotation=\\\"340\\\"\\r\\n\" +\n        \"                    FontSize=\\\"80\\\"\\r\\n\" +\n        \"                    FontAttributes=\\\"Bold,Italic\\\"\\r\\n\" +\n        \"                    TextColor=\\\"Gray\\\"\\r\\n\" +\n        \"                    Margin=\\\"10,0,0,0\\\"\\r\\n\" +\n        \"                    AbsoluteLayout.LayoutBounds=\\\"0.5,0.5,-1,-1\\\"\\r\\n\" +\n        \"                    AbsoluteLayout.LayoutFlags=\\\"PositionProportional\\\"\\r\\n\" +\n        \"                    Opacity=\\\"0.3\\\"/>\\r\\n\" +\n        \"        </AbsoluteLayout>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.PlotAreaBackgroundView>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianNumericalPlotBandXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Line Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"false\\\" Interval=\\\"2\\\" PlotOffsetStart=\\\"10\\\" PlotOffsetEnd=\\\"10\\\" AxisLineOffset=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"10\\\">\\r\\n\" +\n        \"                </toolkit:ChartAxisTickStyle>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"100\\\" Minimum=\\\"0\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0'%\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\">\\r\\n\" +\n        \"                </toolkit:ChartLineStyle>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.PlotBands>\\r\\n\" +\n        \"                <toolkit:NumericalPlotBandCollection>\\r\\n\" +\n        \"                    <toolkit:NumericalPlotBand Start=\\\"25\\\" End=\\\"40\\\" Fill=\\\"Orange\\\"/>\\r\\n\" +\n        \"                </toolkit:NumericalPlotBandCollection>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.PlotBands>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries Label=\\\"Line 1\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" StrokeWidth=\\\"1\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding FirstLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" \\r\\n\" +\n        \"                            ShowMarkers=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianDateTimePlotBandXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Line Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:DateTimeAxis>\\r\\n\" +\n        \"            <toolkit:DateTimeAxis.PlotBands>\\r\\n\" +\n        \"                <toolkit:DateTimePlotBandCollection>\\r\\n\" +\n        \"                    <toolkit:DateTimePlotBand Start=\\\"2022-05-04\\\" End=\\\"2022-05-06\\\" Fill=\\\"Orange\\\"/>\\r\\n\" +\n        \"                </toolkit:DateTimePlotBandCollection>\\r\\n\" +\n        \"            </toolkit:DateTimeAxis.PlotBands>\\r\\n\" +\n        \"        </toolkit:DateTimeAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"40\\\" Minimum=\\\"20\\\" Interval=\\\"5\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\">\\r\\n\" +\n        \"                </toolkit:ChartLineStyle>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries Label=\\\"Line 1\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" StrokeWidth=\\\"1\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding ComponentData,Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Date\\\" YBindingPath=\\\"High\\\" \\r\\n\" +\n        \"                            ShowMarkers=\\\"True\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianRecursivePlotBandXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Recursive Plot Band Column Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"false\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"100\\\" Minimum=\\\"0\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.PlotBands>\\r\\n\" +\n        \"                <toolkit:NumericalPlotBandCollection>\\r\\n\" +\n        \"                    <toolkit:NumericalPlotBand Start=\\\"0\\\" End=\\\"10\\\" IsRepeatable=\\\"True\\\"\\r\\n\" +\n        \"                                               RepeatUntil=\\\"100\\\" RepeatEvery=\\\"20\\\" Fill=\\\"LightGray\\\"/>\\r\\n\" +\n        \"                </toolkit:NumericalPlotBandCollection>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.PlotBands>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries EnableAnimation=\\\"True\\\" ShowMarkers=\\\"True\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding FirstLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianSegmentedPlotBandXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Segmented Plot Band Column Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"false\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"100\\\" Minimum=\\\"0\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.PlotBands>\\r\\n\" +\n        \"                <toolkit:NumericalPlotBandCollection>\\r\\n\" +\n        \"                    <toolkit:NumericalPlotBand Start=\\\"0\\\" End=\\\"25\\\" AssociatedAxisEnd=\\\"0.5\\\"\\r\\n\" +\n        \"                                               Fill=\\\"#B300E190\\\" Text=\\\"Low\\\"/>\\r\\n\" +\n        \"                    <toolkit:NumericalPlotBand Start=\\\"35\\\" End=\\\"65\\\" AssociatedAxisStart=\\\"2.5\\\" AssociatedAxisEnd=\\\"4\\\"\\r\\n\" +\n        \"                                               Fill=\\\"#B3FCD404\\\" Text=\\\"Average\\\"/>\\r\\n\" +\n        \"                    <toolkit:NumericalPlotBand Start=\\\"75\\\" End=\\\"100\\\" AssociatedAxisStart=\\\"5.5\\\"\\r\\n\" +\n        \"                                                Fill=\\\"#B3FF4E4E\\\" Text=\\\"High\\\"/>\\r\\n\" +\n        \"                </toolkit:NumericalPlotBandCollection>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.PlotBands>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries EnableAnimation=\\\"True\\\" ShowMarkers=\\\"True\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding FirstLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianPlotLineXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Plot Line Column Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"false\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"100\\\" Minimum=\\\"0\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.PlotBands>\\r\\n\" +\n        \"                <toolkit:NumericalPlotBandCollection>\\r\\n\" +\n        \"                    <toolkit:NumericalPlotBand Start=\\\"20\\\" End=\\\"20\\\"\\r\\n\" +\n        \"                                               Fill=\\\"#B300E190\\\" Stroke=\\\"#B300E190\\\"\\r\\n\" +\n        \"                                               StrokeWidth=\\\"2\\\"/>\\r\\n\" +\n        \"                    <toolkit:NumericalPlotBand Start=\\\"40\\\" End=\\\"40\\\" \\r\\n\" +\n        \"                                               Fill=\\\"#FCD404\\\" Stroke=\\\"#FCD404\\\"\\r\\n\" +\n        \"                                               StrokeWidth=\\\"2\\\"/>\\r\\n\" +\n        \"                    <toolkit:NumericalPlotBand Start=\\\"70\\\" End=\\\"70\\\" \\r\\n\" +\n        \"                                               Fill=\\\"#FF4E4E\\\" Stroke=\\\"#FF4E4E\\\"\\r\\n\" +\n        \"                                               StrokeWidth=\\\"2\\\"/>\\r\\n\" +\n        \"                </toolkit:NumericalPlotBandCollection>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.PlotBands>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries EnableAnimation=\\\"True\\\" ShowMarkers=\\\"True\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding FirstLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianDataLabelAlignmentXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Data Label Column Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"false\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"false\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0 Exp\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle Stroke=\\\"Transparent\\\" StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"  \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding ComponentData,Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\">\\r\\n\" +\n        \"            <toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings BarAlignment=\\\"Middle\\\" LabelPlacement=\\\"Center\\\">\\r\\n\" +\n        \"                    <toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                        <toolkit:ChartDataLabelStyle FontSize=\\\"12\\\" LabelFormat='0 Exp'/>\\r\\n\" +\n        \"                    </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"            </toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"        </toolkit:ColumnSeries>\\r\\n\" +\n        \"        <toolkit:ColumnSeries EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"  \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding ComponentData,Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\">\\r\\n\" +\n        \"            <toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings BarAlignment=\\\"Top\\\" LabelPlacement=\\\"Outer\\\">\\r\\n\" +\n        \"                    <toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                        <toolkit:ChartDataLabelStyle FontSize=\\\"12\\\" LabelFormat='0 Exp'/>\\r\\n\" +\n        \"                    </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"            </toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"        </toolkit:ColumnSeries>\\r\\n\" +\n        \"        <toolkit:ColumnSeries EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"  \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding Column}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Size\\\">\\r\\n\" +\n        \"            <toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings BarAlignment=\\\"Top\\\" LabelPlacement=\\\"Inner\\\">\\r\\n\" +\n        \"                    <toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                        <toolkit:ChartDataLabelStyle FontSize=\\\"12\\\" LabelFormat='0 Exp'/>\\r\\n\" +\n        \"                    </toolkit:CartesianDataLabelSettings.LabelStyle>\\r\\n\" +\n        \"                </toolkit:CartesianDataLabelSettings>\\r\\n\" +\n        \"            </toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"        </toolkit:ColumnSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianDataLabelContextXamlCode =\n        \"<toolkit:SfCartesianChart IsTransposed=\\\"True\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Data Label with Context Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"false\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"false\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0 Exp\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle Stroke=\\\"Transparent\\\" StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"  \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding Column}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\"\\r\\n\" +\n        \"                              LabelContext=\\\"Percentage\\\">\\r\\n\" +\n        \"            <toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings BarAlignment=\\\"Top\\\" LabelPlacement=\\\"Inner\\\"/>\\r\\n\" +\n        \"            </toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"        </toolkit:ColumnSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianDataLabelTemplateXamlCode =\n        \"<toolkit:SfCartesianChart IsTransposed=\\\"True\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"LabelTemplate\\\">\\r\\n\" +\n        \"            <HorizontalStackLayout Spacing=\\\"5\\\" Margin=\\\"10, 0\\\">\\r\\n\" +\n        \"                <Ellipse Fill=\\\"Aqua\\\" Stroke=\\\"Aqua\\\" HeightRequest=\\\"15\\\" WidthRequest=\\\"15\\\"/>\\r\\n\" +\n        \"                <Label Text=\\\"{x:Binding Item.Exp}\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"15\\\"/>\\r\\n\" +\n        \"            </HorizontalStackLayout>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Data Label with Label Template Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"false\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"false\\\" Interval=\\\"20\\\" Maximum=\\\"120\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0 Exp\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle Stroke=\\\"Transparent\\\" StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"  \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding Column}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\"\\r\\n\" +\n        \"                              LabelTemplate=\\\"{StaticResource LabelTemplate}\\\">\\r\\n\" +\n        \"            <toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"                <toolkit:CartesianDataLabelSettings BarAlignment=\\\"Top\\\" LabelPlacement=\\\"Outer\\\"/>\\r\\n\" +\n        \"            </toolkit:ColumnSeries.DataLabelSettings>\\r\\n\" +\n        \"        </toolkit:ColumnSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianLegendXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\" \\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend Placement=\\\"Top\\\">\\r\\n\" +\n        \"            <toolkit:ChartLegend.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartLegendLabelStyle TextColor=\\\"#108dda\\\" Margin=\\\"5\\\" FontSize=\\\"18\\\" FontAttributes=\\\"Bold\\\"/>\\r\\n\" +\n        \"            </toolkit:ChartLegend.LabelStyle>\\r\\n\" +\n        \"        </toolkit:ChartLegend>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Legend Sample Line Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"false\\\"  PlotOffsetStart=\\\"10\\\" PlotOffsetEnd=\\\"10\\\" AxisLineOffset=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"10\\\"/>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"0\\\" Minimum=\\\"120\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries EnableTooltip=\\\"True\\\" Label=\\\"Line 1\\\" StrokeWidth=\\\"1\\\" LegendIcon=\\\"Diamond\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding FirstLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:LineSeries EnableTooltip=\\\"True\\\" Label=\\\"Line 2\\\" StrokeWidth=\\\"1\\\" LegendIcon=\\\"Hexagon\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding SecondLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:LineSeries EnableTooltip=\\\"True\\\" Label=\\\"Line 3\\\" StrokeWidth=\\\"1\\\" LegendIcon=\\\"Pentagon\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding ThirdLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianItemLayoutLegendXamlCode =\n        \"<toolkit:SfCartesianChart x:Name=\\\"ItemLayoutChart\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\" \\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend Placement=\\\"Bottom\\\">\\r\\n\" +\n        \"            <toolkit:ChartLegend.ItemsLayout>\\r\\n\" +\n        \"                <HorizontalStackLayout HorizontalOptions=\\\"Center\\\" VerticalOptions=\\\"Center\\\">\\r\\n\" +\n        \"                    <FlexLayout WidthRequest=\\\"{Binding Width, Source={x:Reference ItemLayoutChart}}\\\"/>\\r\\n\" +\n        \"                </HorizontalStackLayout>\\r\\n\" +\n        \"            </toolkit:ChartLegend.ItemsLayout>\\r\\n\" +\n        \"        </toolkit:ChartLegend>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Item Layout Legend Sample Line Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"false\\\"  PlotOffsetStart=\\\"10\\\" PlotOffsetEnd=\\\"10\\\" AxisLineOffset=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"10\\\"/>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"0\\\" Minimum=\\\"120\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries EnableTooltip=\\\"True\\\" Label=\\\"Line 1\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding FirstLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:LineSeries EnableTooltip=\\\"True\\\" Label=\\\"Line 2\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding SecondLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:LineSeries EnableTooltip=\\\"True\\\" Label=\\\"Line 3\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding ThirdLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianItemTemplateLegendXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\" \\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"LegendTemplate\\\">\\r\\n\" +\n        \"            <Grid ColumnDefinitions=\\\"Auto,Auto\\\">\\r\\n\" +\n        \"                <HorizontalStackLayout Grid.Column=\\\"0\\\" WidthRequest=\\\"30\\\" HeightRequest=\\\"30\\\">\\r\\n\" +\n        \"                    <Path Scale=\\\"0.75\\\" TranslationX=\\\"0.5\\\" HorizontalOptions=\\\"Center\\\" VerticalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                          Data=\\\"F1 M 19.482422 10 C 19.482422 12.591146 18.549805 14.791667 16.68457 16.601562 C 14.819335 18.411459 12.58789 19.316406 9.990234 19.316406 C 7.392578 19.316406 5.16276 18.411459 3.300781 16.601562 C 1.438802 14.791667 0.507812 12.591146 0.507812 10 C 0.507812 7.408854 1.442057 5.201822 3.310547 3.378906 C 5.166015 1.575521 7.392578 0.673829 9.990234 0.673828 C 12.58789 0.673829 14.814452 1.575521 16.669922 3.378906 C 18.544922 5.201822 19.482422 7.408854 19.482422 10 Z M 18.964844 10 C 18.964844 7.597656 18.037109 5.501303 16.181641 3.710938 L 15.869141 4.248047 L 14.365234 3.847656 L 13.212891 4.169922 L 12.65625 5.673828 L 11.425781 5.996094 L 11.259766 7.265625 L 10.751953 7.03125 L 10.351562 8.105469 L 10.712891 10.048828 L 10.273438 10.878906 L 9.433594 10.917969 L 9.638672 12.03125 C 8.994141 11.666667 8.238932 11.149089 7.373047 10.478516 L 5.908203 10.341797 C 5.745442 10.257162 5.481771 10.139975 5.117188 9.990234 C 4.6875 10.54362 4.127604 11.158854 3.4375 11.835938 L 3.398438 12.548828 L 3.076172 13.203125 L 2.714844 13.173828 L 1.494141 10.722656 L 1.533203 10.009766 L 1.025391 9.980469 L 1.025391 10 C 1.025391 12.447916 1.910807 14.53125 3.681641 16.25 C 5.432942 17.949219 7.535807 18.798828 9.990234 18.798828 C 12.444661 18.798828 14.554036 17.944336 16.318359 16.235352 C 18.082682 14.526367 18.964844 12.447916 18.964844 10 Z M 13.183594 6.484375 L 12.695312 6.787109 L 12.294922 6.787109 L 12.695312 6.113281 L 12.96875 6.162109 Z M 12.451172 7.226562 C 12.262369 7.65625 11.923828 8.235678 11.435547 8.964844 L 11.201172 9.013672 C 11.539713 8.082683 11.865234 7.434896 12.177734 7.070312 Z M 14.042969 11.337891 L 13.789062 11.982422 L 13.173828 11.923828 Z M 14.541016 12.880859 L 14.160156 13.027344 L 14.423828 12.470703 Z M 17.392578 14.21875 L 17.089844 14.902344 C 16.634113 15.195312 16.168619 15.504558 15.693359 15.830078 L 15.380859 16.542969 L 15.097656 16.748047 L 14.873047 16.40625 C 15.0944 15.917969 15.31901 15.566406 15.546875 15.351562 L 16.210938 15.058594 C 16.373697 14.641927 16.5625 14.30013 16.777344 14.033203 L 17.060547 14.462891 Z M 12.177734 12.626953 L 11.416016 12.197266 L 12.138672 11.972656 Z M 10.996094 12.304688 L 10.712891 12.705078 L 10.205078 12.021484 Z M 14.677734 14.814453 C 14.580077 15.426433 14.143879 16.113281 13.369141 16.875 L 12.890625 16.914062 L 11.259766 16.240234 L 9.716797 16.318359 C 9.723307 15.960286 9.576822 15.537109 9.277344 15.048828 C 9.375 14.593099 9.638672 14.117839 10.068359 13.623047 C 10.992838 13.727214 11.774088 13.59375 12.412109 13.222656 L 13.095703 13.779297 L 13.486328 12.744141 C 13.707682 13.447266 14.104817 14.13737 14.677734 14.814453 Z M 9.492188 12.294922 L 9.199219 12.548828 L 8.837891 12.333984 Z M 13.818359 17.314453 L 13.603516 17.587891 L 12.958984 17.548828 L 13.447266 17.148438 Z M 5.214844 13.349609 C 4.817708 13.714193 4.420573 14.003906 4.023438 14.21875 L 3.544922 14.003906 L 4.384766 13.134766 Z \\\"\\r\\n\" +\n        \"                          Fill=\\\"{x:Binding IconBrush}\\\" Stroke=\\\"{x:Binding IconBrush}\\\"/>\\r\\n\" +\n        \"                </HorizontalStackLayout>\\r\\n\" +\n        \"                <Label Grid.Column=\\\"1\\\" FontSize=\\\"13\\\" \\r\\n\" +\n        \"                       Text=\\\"{x:Binding Item.Label}\\\"\\r\\n\" +\n        \"                       VerticalTextAlignment=\\\"Center\\\"\\r\\n\" +\n        \"                       HorizontalOptions=\\\"Center\\\"\\r\\n\" +\n        \"                       HorizontalTextAlignment=\\\"Start\\\"/>\\r\\n\" +\n        \"            </Grid>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ItemTemplate=\\\"{x:StaticResource LegendTemplate}\\\" Placement=\\\"Top\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Item Template Legend Sample Line Chart\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"false\\\" PlotOffsetStart=\\\"10\\\" PlotOffsetEnd=\\\"10\\\" AxisLineOffset=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"10\\\"/>\\r\\n\" +\n        \"            </toolkit:CategoryAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"0\\\" Minimum=\\\"120\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries EnableTooltip=\\\"True\\\" Label=\\\"Line 1\\\" StrokeWidth=\\\"1\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding FirstLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:LineSeries EnableTooltip=\\\"True\\\" Label=\\\"Line 2\\\" StrokeWidth=\\\"1\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding SecondLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\"/>\\r\\n\" +\n        \"        <toolkit:LineSeries EnableTooltip=\\\"True\\\" Label=\\\"Line 3\\\" StrokeWidth=\\\"1\\\" \\r\\n\" +\n        \"                            ItemsSource=\\\"{x:Binding ThirdLine}\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianSelectionXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Selection Column Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"false\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"false\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0 Exp\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle Stroke=\\\"Transparent\\\" StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries EnableAnimation=\\\"True\\\" ShowDataLabels=\\\"True\\\"  \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding ComponentData,Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\">\\r\\n\" +\n        \"            <toolkit:ColumnSeries.SelectionBehavior>\\r\\n\" +\n        \"                <toolkit:DataPointSelectionBehavior x:Name=\\\"DataPointSelection\\\" SelectionBrush=\\\"#2A9AF3\\\" SelectedIndex=\\\"6\\\" Type=\\\"SingleDeselect\\\"/>\\r\\n\" +\n        \"            </toolkit:ColumnSeries.SelectionBehavior>\\r\\n\" +\n        \"        </toolkit:ColumnSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianSelectionCSharpCode =\n        \"private void CheckedChanged(object sender, CheckedChangedEventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    DataPointSelection.Type = e.Value ? ChartSelectionType.Multiple : ChartSelectionType.SingleDeselect;\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cartesianSeriesSelectionXamlCode =\n        \"<toolkit:SfCartesianChart x:Name=\\\"SelectionChart\\\" HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Selection Column Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.SelectionBehavior>\\r\\n\" +\n        \"        <toolkit:SeriesSelectionBehavior x:Name =\\\"SeriesSelection\\\" SelectionBrush=\\\"{x:Null}\\\" SelectionChanging=\\\"SelectionChanging\\\" Type=\\\"SingleDeselect\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.SelectionBehavior>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis LabelPlacement=\\\"BetweenTicks\\\" IsVisible=\\\"true\\\" ShowMajorGridLines=\\\"false\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"True\\\" ShowMinorGridLines=\\\"false\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisLabelStyle LabelFormat=\\\"0 Exp\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.LabelStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle Stroke=\\\"Transparent\\\" StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MinorTickStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries EnableAnimation=\\\"True\\\" Fill=\\\"#8000BDAE\\\"\\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding ComponentData,Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\"/>\\r\\n\" +\n        \"        <toolkit:ColumnSeries EnableAnimation=\\\"True\\\" Fill=\\\"#80404041\\\" \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding ComponentData,Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\"/>\\r\\n\" +\n        \"        <toolkit:ColumnSeries EnableAnimation=\\\"True\\\" Fill=\\\"#80357CD2\\\"\\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding ComponentData,Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Size\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianSeriesSelectionCSharpCode =\n        \"List<int> SelectedIndexes = new List<int>();\\r\\n\\r\\n\" +\n        \"private void CheckedChanged(object sender, CheckedChangedEventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    SeriesSelection.Type = e.Value ? ChartSelectionType.Multiple : ChartSelectionType.SingleDeselect;\\r\\n\" +\n        \"    SelectedIndexes.Clear();\\r\\n\\r\\n\" +\n        \"    var fadedColors = new List<SolidColorBrush> \\r\\n\" +\n        \"    { \\r\\n\" +\n        \"        new SolidColorBrush(Color.FromArgb(\\\"#8000BDAE\\\")), \\r\\n\" +\n        \"        new SolidColorBrush(Color.FromArgb(\\\"#80404041\\\")), \\r\\n\" +\n        \"        new SolidColorBrush(Color.FromArgb(\\\"#80357CD2\\\")) \\r\\n\" +\n        \"    };\\r\\n\\r\\n\" +\n        \"    foreach (var series in SelectionChart.Series)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        series.Fill = fadedColors[SelectionChart.Series.IndexOf(series)];\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"private void SelectionChanging(object sender, ChartSelectionChangingEventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    var defaultColors = new List<SolidColorBrush>\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        new SolidColorBrush(Color.FromArgb(\\\"#00BDAE\\\")),\\r\\n\" +\n        \"        new SolidColorBrush(Color.FromArgb(\\\"#404041\\\")),\\r\\n\" +\n        \"        new SolidColorBrush(Color.FromArgb(\\\"#357CD2\\\"))\\r\\n\" +\n        \"    };\\r\\n\\r\\n\" +\n        \"    var fadedColors = new List<SolidColorBrush>\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        new SolidColorBrush(Color.FromArgb(\\\"#8000BDAE\\\")),\\r\\n\" +\n        \"        new SolidColorBrush(Color.FromArgb(\\\"#80404041\\\")),\\r\\n\" +\n        \"        new SolidColorBrush(Color.FromArgb(\\\"#80357CD2\\\"))\\r\\n\" +\n        \"    };\\r\\n\\r\\n\" +\n        \"    // Create a HashSet of all selected indexes including old and new indexes.\\r\\n\" +\n        \"    var selectedIndexes = new HashSet<int>(SelectedIndexes);\\r\\n\\r\\n\" +\n        \"    // Add new indexes to the selected set.\\r\\n\" +\n        \"    foreach (var index in e.NewIndexes)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        selectedIndexes.Add(index);\\r\\n\" +\n        \"        if (!SelectedIndexes.Contains(index))\\r\\n\" +\n        \"            SelectedIndexes.Add(index);\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    // Remove old indexes from the selected set.\\r\\n\" +\n        \"    foreach (var index in e.OldIndexes)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        selectedIndexes.Remove(index);\\r\\n\" +\n        \"        if (SelectedIndexes.Contains(index))\\r\\n\" +\n        \"            SelectedIndexes.Remove(index);\\r\\n\" +\n        \"    }\\r\\n\\r\\n\" +\n        \"    // Set the fill color based on whether the index is in the selected set.\\r\\n\" +\n        \"    foreach (var series in SelectionChart.Series)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        int index = SelectionChart.Series.IndexOf(series);\\r\\n\" +\n        \"        series.Fill = selectedIndexes.Contains(index) ? defaultColors[index] : fadedColors[index];\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cartesianTooltipXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Tooltip Column Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.TooltipBehavior>\\r\\n\" +\n        \"        <toolkit:ChartTooltipBehavior Duration=\\\"500\\\" TextColor=\\\"Aqua\\\" FontSize=\\\"16\\\" Background=\\\"Gray\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.TooltipBehavior>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"False\\\" LabelPlacement=\\\"BetweenTicks\\\">\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"True\\\" Minimum=\\\"0\\\">\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries Label=\\\"Aqua\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" Width=\\\"0.8\\\" Spacing=\\\"0.2\\\" \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding Column}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"        <toolkit:ColumnSeries Label=\\\"Gray\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" Width=\\\"0.8\\\" Spacing=\\\"0.2\\\" \\r\\n\" +\n        \"                              ItemsSource=\\\"{x:Binding Column}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" LegendIcon=\\\"SeriesType\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianCustomTooltipXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"TemplateColumn\\\">\\r\\n\" +\n        \"            <VerticalStackLayout Spacing=\\\"5\\\">\\r\\n\" +\n        \"                <HorizontalStackLayout VerticalOptions=\\\"Fill\\\" HorizontalOptions=\\\"Center\\\" Spacing=\\\"10\\\">\\r\\n\" +\n        \"                    <Ellipse TranslationY=\\\"-1\\\" Stroke=\\\"Aqua\\\" StrokeThickness=\\\"2\\\" HeightRequest=\\\"10\\\" WidthRequest=\\\"10\\\" />\\r\\n\" +\n        \"                    <Label Text=\\\"{x:Binding Item.Name}\\\" HorizontalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Center\\\" \\r\\n\" +\n        \"                           VerticalTextAlignment=\\\"Center\\\" FontAttributes=\\\"Bold\\\" \\r\\n\" +\n        \"                           FontFamily=\\\"Helvetica\\\" Margin=\\\"0,2\\\" FontSize=\\\"12\\\"/>\\r\\n\" +\n        \"                </HorizontalStackLayout>\\r\\n\" +\n        \"                <BoxView HeightRequest=\\\"1\\\" WidthRequest=\\\"100\\\" Color=\\\"White\\\" />\\r\\n\" +\n        \"                <HorizontalStackLayout VerticalOptions=\\\"Fill\\\" >\\r\\n\" +\n        \"                    <Label Text=\\\"{x:Binding Item.Value, StringFormat='Value:  {0}M'}\\\"  \\r\\n\" +\n        \"                           VerticalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"Start\\\" \\r\\n\" +\n        \"                           FontFamily=\\\"Helvetica\\\" FontSize=\\\"12\\\" />\\r\\n\" +\n        \"                    <Label Text=\\\"{x:Binding Item.Exp, StringFormat=', Exp:  {0}M'}\\\" \\r\\n\" +\n        \"                           VerticalTextAlignment=\\\"Center\\\" HorizontalOptions=\\\"End\\\" \\r\\n\" +\n        \"                           FontFamily=\\\"Helvetica\\\" FontSize=\\\"12\\\" />\\r\\n\" +\n        \"                </HorizontalStackLayout>\\r\\n\" +\n        \"            </VerticalStackLayout>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Custom Tooltip Column Sample Chart\\\" Margin=\\\"0,0,0,5\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:CategoryAxis ShowMajorGridLines=\\\"False\\\" LabelPlacement=\\\"BetweenTicks\\\">\\r\\n\" +\n        \"        </toolkit:CategoryAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"True\\\" Minimum=\\\"0\\\">\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ColumnSeries Label=\\\"Aqua\\\" EnableAnimation=\\\"True\\\" Width=\\\"0.8\\\" Spacing=\\\"0.2\\\" \\r\\n\" +\n        \"                              ItemsSource=\\\"{Binding Column}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Exp\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                              EnableTooltip=\\\"True\\\" TooltipTemplate=\\\"{x:StaticResource TemplateColumn}\\\"/>\\r\\n\" +\n        \"        <toolkit:ColumnSeries Label=\\\"Gray\\\" EnableAnimation=\\\"True\\\" Width=\\\"0.8\\\" Spacing=\\\"0.2\\\" \\r\\n\" +\n        \"                              ItemsSource=\\\"{Binding Column}\\\" \\r\\n\" +\n        \"                              XBindingPath=\\\"Name\\\" YBindingPath=\\\"Value\\\" LegendIcon=\\\"SeriesType\\\"\\r\\n\" +\n        \"                              EnableTooltip=\\\"True\\\" TooltipTemplate=\\\"{x:StaticResource TemplateColumn}\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianTrackballXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\" Placement=\\\"Top\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Trackball Line Sample Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.TrackballBehavior>\\r\\n\" +\n        \"        <toolkit:ChartTrackballBehavior x:Name=\\\"Trackball\\\" ShowLine=\\\"True\\\" ShowMarkers=\\\"True\\\" DisplayMode=\\\"FloatAllPoints\\\" ActivationMode=\\\"TouchMove\\\">\\r\\n\" +\n        \"            <toolkit:ChartTrackballBehavior.LabelStyle>\\r\\n\" +\n        \"                <toolkit:ChartLabelStyle Background=\\\"#383838\\\" Stroke=\\\"#383838\\\" \\r\\n\" +\n        \"                                         FontSize=\\\"15\\\" TextColor=\\\"#ff8900\\\"\\r\\n\" +\n        \"                                         CornerRadius=\\\"4\\\" StrokeWidth=\\\"1\\\" />\\r\\n\" +\n        \"            </toolkit:ChartTrackballBehavior.LabelStyle>\\r\\n\" +\n        \"            <toolkit:ChartTrackballBehavior.LineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle Stroke=\\\"White\\\" StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:ChartTrackballBehavior.LineStyle>\\r\\n\" +\n        \"            <toolkit:ChartTrackballBehavior.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings Height=\\\"10\\\" Width=\\\"10\\\" Fill=\\\"#ff8900\\\"/>\\r\\n\" +\n        \"            </toolkit:ChartTrackballBehavior.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:ChartTrackballBehavior>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.TrackballBehavior>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:DateTimeAxis IntervalType=\\\"Years\\\" Interval=\\\"1\\\" EdgeLabelsVisibilityMode=\\\"Visible\\\" ShowMajorGridLines=\\\"false\\\"\\r\\n\" +\n        \"                              PlotOffsetStart=\\\"10\\\" PlotOffsetEnd=\\\"10\\\" AxisLineOffset=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:DateTimeAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"10\\\"/>\\r\\n\" +\n        \"            </toolkit:DateTimeAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:DateTimeAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"120\\\" Minimum=\\\"0\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries ItemsSource=\\\"{x:Binding FirstLine}\\\" Label=\\\"Line 1\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Date\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"1\\\">\\r\\n\" +\n        \"            <toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings Type=\\\"Circle\\\" Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:LineSeries>\\r\\n\" +\n        \"        <toolkit:LineSeries ItemsSource=\\\"{x:Binding SecondLine}\\\" Label=\\\"Line 2\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Date\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"1\\\">\\r\\n\" +\n        \"            <toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings Type=\\\"Circle\\\" Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:LineSeries>\\r\\n\" +\n        \"        <toolkit:LineSeries ItemsSource=\\\"{x:Binding ThirdLine}\\\" Label=\\\"Line 3\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Date\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"1\\\">\\r\\n\" +\n        \"            <toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings Type=\\\"Circle\\\" Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:LineSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianTrackballSeriesLabelTemplateXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"FillAndExpand\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"TrackballLabelTemplate\\\">\\r\\n\" +\n        \"            <HorizontalStackLayout Spacing=\\\"5\\\">\\r\\n\" +\n        \"                <Ellipse TranslationY=\\\"-1\\\" Fill=\\\"{x:Binding Series.MarkerSettings.Stroke}\\\" StrokeThickness=\\\"2\\\" HeightRequest=\\\"10\\\" WidthRequest=\\\"10\\\" />\\r\\n\" +\n        \"                <Label Text=\\\"{x:Binding Series.Label, StringFormat='{0}:'}\\\" FontSize=\\\"12\\\"  HorizontalOptions=\\\"Center\\\" />\\r\\n\" +\n        \"                <Label Text=\\\"{x:Binding Label,StringFormat='{0}Exp'}\\\" FontSize=\\\"12\\\" Margin=\\\"0,0,2,0\\\" HorizontalOptions=\\\"Center\\\"/>\\r\\n\" +\n        \"            </HorizontalStackLayout>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend Placement=\\\"Top\\\" ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title >\\r\\n\" +\n        \"        <Label Text=\\\"Trackball Line Sample Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.TrackballBehavior>\\r\\n\" +\n        \"        <toolkit:ChartTrackballBehavior x:Name=\\\"Trackball\\\" ShowLine=\\\"True\\\" ShowMarkers=\\\"True\\\" DisplayMode=\\\"FloatAllPoints\\\" ActivationMode=\\\"TouchMove\\\">\\r\\n\" +\n        \"            <toolkit:ChartTrackballBehavior.LineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"1.5\\\"/>\\r\\n\" +\n        \"            </toolkit:ChartTrackballBehavior.LineStyle>\\r\\n\" +\n        \"            <toolkit:ChartTrackballBehavior.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:ChartTrackballBehavior.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:ChartTrackballBehavior>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.TrackballBehavior>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:DateTimeAxis IntervalType=\\\"Years\\\" Interval=\\\"1\\\" EdgeLabelsVisibilityMode=\\\"Visible\\\" ShowMajorGridLines=\\\"false\\\"\\r\\n\" +\n        \"                              PlotOffsetStart=\\\"10\\\" PlotOffsetEnd=\\\"10\\\" AxisLineOffset=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:DateTimeAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"10\\\"/>\\r\\n\" +\n        \"            </toolkit:DateTimeAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:DateTimeAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"120\\\" Minimum=\\\"0\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries ItemsSource=\\\"{x:Binding FirstLineComponentData, Source={x:Reference root}}\\\" Label=\\\"Line 1\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Date\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                            TrackballLabelTemplate=\\\"{x:StaticResource TrackballLabelTemplate}\\\">\\r\\n\" +\n        \"            <toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings Type=\\\"Circle\\\" Width=\\\"10\\\" Height=\\\"10\\\" \\r\\n\" +\n        \"                                             StrokeWidth=\\\"1\\\" Stroke=\\\"#8000BDAE\\\"/>\\r\\n\" +\n        \"            </toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:LineSeries>\\r\\n\" +\n        \"        <toolkit:LineSeries ItemsSource=\\\"{x:Binding SecondLineComponentData, Source={x:Reference root}}\\\" Label=\\\"Line 2\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Date\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                            TrackballLabelTemplate=\\\"{x:StaticResource TrackballLabelTemplate}\\\">\\r\\n\" +\n        \"            <toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings Type=\\\"Circle\\\" Width=\\\"10\\\" Height=\\\"10\\\" \\r\\n\" +\n        \"                                             StrokeWidth=\\\"1\\\" Stroke=\\\"#80404041\\\"/>\\r\\n\" +\n        \"            </toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:LineSeries>\\r\\n\" +\n        \"        <toolkit:LineSeries ItemsSource=\\\"{x:Binding ThirdLineComponentData, Source={x:Reference root}}\\\" Label=\\\"Line 3\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Date\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"1\\\"\\r\\n\" +\n        \"                            TrackballLabelTemplate=\\\"{x:StaticResource TrackballLabelTemplate}\\\">\\r\\n\" +\n        \"            <toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings Type=\\\"Circle\\\" Width=\\\"10\\\" Height=\\\"10\\\" \\r\\n\" +\n        \"                                             StrokeWidth=\\\"1\\\" Stroke=\\\"#80357CD2\\\"/>\\r\\n\" +\n        \"            </toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:LineSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianTrackballAxisLabelTemplateXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                            Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"        <DataTemplate x:Key=\\\"AxisLabelTemplate\\\">\\r\\n\" +\n        \"            <Label WidthRequest=\\\"100\\\" HeightRequest=\\\"20\\\" HorizontalTextAlignment=\\\"Center\\\" \\r\\n\" +\n        \"                   Text=\\\"{x:Binding .}\\\" TextColor=\\\"Aqua\\\" FontSize =\\\"15\\\"/>\\r\\n\" +\n        \"        </DataTemplate>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Resources>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend Placement=\\\"Top\\\" ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title >\\r\\n\" +\n        \"        <Label Text=\\\"Trackball Line Sample Chart\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.TrackballBehavior>\\r\\n\" +\n        \"        <toolkit:ChartTrackballBehavior ShowLine=\\\"True\\\" ShowMarkers=\\\"True\\\" DisplayMode=\\\"FloatAllPoints\\\" ActivationMode=\\\"TouchMove\\\">\\r\\n\" +\n        \"            <toolkit:ChartTrackballBehavior.LineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"1.5\\\"/>\\r\\n\" +\n        \"            </toolkit:ChartTrackballBehavior.LineStyle>\\r\\n\" +\n        \"            <toolkit:ChartTrackballBehavior.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:ChartTrackballBehavior.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:ChartTrackballBehavior>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.TrackballBehavior>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:DateTimeAxis IntervalType=\\\"Years\\\" Interval=\\\"1\\\" EdgeLabelsVisibilityMode=\\\"Visible\\\" ShowMajorGridLines=\\\"false\\\"\\r\\n\" +\n        \"                              PlotOffsetStart=\\\"10\\\" PlotOffsetEnd=\\\"10\\\" AxisLineOffset=\\\"10\\\"\\r\\n\" +\n        \"                              ShowTrackballLabel=\\\"True\\\" TrackballLabelTemplate=\\\"{x:StaticResource AxisLabelTemplate}\\\">\\r\\n\" +\n        \"            <toolkit:DateTimeAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"10\\\"/>\\r\\n\" +\n        \"            </toolkit:DateTimeAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:DateTimeAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis Maximum=\\\"120\\\" Minimum=\\\"0\\\" Interval=\\\"10\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"                <toolkit:ChartLineStyle StrokeWidth=\\\"0\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.AxisLineStyle>\\r\\n\" +\n        \"            <toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"                <toolkit:ChartAxisTickStyle TickSize=\\\"0\\\" />\\r\\n\" +\n        \"            </toolkit:NumericalAxis.MajorTickStyle>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:LineSeries ItemsSource=\\\"{x:Binding FirstLine}\\\" Label=\\\"Line 1\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Date\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"1\\\" >\\r\\n\" +\n        \"            <toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings Type=\\\"Circle\\\" Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:LineSeries>\\r\\n\" +\n        \"        <toolkit:LineSeries ItemsSource=\\\"{x:Binding SecondLine}\\\" Label=\\\"Line 2\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Date\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"1\\\" >\\r\\n\" +\n        \"            <toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings Type=\\\"Circle\\\" Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:LineSeries>\\r\\n\" +\n        \"        <toolkit:LineSeries ItemsSource=\\\"{x:Binding ThirdLine}\\\" Label=\\\"Line 3\\\" \\r\\n\" +\n        \"                            XBindingPath=\\\"Date\\\" YBindingPath=\\\"Value\\\" ShowMarkers=\\\"True\\\" StrokeWidth=\\\"1\\\" >\\r\\n\" +\n        \"            <toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"                <toolkit:ChartMarkerSettings Type=\\\"Circle\\\" Width=\\\"10\\\" Height=\\\"10\\\" StrokeWidth=\\\"1\\\"/>\\r\\n\" +\n        \"            </toolkit:LineSeries.MarkerSettings>\\r\\n\" +\n        \"        </toolkit:LineSeries>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianZoomingXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Zooming Scatter Sample Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"        <toolkit:ChartZoomPanBehavior x:Name=\\\"Zooming\\\" ZoomMode=\\\"XY\\\" EnablePanning=\\\"True\\\" MaximumZoomLevel=\\\"2\\\" \\r\\n\" +\n        \"                                      EnablePinchZooming=\\\"True\\\" EnableDirectionalZooming=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" EdgeLabelsDrawingMode=\\\"Shift\\\" Minimum=\\\"100\\\" Maximum=\\\"220\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Margin=\\\"5,10,5,2\\\" Text=\\\"Centimeter\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" Minimum=\\\"50\\\" Maximum=\\\"80\\\" Interval=\\\"5\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Kilogram\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ScatterSeries Label=\\\"Scatter 1\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" Opacity=\\\"0.6\\\" PointWidth=\\\"8\\\" PointHeight=\\\"8\\\" \\r\\n\" +\n        \"                                ItemsSource=\\\"{Binding FirstScatter}\\\" XBindingPath=\\\"Value\\\" YBindingPath=\\\"Size\\\"/>\\r\\n\" +\n        \"        <toolkit:ScatterSeries Label=\\\"Scatter 2\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" Opacity=\\\"0.6\\\" PointWidth=\\\"8\\\" PointHeight=\\\"8\\\" \\r\\n\" +\n        \"                                ItemsSource=\\\"{Binding SecondScatter}\\\" XBindingPath=\\\"Value\\\" YBindingPath=\\\"Size\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n\n    [ObservableProperty]\n    string cartesianSelectionZoomingXamlCode =\n        \"<toolkit:SfCartesianChart HorizontalOptions=\\\"Fill\\\" VerticalOptions=\\\"Fill\\\"\\r\\n\" +\n        \"                          Margin=\\\"0, 0, 20, 0\\\">\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"        <toolkit:ChartLegend ToggleSeriesVisibility=\\\"True\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Legend>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"        <Label Text=\\\"Selection Zooming Scatter Sample Chart\\\" Margin=\\\"0\\\" HorizontalOptions=\\\"Fill\\\" HorizontalTextAlignment=\\\"Center\\\" VerticalOptions=\\\"Center\\\" FontSize=\\\"16\\\" />\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Title>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"        <toolkit:ChartZoomPanBehavior EnableSelectionZooming=\\\"True\\\" EnablePinchZooming=\\\"False\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.ZoomPanBehavior>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" EdgeLabelsDrawingMode=\\\"Shift\\\" Minimum=\\\"100\\\" Maximum=\\\"220\\\" Interval=\\\"20\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Margin=\\\"5,10,5,2\\\" Text=\\\"Centimeter\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.XAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"        <toolkit:NumericalAxis ShowMajorGridLines=\\\"False\\\" Minimum=\\\"50\\\" Maximum=\\\"80\\\" Interval=\\\"5\\\">\\r\\n\" +\n        \"            <toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"                <toolkit:ChartAxisTitle Text=\\\"Kilogram\\\"/>\\r\\n\" +\n        \"            </toolkit:NumericalAxis.Title>\\r\\n\" +\n        \"        </toolkit:NumericalAxis>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.YAxes>\\r\\n\" +\n        \"    <toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"        <toolkit:ScatterSeries Label=\\\"Scatter 1\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" \\r\\n\" +\n        \"                               Opacity=\\\"0.6\\\" PointWidth=\\\"8\\\" PointHeight=\\\"8\\\" \\r\\n\" +\n        \"                               ItemsSource=\\\"{Binding FirstScatterComponentData, Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                               XBindingPath=\\\"Value\\\" YBindingPath=\\\"Size\\\"/>\\r\\n\" +\n        \"        <toolkit:ScatterSeries Label=\\\"Scatter 2\\\" EnableTooltip=\\\"True\\\" EnableAnimation=\\\"True\\\" \\r\\n\" +\n        \"                               Opacity=\\\"0.6\\\" PointWidth=\\\"8\\\" PointHeight=\\\"8\\\" \\r\\n\" +\n        \"                               ItemsSource=\\\"{Binding SecondScatterComponentData, Source={x:Reference root}}\\\" \\r\\n\" +\n        \"                               XBindingPath=\\\"Value\\\" YBindingPath=\\\"Size\\\"/>\\r\\n\" +\n        \"    </toolkit:SfCartesianChart.Series>\\r\\n\" +\n        \"</toolkit:SfCartesianChart>\";\n    #endregion\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlGroup = query.GetData<ControlGroupInfo>();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        IsRefreshing = true;\n\n        LoadDataAsync().FireAndForget();\n\n        IsRefreshing = false;\n    }\n\n    [RelayCommand]\n    async Task LoadChartOption()\n    {\n        if (ChartOptions != null)\n        {\n            if (string.IsNullOrEmpty(ChartsSelectedOption))\n            {\n                ChartsSelectedOption = ChartOptions.FirstOrDefault()!;\n            }\n        }\n    }\n\n    [RelayCommand]\n    async Task LoadAreaDefaultChartOption()\n    {\n        if (AreaChartOptions != null)\n        {\n            if (string.IsNullOrEmpty(AreaSelectedOption))\n            {\n                AreaSelectedOption = AreaChartOptions.FirstOrDefault()!;\n            }\n        }\n    }\n\n    [RelayCommand]\n    async Task LoadColumnBarDefaultChartOption()\n    {\n        if (BarChartOptions != null || ColumnChartOptions != null)\n        {\n            if (string.IsNullOrEmpty(ColumnBarSelectedOption))\n            {\n                ColumnBarSelectedOption = BarChartOptions!.FirstOrDefault()! ?? ColumnChartOptions.FirstOrDefault()!;\n            }\n        }\n    }\n\n    [RelayCommand]\n    async Task LoadLineDefaultChartOption()\n    {\n        if (LineChartOptions != null)\n        {\n            if (string.IsNullOrEmpty(LineSelectedOption))\n            {\n                LineSelectedOption = LineChartOptions.FirstOrDefault()!;\n            }\n        }\n    }\n\n    [RelayCommand]\n    async Task LoadScatterDefaultChartOption()\n    {\n        if (ScatterChartOptions != null)\n        {\n            if (string.IsNullOrEmpty(ScatterSelectedOption))\n            {\n                ScatterSelectedOption = ScatterChartOptions.FirstOrDefault()!;\n            }\n        }\n    }\n\n    [RelayCommand]\n    async Task LoadHistogramDefaultChartOption()\n    {\n        if (HistogramChartOptions != null)\n        {\n            if (string.IsNullOrEmpty(HistogramSelectedOption))\n            {\n                HistogramSelectedOption = HistogramChartOptions.FirstOrDefault()!;\n            }\n        }\n    }\n\n    [RelayCommand]\n    async Task LoadBoxPlotDefaultChartOption()\n    {\n        if (BoxPlotChartOptions != null)\n        {\n            if (string.IsNullOrEmpty(BoxPlotSelectedOption))\n            {\n                BoxPlotSelectedOption = BoxPlotChartOptions.FirstOrDefault()!;\n            }\n        }\n    }\n\n    [RelayCommand]\n    async Task LoadBubbleDefaultChartOption()\n    {\n        if (BubbleChartOptions != null)\n        {\n            if (string.IsNullOrEmpty(BubbleSelectedOption))\n            {\n                BubbleSelectedOption = BubbleChartOptions.FirstOrDefault()!;\n            }\n        }\n    }\n\n    [RelayCommand]\n    async Task LoadFinancialDefaultChartOption()\n    {\n        if (FinancialChartOptions != null)\n        {\n            if (string.IsNullOrEmpty(FinancialSelectedOption))\n            {\n                FinancialSelectedOption = FinancialChartOptions.FirstOrDefault()!;\n            }\n        }\n    }\n\n    [RelayCommand]\n    async Task LoadWaterfallDefaultChartOption()\n    {\n        if (WaterfallChartOptions != null)\n        {\n            if (string.IsNullOrEmpty(WaterfallSelectedOption))\n            {\n                WaterfallSelectedOption = WaterfallChartOptions.FirstOrDefault()!;\n            }\n        }\n    }\n    #endregion\n\n    #region [ Methods ]\n    private async Task LoadDataAsync()\n    {\n        CrossingAxis = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Value = -7, Size = -3 },\n            new SfCartesianChartModel() { Value = -4.5, Size = -2 },\n            new SfCartesianChartModel() { Value = -3.5, Size = 0 },\n            new SfCartesianChartModel() { Value = -3, Size = 2 },\n            new SfCartesianChartModel() { Value = 0, Size = 7 },\n            new SfCartesianChartModel() { Value =3, Size = 2 },\n            new SfCartesianChartModel() { Value =3.5, Size = 0 },\n            new SfCartesianChartModel() { Value =4.5, Size = -2 },\n            new SfCartesianChartModel() { Value = 7, Size = -3 },\n        };\n\n        Annotation = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Date = new DateTime(2020, 03, 02), Size = 350, Value = 100 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 03, 09), Size = 470, Value = 200 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 03, 16), Size = 500, Value = 400 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 03, 23), Size = 530, Value = 600 }\n        };\n\n        Area = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Name = \"Strypper\", High = 4.17, Low = 0.72, Size = 2.48, Value = 1.23 },\n            new SfCartesianChartModel() { Name = \"Tan\", High = 3.51, Low = 1.64, Size = 2.43, Value = 4.17 },\n            new SfCartesianChartModel() { Name = \"Hung\", High = 2.01, Low = 2.71, Size = 3.47, Value = 3.17 },\n            new SfCartesianChartModel() { Name = \"Long\", High = 1.95, Low = 3.63, Size = 2.41, Value = 3.20 },\n            new SfCartesianChartModel() { Name = \"Dat\", High = 3.95, Low = 2.63, Size = 0.41, Value = 1.20 }\n        };\n\n        RangeArea = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 01).Date, High = 36, Low = 13, Value = 24.5},\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 02).Date, High = 33, Low = 16, Value = 24.5 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 03).Date, High = 33, Low = 15, Value = 24 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 04).Date, High = 32, Low = 12, Value = 24.5 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 05).Date, High = 38, Low = 11, Value = 24.5 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 06).Date, High = 37, Low = 11, Value = 24 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 07).Date, High = 36, Low = 13, Value = 24.5 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 08).Date, High = 35, Low = 14, Value = 24.5 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 09).Date, High = 39, Low = 14, Value = 26.5 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 10).Date, High = 37, Low = 15, Value = 26 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 11).Date, High = 36, Low = 16, Value = 26 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 12).Date, High = 35, Low = 17, Value = 26 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 13).Date, High = 35, Low = 13, Value = 24 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 14).Date, High = 36, Low = 12, Value = 24 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 15).Date, High = 37, Low = 11, Value = 24 },\n            new SfCartesianChartModel() { Date = new DateTime(2022, 05, 16).Date, High = 31, Low = 15, Value = 23 }\n        };\n\n        StackingArea = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { High = 0.61, Low = 0.03, Value = 0.48, Size = 0.23, Year = \"2001\"},\n            new SfCartesianChartModel() { High = 0.81, Low = 0.05, Value = 0.53, Size = 0.17, Year = \"2002\" },\n            new SfCartesianChartModel() { High = 0.91, Low = 0.06, Value = 0.57, Size = 0.17, Year = \"2003\" },\n            new SfCartesianChartModel() { High = 1.00, Low = 0.09, Value = 0.61, Size = 0.20, Year = \"2004\" },\n            new SfCartesianChartModel() { High = 1.19, Low = 0.14, Value = 0.63, Size = 0.23, Year = \"2005\" },\n            new SfCartesianChartModel() { High = 1.47, Low = 0.20, Value = 0.64, Size = 0.36, Year = \"2006\" },\n            new SfCartesianChartModel() { High = 1.74, Low = 0.29, Value = 0.66, Size = 0.43, Year = \"2007\" },\n            new SfCartesianChartModel() { High = 1.98, Low = 0.46, Value = 0.76, Size = 0.52, Year = \"2008\" },\n            new SfCartesianChartModel() { High = 1.99, Low = 0.64, Value = 0.77, Size = 0.72, Year = \"2009\" },\n            new SfCartesianChartModel() { High = 1.70, Low = 0.75, Value = 0.55, Size = 1.29, Year = \"2010\" },\n            new SfCartesianChartModel() { High = 1.48, Low = 1.06, Value = 0.54, Size = 1.38, Year = \"2011\" },\n            new SfCartesianChartModel() { High = 1.38, Low = 1.25, Value = 0.57, Size = 1.82, Year = \"2012\" }\n        };\n\n        Bar = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Name = \"Strypper\", Exp = 100, High = 10, Low = 1 },\n            new SfCartesianChartModel() { Name = \"Tan\", Exp = 50, High = 15, Low = 1 },\n            new SfCartesianChartModel() { Name = \"Hung\", Exp = 40, High = 10, Low = 1 },\n            new SfCartesianChartModel() { Name = \"Long\", Exp = 20, High = 15, Low = 1 },\n            new SfCartesianChartModel() { Name = \"Dat\", Exp = 30, High = 10, Low = 1 }\n        };\n\n        RangeBar = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Name = \"January\", High = 7, Low = 3 },\n            new SfCartesianChartModel() { Name = \"February\", High = 8, Low = 3 },\n            new SfCartesianChartModel() { Name = \"March\", High = 12, Low = 5 },\n            new SfCartesianChartModel() { Name = \"April\", High = 16, Low = 7 },\n            new SfCartesianChartModel() { Name = \"May\", High = 20, Low = 11 },\n            new SfCartesianChartModel() { Name = \"June\", High = 23, Low = 14 },\n            new SfCartesianChartModel() { Name = \"July\", High = 25, Low = 16 },\n            new SfCartesianChartModel() { Name = \"August\", High = 25, Low = 16 },\n            new SfCartesianChartModel() { Name = \"September\", High = 21, Low = 13 },\n            new SfCartesianChartModel() { Name = \"October\", High = 16, Low = 10 },\n            new SfCartesianChartModel() { Name = \"November\", High = 11, Low = 6 },\n            new SfCartesianChartModel() { Name = \"December\", High = 8, Low = 3 }\n        };\n\n        StackingBar = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Name = \"Product 1\", High = 3.932, Low = -3.987, Value = -5.067, Size = 13.012 },\n            new SfCartesianChartModel() { Name = \"Product 2\", High = -5.432, Low = 3.417, Value = 15.067, Size = 12.321 },\n            new SfCartesianChartModel() { Name = \"Product 3\", High = -4.229, Low = -4.376, Value = -3.504, Size = 12.814 },\n            new SfCartesianChartModel() { Name = \"Product 4\", High = -9.256, Low = 4.376, Value = 9.054, Size = 8.814},\n            new SfCartesianChartModel() { Name = \"Product 5\", High = 5.221, Low = -3.574, Value = -7.004, Size = 11.624}\n        };\n\n        Column = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Name = \"Strypper\", Exp = 100, Value = 80, Size = 60, Number = 1 },\n            new SfCartesianChartModel() { Name = \"Tan\", Exp = 50, Value = 70, Size = 90, Number = 2 },\n            new SfCartesianChartModel() { Name = \"Hung\", Exp = 40, Value = 80, Size = 60, Number = 3 },\n            new SfCartesianChartModel() { Name = \"Long\", Exp = 20, Value = 40, Size = 80, Number = 4},\n            new SfCartesianChartModel() { Name = \"Dat\", Exp = 30, Value = 60, Size = 90, Number = 5}\n        };\n\n        RangeColumn = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Name = \"January\", High = 7, Low = 3 },\n            new SfCartesianChartModel() { Name = \"February\", High = 8, Low = 3 },\n            new SfCartesianChartModel() { Name = \"March\", High = 12, Low = 5 },\n            new SfCartesianChartModel() { Name = \"April\", High = 16, Low = 7 },\n            new SfCartesianChartModel() { Name = \"May\", High = 20, Low = 11 },\n            new SfCartesianChartModel() { Name = \"June\", High = 23, Low = 14 },\n            new SfCartesianChartModel() { Name = \"July\", High = 25, Low = 16 },\n            new SfCartesianChartModel() { Name = \"August\", High = 25, Low = 16 },\n            new SfCartesianChartModel() { Name = \"September\", High = 21, Low = 13 },\n            new SfCartesianChartModel() { Name = \"October\", High = 16, Low = 10 },\n            new SfCartesianChartModel() { Name = \"November\", High = 11, Low = 6 },\n            new SfCartesianChartModel() { Name = \"December\", High = 8, Low = 3 }\n        };\n\n        StackingColumn = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Name = \"Product 1\", High = 15.767, Low = 9.726, Value = 24.769 },\n            new SfCartesianChartModel() { Name = \"Product 2\", High = 17.471, Low = 10.206, Value = 24.790 },\n            new SfCartesianChartModel() { Name = \"Product 3\", High = 18.097, Low = 11.057, Value = 26.170 },\n            new SfCartesianChartModel() { Name = \"Product 4\", High = 20.056, Low = 10.946, Value = 24.795 },\n            new SfCartesianChartModel() { Name = \"Product 5\", High = 19.739, Low = 11.164, Value = 23.533 }\n        };\n\n        FirstLine = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Name = \"2005\", Value = 21, Date = new DateTime(2005, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2006\", Value = 24, Date = new DateTime(2006, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2007\", Value = 36, Date = new DateTime(2007, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2008\", Value = 38, Date = new DateTime(2008, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2009\", Value = 54, Date = new DateTime(2009, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2010\", Value = 57, Date = new DateTime(2010, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2011\", Value = 70, Date = new DateTime(2011, 01, 01).Date }\n        };\n\n        SecondLine = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Name = \"2005\", Value = 28, Date = new DateTime(2005, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2006\", Value = 44, Date = new DateTime(2006, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2007\", Value = 48, Date = new DateTime(2007, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2008\", Value = 50, Date = new DateTime(2008, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2009\", Value = 66, Date = new DateTime(2009, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2010\", Value = 78, Date = new DateTime(2010, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2011\", Value = 84, Date = new DateTime(2011, 01, 01).Date }\n        };\n\n        ThirdLine = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Name = \"2005\", Value = 32, Date = new DateTime(2005, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2006\", Value = 44, Date = new DateTime(2006, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2007\", Value = 52, Date = new DateTime(2007, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2008\", Value = 55, Date = new DateTime(2008, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2009\", Value = 70, Date = new DateTime(2009, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2010\", Value = 78, Date = new DateTime(2010, 01, 01).Date },\n            new SfCartesianChartModel() { Name = \"2011\", Value = 90, Date = new DateTime(2011, 01, 01).Date }\n        };\n\n        var randomNumber = new Random();\n        FastLine = new ObservableCollection<SfCartesianChartModel>(\n            Enumerable.Range(0, 500).Select(item => \n            { \n                var date = new DateTime(1900, 1, 1).AddHours(6 * item); \n                var value = 100 + Enumerable.Range(0, item).Sum(j => randomNumber.NextDouble() * (randomNumber.NextDouble() > 0.5 ? 1 : -1));\n                return new SfCartesianChartModel { Date = date, Value = Math.Round(value, 2) }; \n            }));\n\n        FirstScatter = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Value = 161, Size = 65 }, new SfCartesianChartModel() { Value = 150, Size = 65 }, new SfCartesianChartModel() { Value = 155, Size = 65 },\n            new SfCartesianChartModel() { Value = 160, Size = 65 }, new SfCartesianChartModel() { Value = 148, Size = 66 }, new SfCartesianChartModel() { Value = 145, Size = 66 },\n            new SfCartesianChartModel() { Value = 137, Size = 66 }, new SfCartesianChartModel() { Value = 138, Size = 66 }, new SfCartesianChartModel() { Value = 162, Size = 66 },\n            new SfCartesianChartModel() { Value = 166, Size = 66 }, new SfCartesianChartModel() { Value = 159, Size = 66 }, new SfCartesianChartModel() { Value = 151, Size = 66 },\n            new SfCartesianChartModel() { Value = 180, Size = 66 }, new SfCartesianChartModel() { Value = 181, Size = 66 }, new SfCartesianChartModel() { Value = 174, Size = 66 },\n            new SfCartesianChartModel() { Value = 159, Size = 66 }, new SfCartesianChartModel() { Value = 151, Size = 67 }, new SfCartesianChartModel() { Value = 148, Size = 67 },\n            new SfCartesianChartModel() { Value = 141, Size = 67 }, new SfCartesianChartModel() { Value = 145, Size = 67 }, new SfCartesianChartModel() { Value = 165, Size = 67 },\n            new SfCartesianChartModel() { Value = 168, Size = 67 }, new SfCartesianChartModel() { Value = 159, Size = 67 }, new SfCartesianChartModel() { Value = 183, Size = 67 },\n            new SfCartesianChartModel() { Value = 188, Size = 67 }, new SfCartesianChartModel() { Value = 187, Size = 67 }, new SfCartesianChartModel() { Value = 172, Size = 67 },\n            new SfCartesianChartModel() { Value = 193, Size = 67 }, new SfCartesianChartModel() { Value = 153, Size = 68 }, new SfCartesianChartModel() { Value = 153, Size = 68 },\n            new SfCartesianChartModel() { Value = 147, Size = 68 }, new SfCartesianChartModel() { Value = 163, Size = 68 }, new SfCartesianChartModel() { Value = 174, Size = 68 },\n            new SfCartesianChartModel() { Value = 173, Size = 68 }, new SfCartesianChartModel() { Value = 160, Size = 68 }, new SfCartesianChartModel() { Value = 191, Size = 68 },\n            new SfCartesianChartModel() { Value = 131, Size = 62 }, new SfCartesianChartModel() { Value = 140, Size = 62 }, new SfCartesianChartModel() { Value = 149, Size = 62 },\n            new SfCartesianChartModel() { Value = 115, Size = 62 }, new SfCartesianChartModel() { Value = 164, Size = 63 }, new SfCartesianChartModel() { Value = 162, Size = 63 },\n            new SfCartesianChartModel() { Value = 167, Size = 63 }, new SfCartesianChartModel() { Value = 146, Size = 63 }, new SfCartesianChartModel() { Value = 150, Size = 64 },\n            new SfCartesianChartModel() { Value = 141, Size = 64 }, new SfCartesianChartModel() { Value = 142, Size = 64 }, new SfCartesianChartModel() { Value = 129, Size = 64 },\n            new SfCartesianChartModel() { Value = 159, Size = 64 }, new SfCartesianChartModel() { Value = 158, Size = 64 }, new SfCartesianChartModel() { Value = 162, Size = 64 },\n            new SfCartesianChartModel() { Value = 136, Size = 64 }, new SfCartesianChartModel() { Value = 176, Size = 64 }, new SfCartesianChartModel() { Value = 170, Size = 64 },\n            new SfCartesianChartModel() { Value = 167, Size = 64 }, new SfCartesianChartModel() { Value = 144, Size = 64 }, new SfCartesianChartModel() { Value = 143, Size = 65 },\n            new SfCartesianChartModel() { Value = 137, Size = 65 }, new SfCartesianChartModel() { Value = 137, Size = 65 }, new SfCartesianChartModel() { Value = 140, Size = 65 },\n        };\n\n        SecondScatter = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Value = 115, Size = 57 }, new SfCartesianChartModel() { Value = 138, Size = 57 }, new SfCartesianChartModel() { Value = 166, Size = 57 },\n            new SfCartesianChartModel() { Value = 122, Size = 57 }, new SfCartesianChartModel() { Value = 126, Size = 57 }, new SfCartesianChartModel() { Value = 130, Size = 57 },\n            new SfCartesianChartModel() { Value = 125, Size = 57 }, new SfCartesianChartModel() { Value = 144, Size = 57 }, new SfCartesianChartModel() { Value = 150, Size = 57 },\n            new SfCartesianChartModel() { Value = 120, Size = 57 }, new SfCartesianChartModel() { Value = 125, Size = 57 }, new SfCartesianChartModel() { Value = 130, Size = 57 },\n            new SfCartesianChartModel() { Value = 103, Size = 58 }, new SfCartesianChartModel() { Value = 116, Size = 58 }, new SfCartesianChartModel() { Value = 130, Size = 58 },\n            new SfCartesianChartModel() { Value = 126, Size = 58 }, new SfCartesianChartModel() { Value = 136, Size = 58 }, new SfCartesianChartModel() { Value = 148, Size = 58 },\n            new SfCartesianChartModel() { Value = 119, Size = 58 }, new SfCartesianChartModel() { Value = 141, Size = 58 }, new SfCartesianChartModel() { Value = 159, Size = 58 },\n            new SfCartesianChartModel() { Value = 120, Size = 58 }, new SfCartesianChartModel() { Value = 135, Size = 58 }, new SfCartesianChartModel() { Value = 163, Size = 58 },\n            new SfCartesianChartModel() { Value = 119, Size = 59 }, new SfCartesianChartModel() { Value = 131, Size = 59 }, new SfCartesianChartModel() { Value = 148, Size = 59 },\n            new SfCartesianChartModel() { Value = 123, Size = 59 }, new SfCartesianChartModel() { Value = 137, Size = 59 }, new SfCartesianChartModel() { Value = 149, Size = 59 },\n            new SfCartesianChartModel() { Value = 121, Size = 59 }, new SfCartesianChartModel() { Value = 142, Size = 59 }, new SfCartesianChartModel() { Value = 160, Size = 59 },\n            new SfCartesianChartModel() { Value = 118, Size = 59 }, new SfCartesianChartModel() { Value = 130, Size = 59 }, new SfCartesianChartModel() { Value = 146, Size = 59 },\n            new SfCartesianChartModel() { Value = 119, Size = 60 }, new SfCartesianChartModel() { Value = 133, Size = 60 }, new SfCartesianChartModel() { Value = 150, Size = 60 },\n            new SfCartesianChartModel() { Value = 133, Size = 60 }, new SfCartesianChartModel() { Value = 149, Size = 60 }, new SfCartesianChartModel() { Value = 165, Size = 60 },\n            new SfCartesianChartModel() { Value = 130, Size = 60 }, new SfCartesianChartModel() { Value = 139, Size = 60 }, new SfCartesianChartModel() { Value = 154, Size = 60 },\n            new SfCartesianChartModel() { Value = 118, Size = 60 }, new SfCartesianChartModel() { Value = 152, Size = 60 }, new SfCartesianChartModel() { Value = 154, Size = 60 },\n            new SfCartesianChartModel() { Value = 130, Size = 61 }, new SfCartesianChartModel() { Value = 145, Size = 61 }, new SfCartesianChartModel() { Value = 166, Size = 61 },\n            new SfCartesianChartModel() { Value = 131, Size = 61 }, new SfCartesianChartModel() { Value = 143, Size = 61 }, new SfCartesianChartModel() { Value = 162, Size = 61 },\n            new SfCartesianChartModel() { Value = 131, Size = 61 }, new SfCartesianChartModel() { Value = 145, Size = 61 }, new SfCartesianChartModel() { Value = 162, Size = 61 },\n            new SfCartesianChartModel() { Value = 115, Size = 61 }, new SfCartesianChartModel() { Value = 149, Size = 61 }, new SfCartesianChartModel() { Value = 183, Size = 61 },\n        };\n\n        Bubble = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Name = \"2000\", Exp = 100, High = 15000, Low = 5.50 },\n            new SfCartesianChartModel() { Name = \"2001\", Exp = 75, High = 6500, Low = 3.30 },\n            new SfCartesianChartModel() { Name = \"2002\", Exp = 95, High = 11000, Low = 2.20 },\n            new SfCartesianChartModel() { Name = \"2003\", Exp = 105, High = 42000, Low = 2.10 },\n            new SfCartesianChartModel() { Name = \"2004\", Exp = 95, High = 27000, Low = 5.10 },\n            new SfCartesianChartModel() { Name = \"2005\", Exp = 105, High = 28000, Low = 2.20 },\n            new SfCartesianChartModel() { Name = \"2006\", Exp = 85, High = 26000, Low = 2.70 },\n            new SfCartesianChartModel() { Name = \"2007\", Exp = 75, High = 20000, Low = 5.10 },\n            new SfCartesianChartModel() { Name = \"2008\", Exp = 60, High = 2000, Low = 2.10 },\n            new SfCartesianChartModel() { Name = \"2009\", Exp = 85, High = 5000, Low = 3.10 },\n            new SfCartesianChartModel() { Name = \"2010\", Exp = 105, High = 11000, Low = 1.20 },\n            new SfCartesianChartModel() { Name = \"2011\", Exp = 100, High = 29000, Low = 2.70 },\n            new SfCartesianChartModel() { Name = \"2012\", Exp = 65, High = 30000, Low = 6.30 },\n            new SfCartesianChartModel() { Name = \"2013\", Exp = 70, High = 15000, Low = 4.50 },\n            new SfCartesianChartModel() { Name = \"2014\", Exp = 110, High = 8000, Low = 3.60 },\n            new SfCartesianChartModel() { Name = \"2015\", Exp = 80, High = 5000, Low = 3.20 },\n            new SfCartesianChartModel() { Name = \"2016\", Exp = 90, High = 11000, Low = 3.10 },\n            new SfCartesianChartModel() { Name = \"2017\", Exp = 65, High = 17000, Low = 2.10 },\n        };\n\n        Box = new ObservableCollection<SfCartesianChartModel> \n        { \n            new SfCartesianChartModel() { Name = \"1\", Values = new List<double> { 67.4, 65.5, 72.0, 73.6, 65.2, 67.0, 66.3, 67.9, 65.8, 69.9, 64.5, 66.0, 66.8, 67.0, 69.9, 70.1, 69.7, 68.3, 67.0, 68.2, 65.0, 66.6, 65.4, 68.1 } }, \n            new SfCartesianChartModel() { Name = \"2\", Values = new List<double> { 69.0, 66.2, 70.0, 68.5, 66.0, 67.5, 68.5, 66.5, 73.0, 69.0, 69.0, 74.5, 68.0, 68.5, 67.5, 70.0, 69.0, 72.5, 68.0, 69.0, 69.0, 71.0, 68.0, 75.0, 67.0 } }, \n            new SfCartesianChartModel() { Name = \"3\", Values = new List<double> { 73.0, 78.9, 75.0, 72.3, 72.4, 74.1, 72.0, 72.0, 70.9, 74.5, 72.0, 72.5, 72.4, 74.0, 75.0, 70.9, 70.9, 76.6, 74.2, 69.5, 68.8, 68.5, 70.1, 73.0, 70.9 } }, \n            new SfCartesianChartModel() { Name = \"4\", Values = new List<double> { 67.6, 64.2, 65.9, 65.9, 68.2, 71.1, 67.6, 71.6, 72.8, 68.2, 67.6, 67.1, 67.1, 68.2, 65.4, 66.5, 67.6, 67.1, 71.1, 67.1, 65.4, 67.6, 67.6, 70.5, 70.5 } }, \n        };\n\n        Histogram = new ObservableCollection<SfCartesianChartModel>\n        {\n            new SfCartesianChartModel() { Value = 5.250, Size = 0 }, new SfCartesianChartModel() { Value = 7.750, Size = 0 },\n            new SfCartesianChartModel() { Value = 0, Size = 0 }, new SfCartesianChartModel() { Value = 8.275, Size = 0 },\n            new SfCartesianChartModel() { Value = 9.750, Size = 0 }, new SfCartesianChartModel() { Value = 7.750, Size = 0 },\n            new SfCartesianChartModel() { Value = 8.275, Size = 0 }, new SfCartesianChartModel() { Value = 6.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 5.750, Size = 0 }, new SfCartesianChartModel() { Value = 5.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 23.000, Size = 0 }, new SfCartesianChartModel() { Value = 26.500, Size = 0 },\n            new SfCartesianChartModel() { Value = 27.750, Size = 0 }, new SfCartesianChartModel() { Value = 25.025, Size = 0 },\n            new SfCartesianChartModel() { Value = 26.500, Size = 0 }, new SfCartesianChartModel() { Value = 26.500, Size = 0 },\n            new SfCartesianChartModel() { Value = 28.025, Size = 0 }, new SfCartesianChartModel() { Value = 29.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 26.750, Size = 0 }, new SfCartesianChartModel() { Value = 27.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 26.250, Size = 0 }, new SfCartesianChartModel() { Value = 25.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 34.500, Size = 0 }, new SfCartesianChartModel() { Value = 25.625, Size = 0 },\n            new SfCartesianChartModel() { Value = 25.500, Size = 0 }, new SfCartesianChartModel() { Value = 26.625, Size = 0 },\n            new SfCartesianChartModel() { Value = 36.275, Size = 0 }, new SfCartesianChartModel() { Value = 36.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 26.875, Size = 0 }, new SfCartesianChartModel() { Value = 45.000, Size = 0 },\n            new SfCartesianChartModel() { Value = 43.000, Size = 0 }, new SfCartesianChartModel() { Value = 46.500, Size = 0 },\n            new SfCartesianChartModel() { Value = 47.750, Size = 0 }, new SfCartesianChartModel() { Value = 45.025, Size = 0 },\n            new SfCartesianChartModel() { Value = 56.500, Size = 0 }, new SfCartesianChartModel() { Value = 56.500, Size = 0 },\n            new SfCartesianChartModel() { Value = 58.025, Size = 0 }, new SfCartesianChartModel() { Value = 59.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 56.750, Size = 0 }, new SfCartesianChartModel() { Value = 57.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 46.250, Size = 0 }, new SfCartesianChartModel() { Value = 55.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 44.500, Size = 0 }, new SfCartesianChartModel() { Value = 45.500, Size = 0 },\n            new SfCartesianChartModel() { Value = 55.500, Size = 0 }, new SfCartesianChartModel() { Value = 45.625, Size = 0 },\n            new SfCartesianChartModel() { Value = 55.500, Size = 0 }, new SfCartesianChartModel() { Value = 56.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 46.875, Size = 0 }, new SfCartesianChartModel() { Value = 43.000, Size = 0 },\n            new SfCartesianChartModel() { Value = 46.250, Size = 0 }, new SfCartesianChartModel() { Value = 55.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 44.500, Size = 0 }, new SfCartesianChartModel() { Value = 45.425, Size = 0 },\n            new SfCartesianChartModel() { Value = 56.625, Size = 0 }, new SfCartesianChartModel() { Value = 46.275, Size = 0 },\n            new SfCartesianChartModel() { Value = 56.250, Size = 0 }, new SfCartesianChartModel() { Value = 46.875, Size = 0 },\n            new SfCartesianChartModel() { Value = 43.000, Size = 0 }, new SfCartesianChartModel() { Value = 46.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 55.250, Size = 0 }, new SfCartesianChartModel() { Value = 44.500, Size = 0 },\n            new SfCartesianChartModel() { Value = 45.425, Size = 0 }, new SfCartesianChartModel() { Value = 55.500, Size = 0 },\n            new SfCartesianChartModel() { Value = 46.625, Size = 0 }, new SfCartesianChartModel() { Value = 56.275, Size = 0 },\n            new SfCartesianChartModel() { Value = 46.250, Size = 0 }, new SfCartesianChartModel() { Value = 56.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 42.000, Size = 0 }, new SfCartesianChartModel() { Value = 41.000, Size = 0 },\n            new SfCartesianChartModel() { Value = 63.000, Size = 0 }, new SfCartesianChartModel() { Value = 66.500, Size = 0 },\n            new SfCartesianChartModel() { Value = 67.750, Size = 0 }, new SfCartesianChartModel() { Value = 65.025, Size = 0 },\n            new SfCartesianChartModel() { Value = 66.500, Size = 0 }, new SfCartesianChartModel() { Value = 76.500, Size = 0 },\n            new SfCartesianChartModel() { Value = 78.025, Size = 0 }, new SfCartesianChartModel() { Value = 79.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 76.750, Size = 0 }, new SfCartesianChartModel() { Value = 77.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 66.250, Size = 0 }, new SfCartesianChartModel() { Value = 75.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 74.500, Size = 0 }, new SfCartesianChartModel() { Value = 65.625, Size = 0 },\n            new SfCartesianChartModel() { Value = 75.500, Size = 0 }, new SfCartesianChartModel() { Value = 76.625, Size = 0 },\n            new SfCartesianChartModel() { Value = 76.275, Size = 0 }, new SfCartesianChartModel() { Value = 66.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 66.875, Size = 0 }, new SfCartesianChartModel() { Value = 82.000, Size = 0 },\n            new SfCartesianChartModel() { Value = 85.250, Size = 0 }, new SfCartesianChartModel() { Value = 87.750, Size = 0 },\n            new SfCartesianChartModel() { Value = 92.000, Size = 0 }, new SfCartesianChartModel() { Value = 85.250, Size = 0 },\n            new SfCartesianChartModel() { Value = 87.750, Size = 0 }, new SfCartesianChartModel() { Value = 89.000, Size = 0 },\n            new SfCartesianChartModel() { Value = 88.275, Size = 0 }, new SfCartesianChartModel() { Value = 89.750, Size = 0 },\n            new SfCartesianChartModel() { Value = 95.750, Size = 0 }, new SfCartesianChartModel() { Value = 95.250, Size = 0 }\n        };\n\n        Financial = new ObservableCollection<SfCartesianChartModel>\n        {\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 31), High = 97.87, Low = 95.78, Value = 97.07, Size = 96.97 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 30), High = 98.66, Low = 96.55, Value = 96.95, Size = 97.18 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 29), High = 98.87, Low = 94.70, Value = 98.87, Size = 95.25 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 28), High = 100.97, Low = 98.20, Value = 100.03, Size = 98.31 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 24), High = 98.93, Low = 97.11, Value = 98.69, Size = 98.90 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 23), High = 99.60, Low = 97.08, Value = 98.12, Size = 97.18 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 22), High = 99.66, Low = 97.64, Value = 98.35, Size = 97.94 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 21), High = 98.46, Low = 96.40, Value = 97.22, Size = 97.56 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 18), High = 101.73, Low = 98.12, Value = 101.22, Size = 98.79 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 17), High = 102.04, Low = 98.91, Value = 101.29, Size = 100.62 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 16), High = 101.60, Low = 98.12, Value = 101.20, Size = 100.05 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 15), High = 104.41, Low = 99.85, Value = 104.41, Size = 100.49 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 14), High = 101.55, Low = 98.92, Value = 99.57, Size = 100.83 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 11), High = 99.60, Low = 96.00, Value = 96.81, Size = 98.11 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 10), High = 97.89, Low = 95.64, Value = 96.74, Size = 97.63 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 9), High = 104.43, Low = 96.43, Value = 103.16, Size = 97.41 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 8), High = 102.65, Low = 99.68, Value = 99.71, Size = 102.33 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 7), High = 101.97, Low = 99.83, Value = 101.49, Size = 100.17 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 4), High = 101.87, Low = 98.08, Value = 98.08, Size = 100.92 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 3), High = 101.37, Low = 97.66, Value = 100.57, Size = 97.91 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 2), High = 100.05, Low = 98.12, Value = 100.00, Size = 99.99 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 12, 1), High = 100.73, Low = 97.25, Value = 97.54, Size = 99.75 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 11, 30), High = 97.89, Low = 95.42, Value = 97.38, Size = 96.46 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 11, 27), High = 97.63, Low = 94.50, Value = 94.50, Size = 97.38 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 11, 25), High = 98.65, Low = 94.20, Value = 97.40, Size = 94.40 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 11, 24), High = 97.71, Low = 94.24, Value = 95.85, Size = 96.22 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 11, 23), High = 94.71, Low = 90.80, Value = 91.03, Size = 94.48 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 11, 20), High = 91.31, Low = 89.00, Value = 89.08, Size = 90.09 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 11, 19), High = 90.06, Low = 88.17, Value = 88.35, Size = 89.95 },\n            new SfCartesianChartModel() { Date = new DateTime(2020, 11, 18), High = 90.32, Low = 88.09, Value = 89.31, Size = 88.52 }\n        };\n\n        Waterfall = new ObservableCollection<SfCartesianChartModel>()\n        {\n            new SfCartesianChartModel() { Name = \"January\", Value = 25 },\n            new SfCartesianChartModel() { Name = \"February\", Value = 22.5 },\n            new SfCartesianChartModel() { Name = \"March\", Value = -10 },\n            new SfCartesianChartModel() { Name = \"April\", Value = 23 },\n            new SfCartesianChartModel() { Name = \"May\", Value = 7 },\n            new SfCartesianChartModel() { Name = \"June\", Value = -15 },\n            new SfCartesianChartModel() { Name = \"July\", Value = -8 },\n            new SfCartesianChartModel() { Name = \"August\", Value = -6 },\n            new SfCartesianChartModel() { Name = \"September\", Value = -9 },\n            new SfCartesianChartModel() { Name = \"October\", Value = 22.5 },\n            new SfCartesianChartModel() { Name = \"November\", Value = 12 },\n            new SfCartesianChartModel() { Name = \"December\", Value = -30 },\n            new SfCartesianChartModel() { Name = \"Total\", Value = 34, IsSummary = true }\n        };\n\n        ColdPalletBrushes = new List<Brush>(CreateColdGradientPalletBrushes(5));\n\n        RainbowPalletBrushes = new List<Brush>(CreateRainbowGradientPalletBrushes(5));\n\n        ChartOptions = new ObservableCollection<string>\n        {\n            \"Area\", \"Column\", \"Line\", \"Scatter\", \"Histogram\", \"Box Plot\", \"Bubble\", \"Financial\", \"Waterfall\"\n        };\n\n        AreaChartOptions = new ObservableCollection<string>\n        {\n            \"Area\", \"Spline Area\", \"Step Area\", \"Range Area\", \"Spline Range Area\", \"Stacking Area\", \"100% Stacking Area\"\n        };\n\n        BarChartOptions = new ObservableCollection<string>\n        {\n            \"Bar\", \"Error Bar\", \"Range Bar\", \"Stacking Bar\", \"Stacking Bar 100\"\n        };\n\n        ColumnChartOptions = new ObservableCollection<string>\n        {\n            \"Column\", \"Range Column\", \"Stacking Column\", \"Stacking Column 100\"\n        };\n\n        LineChartOptions = new ObservableCollection<string>\n        {\n            \"Line\", \"Spline\", \"Step Line\", \"Stacking Line\", \"Stacking Line 100\", \"Fast Line\"\n        };\n\n        ScatterChartOptions = new ObservableCollection<string>\n        {\n            \"Scatter\",\n        };\n\n        HistogramChartOptions = new ObservableCollection<string>\n        {\n            \"Histogram\",\n        };\n\n        BoxPlotChartOptions = new ObservableCollection<string>\n        {\n            \"Box And Whisker\",\n        };\n\n        BubbleChartOptions = new ObservableCollection<string>\n        {\n            \"Bubble\",\n        };\n\n        FinancialChartOptions = new ObservableCollection<string>\n        {\n            \"Candle\", \"OHLC\"\n        };\n\n        WaterfallChartOptions = new ObservableCollection<string>\n        {\n            \"Waterfall\",\n        };\n\n\n        ErrorBarTypes = new();\n        ErrorBarModes = new();\n        ErrorBarDirections = new();\n\n        TrackballDisplayMode = new();\n\n        ErrorBarTypes = Enum.GetNames(typeof(ErrorBarType)).ToObservableCollection();\n        ErrorBarModes = Enum.GetNames(typeof(ErrorBarMode)).ToObservableCollection();\n        ErrorBarDirections = Enum.GetNames(typeof(ErrorBarDirection)).ToObservableCollection();\n\n        TrackballDisplayMode = Enum.GetNames(typeof(LabelDisplayMode)).ToObservableCollection();\n    }\n\n    List<Brush> CreateRainbowGradientPalletBrushes(int count)\n    {\n        var allBrushes = new List<RadialGradientBrush> \n        { \n            new RadialGradientBrush\n            { \n                GradientStops = new GradientStopCollection \n                { \n                    new GradientStop { Offset = 1, Color = Color.FromRgb(255, 231, 199) }, \n                    new GradientStop { Offset = 0, Color = Color.FromRgb(252, 182, 159) } \n                } \n            }, \n            new RadialGradientBrush\n            { \n                GradientStops = new GradientStopCollection \n                { \n                    new GradientStop { Offset = 1, Color = Color.FromRgb(250, 221, 125) }, \n                    new GradientStop { Offset = 0, Color = Color.FromRgb(252, 204, 45) } \n                } \n            }, \n            new RadialGradientBrush\n            { \n                GradientStops = new GradientStopCollection \n                { \n                    new GradientStop { Offset = 1, Color = Color.FromRgb(255, 231, 199) }, \n                    new GradientStop { Offset = 0, Color = Color.FromRgb(252, 182, 159) } \n                } \n            }, \n            new RadialGradientBrush\n            { \n                GradientStops = new GradientStopCollection \n                { \n                    new GradientStop { Offset = 1, Color = Color.FromRgb(221, 214, 243) }, \n                    new GradientStop { Offset = 0, Color = Color.FromRgb(250, 172, 168) } \n                } \n            }, \n            new RadialGradientBrush\n            { \n                GradientStops = new GradientStopCollection \n                { \n                    new GradientStop { Offset = 1, Color = Color.FromRgb(168, 234, 238) }, \n                    new GradientStop { Offset = 0, Color = Color.FromRgb(123, 176, 249) } \n                } \n            },\n        };\n\n        var brush = new List<Brush>();\n        allBrushes.Take(count).ToList().ForEach(item => { brush.Add(item); });\n\n        return brush;\n    }\n\n    List<Brush> CreateColdGradientPalletBrushes(int count)\n    {\n        var allBrushes = new List<LinearGradientBrush>\n        {\n            new LinearGradientBrush\n            {\n                GradientStops = new GradientStopCollection\n                {\n                    new GradientStop { Offset = 1, Color = Color.FromRgb(0, 255, 255) },\n                    new GradientStop { Offset = 0, Color = Color.FromRgb(0, 191, 255) }\n                }\n            },\n            new LinearGradientBrush\n            {\n                GradientStops = new GradientStopCollection\n                {\n                    new GradientStop { Offset = 1, Color = Color.FromRgb(0, 191, 255) },\n                    new GradientStop { Offset = 0, Color = Color.FromRgb(0, 128, 255) }\n                }\n            },\n            new LinearGradientBrush\n            {\n                GradientStops = new GradientStopCollection\n                {\n                    new GradientStop { Offset = 1, Color = Color.FromRgb(0, 128, 255) },\n                    new GradientStop { Offset = 0, Color = Color.FromRgb(0, 64, 255) }\n                }\n            },\n            new LinearGradientBrush\n            {\n                GradientStops = new GradientStopCollection\n                {\n                    new GradientStop { Offset = 1, Color = Color.FromRgb(0, 64, 255) },\n                    new GradientStop { Offset = 0, Color = Color.FromRgb(0, 0, 255) }\n                }\n            },\n            new LinearGradientBrush\n            {\n                GradientStops = new GradientStopCollection\n                {\n                    new GradientStop { Offset = 1, Color = Color.FromRgb(0, 0, 255) },\n                    new GradientStop { Offset = 0, Color = Color.FromRgb(0, 0, 191) }\n                }\n            }\n        };\n\n        var brush = new List<Brush>();\n        allBrushes.Take(count).ToList().ForEach(item => { brush.Add(item); });\n\n        return brush;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCartesianChart/TemplateSelector/ChartTemplateSelector.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class ChartTemplateSelector : DataTemplateSelector\n{\n    public DataTemplate? NormalTemplate { get; set; }\n    public DataTemplate? SelectedTemplate { get; set; }\n\n    protected override DataTemplate OnSelectTemplate(object item, BindableObject container)\n    {\n        var collectionView = container as CollectionView;\n        if (collectionView!.SelectedItem == item)\n        {\n            return SelectedTemplate!;\n        }\n        //var resource = collectionView!.SelectedItem == item ? SelectedTemplate! : NormalTemplate!;\n\n        return NormalTemplate!;\n    }\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCircularChart/SfCircularChartControlInfo.cs",
    "content": "using Syncfusion.Maui.Charts;\n\nnamespace MAUIsland.Core;\nclass SfCircularChartControlInfo : IGalleryCardInfo\n{\n    public string ControlName => nameof(SfCircularChart);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_data_pie_24_regular\n    };\n    public string ControlDetail => \"Syncfusion .NET MAUI Charts (SfCircularChart) is used to create the chart with beautiful and enhanced UI visualization of data that are used in high-quality .NET MAUI applications.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/Syncfusion/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://help.syncfusion.com/maui/circular-charts/overview\";\n    public string GroupName => ControlGroupInfo.SyncfusionControls;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfCircularChart/SfCircularChartPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class SfCircularChartPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public SfCircularChartPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    ObservableCollection<SfCircularChartMockData> mockData = default!;\n\n    [ObservableProperty]\n    string simplePieSeriesXamlCode = \"<chart:SfCircularChart>\\r\\n                        <chart:PieSeries\\r\\n                            ItemsSource=\\\"{x:Binding MockData}\\\"\\r\\n                            XBindingPath=\\\"Product\\\"\\r\\n                            YBindingPath=\\\"SalesRate\\\" />\\r\\n                    </chart:SfCircularChart>\";\n\n    [ObservableProperty]\n    string addTitleToPieSeriesXamlCode = \"<chart:SfCircularChart>\\r\\n    <chart:SfCircularChart.Title>\\r\\n        <Label Text=\\\"PRODUCT SALES\\\"/>\\r\\n    </chart:SfCircularChart.Title>\\r\\n    . . .\\r\\n</chart:SfCircularChart>\";\n\n    [ObservableProperty]\n    string enableDataLabelXamlCode = \"<chart:SfCircularChart>\\r\\n    . . .\\r\\n    <chart:PieSeries ShowDataLabels=\\\"True\\\"/>\\r\\n</chart:SfCircularChart>\";\n\n    [ObservableProperty]\n    string enableLegendXamlCode = \"<chart:SfCircularChart>\\r\\n    . . .\\r\\n    <chart:SfCircularChart.Legend>\\r\\n    <chart:ChartLegend/>\\r\\n    </chart:SfCircularChart.Legend>\\r\\n</chart:SfCircularChart>\";\n\n    [ObservableProperty]\n    string enableTooltipXamlCode = \"<chart:SfCircularChart>\\r\\n    . . .\\r\\n    <chart:PieSeries EnableTooltip=\\\"True\\\"/>\\r\\n</chart:SfCircularChart>\";\n\n    [ObservableProperty]\n    string doughnutChartXamlCode = \"<chart:SfCircularChart>\\r\\n    <chart:DoughnutSeries ItemsSource=\\\"{Binding Data}\\\" \\r\\n                        XBindingPath=\\\"Product\\\" \\r\\n                        YBindingPath=\\\"SalesRate\\\" />\\r\\n</chart:SfCircularChart>\";\n\n    [ObservableProperty]\n    string doughnutChartInnerRadiusXamlCode = \"<chart:SfCircularChart>\\r\\n    <chart:DoughnutSeries ItemsSource=\\\"{Binding Data}\\\"\\r\\n\\t\\t\\t\\t\\t\\tInnerRadius=\\\"0.7\\\"\\t\\t  \\r\\n\\t\\t\\t\\t\\t\\tXBindingPath=\\\"Product\\\"\\r\\n\\t\\t\\t\\t\\t\\tYBindingPath=\\\"SalesRate\\\" />\\r\\n</chart:SfCircularChart>\";\n\n    [ObservableProperty]\n    string semiDoughnutChartXamlCode = \"<chart:SfCircularChart>\\r\\n    <chart:DoughnutSeries StartAngle=\\\"180\\\" EndAngle=\\\"360\\\"\\r\\n                    ItemsSource=\\\"{Binding Data}\\\"\\r\\n                    XBindingPath=\\\"Product\\\" \\r\\n                    YBindingPath=\\\"SalesRate\\\" />\\r\\n</chart:SfCircularChart>\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n        MockData = new ObservableCollection<SfCircularChartMockData>()\n        {\n            new SfCircularChartMockData(){Product = \"iPad\", SalesRate = 25},\n            new SfCircularChartMockData(){Product = \"iPhone\", SalesRate = 35},\n            new SfCircularChartMockData(){Product = \"MacBook\", SalesRate = 15},\n            new SfCircularChartMockData(){Product = \"Mac\", SalesRate = 5},\n            new SfCircularChartMockData(){Product = \"Others\", SalesRate = 10},\n        };\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}\n\n\npublic class SfCircularChartMockData\n{\n    public string Product { get; set; }\n    public double SalesRate { get; set; }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfComboBox/SfComboBoxControlInfo.cs",
    "content": "using Syncfusion.Maui.Inputs;\n\nnamespace MAUIsland.Core;\nclass SfComboBoxControlInfo : IGalleryCardInfo\n{\n    public string ControlName => nameof(SfComboBox);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_caret_down_24_regular\n    };\n    public string ControlDetail => \"The .NET MAUI ComboBox control is a selection component that allows users to type a value or choose an option from a list of predefined options. It has many features, such as data binding, editing, searching, clear button and dropdown button customization, and more.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/Syncfusion/Controls/{ControlName}\";\n    public string DocumentUrl => \"https://help.syncfusion.com/maui/combobox/overview\";\n    public string GroupName => ControlGroupInfo.SyncfusionControls;\n\n    public GalleryCardType CardType => GalleryCardType.Control;\n\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfComboBox/SfComboBoxPageViewModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class SfComboBoxPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n\n    public SfComboBoxPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    ObservableCollection<SocialMedia> items = default!;\n\n    [ObservableProperty]\n    bool isBusy;\n\n    [ObservableProperty]\n    ControlGroupInfo controlGroupInfo = default!;\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlGroupInfo = query.GetData<ControlGroupInfo>();\n\n        LoadDataAsync(true)\n            .FireAndForget();\n    }\n    #endregion\n\n    #region [ Methods ]\n\n    private async Task LoadDataAsync(bool forced)\n    {\n        if (IsBusy) return;\n        IsBusy = true;\n\n        var items = new List<SocialMedia>();\n        items.Add(new SocialMedia() { Name = \"Facebook\", ID = 0 });\n        items.Add(new SocialMedia() { Name = \"Google Plus\", ID = 1 });\n        items.Add(new SocialMedia() { Name = \"Instagram\", ID = 2 });\n        items.Add(new SocialMedia() { Name = \"LinkedIn\", ID = 3 });\n        items.Add(new SocialMedia() { Name = \"Skype\", ID = 4 });\n        items.Add(new SocialMedia() { Name = \"Telegram\", ID = 5 });\n        items.Add(new SocialMedia() { Name = \"Televzr\", ID = 6 });\n        items.Add(new SocialMedia() { Name = \"Tik Tok\", ID = 7 });\n        items.Add(new SocialMedia() { Name = \"Tout\", ID = 8 });\n        items.Add(new SocialMedia() { Name = \"Tumblr\", ID = 9 });\n        items.Add(new SocialMedia() { Name = \"Twitter\", ID = 10 });\n        items.Add(new SocialMedia() { Name = \"Vimeo\", ID = 11 });\n        items.Add(new SocialMedia() { Name = \"WhatsApp\", ID = 12 });\n        items.Add(new SocialMedia() { Name = \"YouTube\", ID = 13 });\n\n        IsBusy = false;\n\n        if (Items == null)\n        {\n            Items = new(items);\n            return;\n        }\n\n        if (forced)\n        {\n            Items.Clear();\n        }\n\n        foreach (var item in items)\n        {\n            Items.Add(item);\n        }\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n    #endregion\n\n}\n\npublic class SocialMedia\n{\n    public string Name { get; set; }\n    public int ID { get; set; }\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfDataGrid/SfDataGridControlInfo.cs",
    "content": "using Syncfusion.Maui.DataGrid;\n\nnamespace MAUIsland.Core;\nclass SfDataGridControlInfo : IGalleryCardInfo\n{\n    public string ControlName => nameof(SfDataGrid);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_table_24_regular\n    };\n    public string ControlDetail => \"The .NET MAUI DataGrid control is used to display and manipulate data in a tabular view. It was built from the ground up to achieve the best possible performance, even when loading large amounts of data.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/Syncfusion/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://help.syncfusion.com/maui/datagrid/overview\";\n    public string GroupName => ControlGroupInfo.SyncfusionControls;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfDataGrid/SfDataGridPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class SfDataGridPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public SfDataGridPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    ObservableCollection<SfDataGridMockData> orderInfo = default!;\n\n    [ObservableProperty]\n    string simpleDataGridXamlCode = \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" ?>\\r\\n<ContentPage xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n             xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n              xmlns:syncfusion=\\\"clr-namespace:Syncfusion.Maui.DataGrid;assembly=Syncfusion.Maui.DataGrid\\\"\\r\\n              xmlns:local=\\\"clr-namespace:GettingStarted\\\"\\r\\n             x:Class=\\\"GettingStarted.MainPage\\\">\\r\\n\\r\\n    <ContentPage.BindingContext>\\r\\n        <local:OrderInfoRepository x:Name=\\\"viewModel\\\" />\\r\\n    </ContentPage.BindingContext>\\r\\n\\r\\n    <ContentPage.Content>\\r\\n        <syncfusion:SfDataGrid x:Name=\\\"dataGrid\\\"\\r\\n                               ItemsSource=\\\"{Binding OrderInfoCollection}\\\">\\r\\n        </syncfusion:SfDataGrid>\\r\\n    </ContentPage.Content>\\r\\n</ContentPage>\";\n\n    [ObservableProperty]\n    string definingColumnsXamlCode = \"<syncfusion:SfDataGrid x:Name=\\\"dataGrid\\\"\\r\\n            ColumnWidthMode=\\\"Fill\\\"\\r\\n            AutoGenerateColumnsMode=\\\"None\\\"\\r\\n            ItemsSource=\\\"{Binding OrderInfoCollection}\\\">\\r\\n\\r\\n    <syncfusion:SfDataGrid.Columns>\\r\\n        <syncfusion:DataGridTextColumn HeaderText=\\\"ID\\\"\\r\\n                                   MappingName=\\\"OrderID\\\"/>\\r\\n        <syncfusion:DataGridTextColumn HeaderText=\\\"Customer\\\"\\r\\n                                   MappingName=\\\"CustomerID\\\"/>\\r\\n        <syncfusion:DataGridTextColumn MappingName=\\\"Customer\\\"/>\\r\\n        <syncfusion:DataGridTextColumn HeaderText=\\\"Country\\\"\\r\\n                                   MappingName=\\\"ShipCountry\\\"/>\\r\\n    </syncfusion:SfDataGrid.Columns>\\r\\n</syncfusion:SfDataGrid>\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n        OrderInfo = new();\n\n        GenerateOrders();\n\n    }\n    #endregion\n\n    #region [ Methods ]\n    public void GenerateOrders()\n    {\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1001\", CustomerId = \"Maria Anders\", Customer = \"Germany\", ShipCity = \"ALFKI\", ShipCountry = \"Berlin\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1002\", CustomerId = \"Ana Trujillo\", Customer = \"Mexico\", ShipCity = \"ANATR\", ShipCountry = \"Mexico D}F.\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1003\", CustomerId = \"Ant Fuller\", Customer = \"Mexico\", ShipCity = \"ANTON\", ShipCountry = \"Mexico D}F.\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1004\", CustomerId = \"Thomas Hardy\", Customer = \"UK\", ShipCity = \"AROUT\", ShipCountry = \"London\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1005\", CustomerId = \"Tim Adams\", Customer = \"Sweden\", ShipCity = \"BERGS\", ShipCountry = \"London\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1006\", CustomerId = \"Hanna Moos\", Customer = \"Germany\", ShipCity = \"BLAUS\", ShipCountry = \"Mannheim\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1007\", CustomerId = \"Andrew Fuller\", Customer = \"France\", ShipCity = \"BLONP\", ShipCountry = \"Strasbourg\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1008\", CustomerId = \"Martin King\", Customer = \"Spain\", ShipCity = \"BOLID\", ShipCountry = \"Madrid\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1009\", CustomerId = \"Lenny Lin\", Customer = \"France\", ShipCity = \"BONAP\", ShipCountry = \"Marsiella\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1010\", CustomerId = \"John Carter\", Customer = \"Canada\", ShipCity = \"BOTTM\", ShipCountry = \"Lenny Lin\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1011\", CustomerId = \"Laura King\", Customer = \"UK\", ShipCity = \"AROUT\", ShipCountry = \"London\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1012\", CustomerId = \"Anne Wilson\", Customer = \"Germany\", ShipCity = \"BLAUS\", ShipCountry = \"Mannheim\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1013\", CustomerId = \"Martin King\", Customer = \"France\", ShipCity = \"BLONP\", ShipCountry = \"Strasbourg\" });\n        OrderInfo.Add(new SfDataGridMockData() { OrderId = \"1014\", CustomerId = \"Gina Irene\", Customer = \"UK\", ShipCity = \"AROUT\", ShipCountry = \"London\" });\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}\n\npublic partial class SfDataGridMockData : BaseModel\n{\n    [ObservableProperty]\n    string orderId;\n\n    [ObservableProperty]\n    string customerId;\n\n    [ObservableProperty]\n    string customer;\n\n    [ObservableProperty]\n    string shipCity;\n\n    [ObservableProperty]\n    string shipCountry;\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfListView/SfListViewControlInfo.cs",
    "content": "using Syncfusion.Maui.ListView;\n\nnamespace MAUIsland.Core;\nclass SfListViewControlInfo : IGalleryCardInfo\n{\n    public string ControlName => nameof(SfListView);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_apps_list_24_regular\n    };\n    public string ControlDetail => \"The Syncfusion .NET MAUI ListView renders set of data items using Maui views or custom templates. Data can easily be grouped, sorted, and filtered.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/Syncfusion/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://help.syncfusion.com/maui/listview/overview\";\n    public string GroupName => ControlGroupInfo.SyncfusionControls;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfListView/SfListViewPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class SfListViewPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ Fields ]\n\n    private readonly IControlsService mauiControlsService;\n    #endregion\n    public SfListViewPageViewModel(\n        IAppNavigator appNavigator,\n        IControlsService mauiControlsService\n    ) : base(appNavigator)\n    {\n        this.mauiControlsService = mauiControlsService;\n    }\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    int span = 5;\n\n    [ObservableProperty]\n    bool isBusy;\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> mauiAllControlsItems = default!;\n\n    [ObservableProperty]\n    ControlGroupInfo controlGroup = default!;\n    #endregion\n\n    #region [ RelayCommand ]\n\n    [RelayCommand]\n    Task NavigateToDetailAsync(string controlRoute) => AppNavigator.NavigateAsync(controlRoute);\n\n    #endregion\n\n    #region [ Override ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlGroup = query.GetData<ControlGroupInfo>();\n\n        LoadDataAsync(true)\n            .FireAndForget();\n    }\n    #endregion\n\n    #region [ Methods ]\n    private async Task LoadDataAsync(bool forced)\n    {\n        if (IsBusy) return;\n        IsBusy = true;\n\n\n        var items = await mauiControlsService.GetControlsAsync(ControlGroupInfo.SyncfusionControls);\n\n        IsBusy = false;\n\n\n        if (MauiAllControlsItems == null)\n        {\n            MauiAllControlsItems = new ObservableCollection<IGalleryCardInfo>(items);\n            return;\n        }\n\n        if (forced)\n        {\n            MauiAllControlsItems.Clear();\n        }\n\n        foreach (var item in items)\n        {\n            MauiAllControlsItems.Add(item);\n        }\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfMaps/MapViewModels/AustraliaViewModel.cs",
    "content": "#region Copyright Syncfusion Inc. 2001-2023.\n// Copyright Syncfusion Inc. 2001-2023. All rights reserved.\n// Use of this code is subject to the terms of our license.\n// A copy of the current license can be obtained at any time by e-mailing\n// licensing@syncfusion.com. Any infringement will be prosecuted under\n// applicable laws. \n#endregion\nnamespace MAUIsland.Core;\npublic class AustraliaViewModel\n{\n    public ObservableCollection<AustraliaModel> Data { get; set; }\n\n    public AustraliaViewModel()\n    {\n        Data = new ObservableCollection<AustraliaModel>()\n            {\n                new AustraliaModel(\"New South Wales\",5),\n                new AustraliaModel(\"Queensland\",23),\n                new AustraliaModel(\"Northern Territory\",56),\n                new AustraliaModel(\"Victoria\",16),\n                new AustraliaModel(\"Western Australia\",43),\n                new AustraliaModel(\"South Australia\",26)\n           };\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfMaps/MapViewModels/MarkerViewModel.cs",
    "content": "using Syncfusion.Maui.Maps;\n\nnamespace MAUIsland.Core;\n\npublic class MarkerViewModel\n{\n    public ObservableCollection<CustomMarker> Markers { get; set; }\n\n    public MarkerViewModel()\n    {\n        this.Markers = new ObservableCollection<CustomMarker>();\n        var currentTime = DateTime.UtcNow;\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = 47.60621,\n            Longitude = -122.332071,\n            Name = \"Seattle\",\n            Time = currentTime.Subtract(new TimeSpan(7, 0, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n\n\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = -1.455833,\n            Longitude = -48.503887,\n            Name = \"Belem\",\n            Time = currentTime.Subtract(new TimeSpan(3, 0, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = 64.10,\n            Longitude = -51.44,\n            Name = \"Nuuk\",\n            Time = currentTime.Subtract(new TimeSpan(2, 0, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = 62.035452,\n            Longitude = 129.675475,\n            Name = \"Yakutsk\",\n            Time = currentTime.Add(new TimeSpan(9, 0, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = 28.704059,\n            Longitude = 77.10249,\n            Name = \"Delhi\",\n            Time = currentTime.Add(new TimeSpan(5, 30, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = -27.469771,\n            Longitude = 153.025124,\n            Name = \"Brisbane\",\n            Time = currentTime.Add(new TimeSpan(10, 0, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = -17.825166,\n            Longitude = 31.03351,\n            Name = \"Harare\",\n            Time = currentTime.Add(new TimeSpan(2, 0, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfMaps/MapViewModels/SelectionViewModel.cs",
    "content": "#region Copyright Syncfusion Inc. 2001-2023.\n// Copyright Syncfusion Inc. 2001-2023. All rights reserved.\n// Use of this code is subject to the terms of our license.\n// A copy of the current license can be obtained at any time by e-mailing\n// licensing@syncfusion.com. Any infringement will be prosecuted under\n// applicable laws. \n#endregion\nnamespace MAUIsland.Core;\n\npublic class SelectionViewModel\n{\n    public ObservableCollection<PopulationDensityDetails> StateWiseElectionResult { get; set; }\n    public SelectionViewModel()\n    {\n        StateWiseElectionResult = new ObservableCollection<PopulationDensityDetails>() {\n      new PopulationDensityDetails(\n          \"Washington\",\n          \"DC\",\n          22,\n          116,\n          44.8),\n      new PopulationDensityDetails(\n          \"Oregon\",\n          \"OR\",\n          39,\n          44.1,\n          17.0),\n      new PopulationDensityDetails(\n          \"Alabama\",\n          \"AL\",\n          27,\n          99.2,\n          38.3),\n      new PopulationDensityDetails(\n          \"Alaska\",\n          \"AK\",\n          50,\n          1.3,\n          0.5),\n      new PopulationDensityDetails(\n          \"Arizona\",\n          \"AZ\",\n          33,\n          63.0,\n          24.3),\n      new PopulationDensityDetails(\n          \"Arkansas\",\n          \"AR\",\n          34,\n          57.9,\n          22.3),\n      new PopulationDensityDetails(\n          \"California\",\n          \"CA\",\n          11,\n          254,\n          98.0),\n      new PopulationDensityDetails(\n          \"Colorado\",\n          \"CO\",\n          37,\n          54.3,\n          21.5),\n      new PopulationDensityDetails(\n          \"Connecticut\",\n          \"CT\",\n          4,\n          745,\n          288),\n      new PopulationDensityDetails(\n          \"Delaware\",\n          \"DE\",\n          6,\n          508,\n          196),\n      new PopulationDensityDetails(\n          \"Florida\",\n          \"FL\",\n          8,\n          402,\n          155),\n      new PopulationDensityDetails(\n          \"Georgia\",\n          \"GA\",\n          17,\n          186,\n          71.9),\n      new PopulationDensityDetails(\n          \"Hawaii\",\n          \"HI\",\n          13,\n          227,\n          87.5),\n      new PopulationDensityDetails(\n          \"Idaho\",\n          \"ID\",\n          44,\n          22.3,\n          8.6),\n      new PopulationDensityDetails(\n          \"Illinois\",\n          \"IL\",\n          12,\n          231,\n          89.1),\n      new PopulationDensityDetails(\n          \"Indiana\",\n          \"IN\",\n          16,\n          189,\n          73.1),\n      new PopulationDensityDetails(\n          \"Iowa\",\n          \"IA\",\n          36,\n          57.1,\n          22.1),\n      new PopulationDensityDetails(\n          \"Kansas\",\n          \"KS\",\n          41,\n          35.9,\n          13.9),\n      new PopulationDensityDetails(\n          \"Kentucky\",\n          \"KY\",\n          23,\n          114,\n          44.1),\n      new PopulationDensityDetails(\n          \"Louisiana\",\n          \"LA\",\n          26,\n          108,\n          41.6),\n      new PopulationDensityDetails(\n          \"Maine\",\n          \"ME\",\n          38,\n          44.2,\n          17.1),\n      new PopulationDensityDetails(\n          \"Maryland\",\n          \"MD\",\n          5,\n          636,\n          246),\n      new PopulationDensityDetails(\n          \"Massachusetts\",\n          \"MA\",\n          3,\n          901,\n          348),\n      new PopulationDensityDetails(\n          \"Michigan\",\n          \"MI\",\n          18,\n          178,\n          68.8),\n      new PopulationDensityDetails(\n          \"Minnesota\",\n          \"MN\",\n          30,\n          71.7,\n          27.7),\n      new PopulationDensityDetails(\n          \"Mississippi\",\n          \"MS\",\n          32,\n          63.1,\n          24.4),\n      new PopulationDensityDetails(\n          \"Missouri\",\n          \"MO\",\n          28,\n          89.5,\n          34.6),\n      new PopulationDensityDetails(\n          \"Montana\",\n          \"MT\",\n          48,\n          7.5,\n          2.9),\n      new PopulationDensityDetails(\n          \"Nebraska\",\n          \"NE\",\n          43,\n          25.5,\n          9.9),\n      new PopulationDensityDetails(\n          \"Nevada\",\n          \"NV\",\n          42,\n          28.3,\n          10.9),\n      new PopulationDensityDetails(\n          \"New Hampshire\",\n          \"NH\",\n          21,\n          154,\n          59.4),\n      new PopulationDensityDetails(\n          \"New Jersey\",\n          \"NJ\",\n          1,\n          1263,\n          488),\n      new PopulationDensityDetails(\n          \"New Mexico\",\n          \"NM\",\n          45,\n          17.5,\n          6.7 ),\n      new PopulationDensityDetails(\n          \"New York\",\n          \"NY\",\n          7,\n          429,\n          166),\n      new PopulationDensityDetails(\n          \"North Carolina\",\n          \"NC\",\n          15,\n          215,\n          82.9),\n      new PopulationDensityDetails(\n          \"North Dakota\",\n          \"ND\",\n          47,\n          11.3,\n          4.4),\n      new PopulationDensityDetails(\n          \"Ohio\",\n          \"OH\",\n          10,\n          289,\n          111),\n      new PopulationDensityDetails(\n          \"Oklahoma\",\n          \"OK\",\n          35,\n          57.7,\n          22.3),\n      new PopulationDensityDetails(\n          \"Pennsylvania\",\n          \"PA\",\n          9,\n          291,\n          112),\n      new PopulationDensityDetails(\n          \"Rhode Island\",\n          \"RI\",\n          2,\n          1061,\n          410),\n      new PopulationDensityDetails(\n          \"South Carolina\",\n          \"SC\",\n          19,\n          170,\n          65.7),\n      new PopulationDensityDetails(\n          \"South Dakota\",\n          \"SD\",\n          46,\n          11.7,\n          4.5),\n      new PopulationDensityDetails(\n          \"Tennessee\",\n          \"TN\",\n          20,\n          168,\n          64.7),\n      new PopulationDensityDetails(\n          \"Texas\",\n          \"TX\",\n          24,\n          112,\n          43.1),\n      new PopulationDensityDetails(\n          \"Utah\",\n          \"UT\",\n          40,\n          39.8,\n          15.4),\n      new PopulationDensityDetails(\n          \"Vermont\",\n          \"VT\",\n          31,\n          69.8,\n          26.9),\n      new PopulationDensityDetails(\n          \"Virginia\",\n          \"VA\",\n          14,\n          219,\n          84.4),\n      new PopulationDensityDetails(\n          \"West Virginia\",\n          \"WV\",\n          29,\n          74.6,\n          28.8),\n      new PopulationDensityDetails(\n          \"Wisconsin\",\n          \"WI\",\n          25,\n          109,\n          42.0),\n      new PopulationDensityDetails(\n          \"Wyoming\",\n          \"WY\",\n          49,\n          5.9,\n          2.3),\n        };\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfMaps/Marker/CustomMarker.cs",
    "content": "#region Copyright Syncfusion Inc. 2001-2023.\n// Copyright Syncfusion Inc. 2001-2023. All rights reserved.\n// Use of this code is subject to the terms of our license.\n// A copy of the current license can be obtained at any time by e-mailing\n// licensing@syncfusion.com. Any infringement will be prosecuted under\n// applicable laws. \n#endregion\n\nusing Syncfusion.Maui.Maps;\nusing System.ComponentModel;\nusing System.Runtime.CompilerServices;\n\nnamespace MAUIsland.Core;\n\npublic class CustomMarker : MapMarker, INotifyPropertyChanged\n{\n    public new event PropertyChangedEventHandler? PropertyChanged;\n\n    protected virtual void NotifyPropertyChanged([CallerMemberName] string propertyName = \"\")\n    {\n        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));\n    }\n    private string? name;\n    public string? Name\n    {\n        get\n        {\n            return name;\n        }\n        set\n        {\n            if (name != value)\n            {\n                name = value;\n                NotifyPropertyChanged();\n            }\n        }\n    }\n\n    private string? state;\n    public string? State\n    {\n        get\n        {\n            return state;\n        }\n        set\n        {\n            if (state != value)\n            {\n                state = value;\n                NotifyPropertyChanged();\n            }\n        }\n    }\n\n    private string? country;\n    public string? Country\n    {\n        get\n        {\n            return country;\n        }\n        set\n        {\n            if (country != value)\n            {\n                country = value;\n                NotifyPropertyChanged();\n            }\n        }\n    }\n\n    private string? time;\n    public string? Time\n    {\n        get\n        {\n            return time;\n        }\n        set\n        {\n            if (time != value)\n            {\n                time = value;\n                NotifyPropertyChanged();\n            }\n        }\n    }\n\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfMaps/Models/AustraliaModel.cs",
    "content": "namespace MAUIsland.Core;\npublic class AustraliaModel\n{\n    public AustraliaModel(string state, int size)\n    {\n        State = state;\n        Size = size;\n    }\n\n    public string State\n    {\n        get;\n        set;\n    }\n\n    public int Size\n    {\n        get;\n        set;\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfMaps/Models/PopulationDensityDetails.cs",
    "content": "using Syncfusion.Maui.Maps;\n\nnamespace MAUIsland;\npublic class PopulationDensityDetails\n{\n    public string State { get; set; }\n    public string StateCode { get; set; }\n    public int Rank { get; set; }\n    public double SquareMiles { get; set; }\n    public double SquareKilometer { get; set; }\n\n    public PopulationDensityDetails(string state, string stateCode, int rank, double squareMiles, double squareKilometer)\n    {\n        this.State = state;\n        this.StateCode = stateCode;\n        this.Rank = rank;\n        this.SquareMiles = squareMiles;\n        this.SquareKilometer = squareKilometer;\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfMaps/SfMapsControlInfo.cs",
    "content": "using Syncfusion.Maui.Maps;\n\nnamespace MAUIsland.Core;\nclass SfMapsControlInfo : IGalleryCardInfo\n{\n    public string ControlName => nameof(SfMaps);\n    public string ControlRoute => $\"MAUIsland.{ControlName}ViewPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_map_24_regular\n    };\n    public string ControlDetail => \"Maps is a powerful data visualization component that displays statistical informationfor a geographical area. It has highly interactive and customizable featuressuch as selection, tooltip, legends, markers, bubbles, and color mapping. Userscan generate maps for population density, sales, political boundaries, weather,elections, and routes\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/Syncfusion/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://help.syncfusion.com/maui/maps/overview\";\n    public string GroupName => ControlGroupInfo.SyncfusionControls;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfMaps/SfMapsViewPageViewModel.cs",
    "content": "using Syncfusion.Maui.Maps;\n\nnamespace MAUIsland.Core;\npublic partial class SfMapsViewPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n\n    public SfMapsViewPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n        data = new ObservableCollection<Model>\n        {\n            new Model(\"New South Wales\", \"New\\nSouth Wales\", 1),\n            new Model(\"Queensland\", \"Queensland\", 2),\n            new Model(\"Northern Territory\", \"Northern\\nTerritory\", 3),\n            new Model(\"Victoria\", \"Victoria\", 4),\n            new Model(\"Tasmania\", \"Tasmania\", 5),\n            new Model(\"Western Australia\", \"Western Australia\", 6),\n            new Model(\"South Australia\", \"South Australia\", 7)\n        };\n\n        dataSize = new ObservableCollection<MapTooltipData>\n        {\n            new MapTooltipData(\"New South Wales\", 1),\n            new MapTooltipData(\"Queensland\", 2),\n            new MapTooltipData(\"Northern Territory\", 3),\n            new MapTooltipData(\"Victoria\", 4),\n            new MapTooltipData(\"Tasmania\", 5),\n            new MapTooltipData(\"Western Australia\", 6),\n            new MapTooltipData(\"South Australia\", 7)\n        };\n\n        stateWiseElectionResult = new ObservableCollection<PopulationDensityDetails>() {\n      new PopulationDensityDetails(\n          \"Washington\",\n          \"DC\",\n          22,\n          116,\n          44.8),\n      new PopulationDensityDetails(\n          \"Oregon\",\n          \"OR\",\n          39,\n          44.1,\n          17.0),\n      new PopulationDensityDetails(\n          \"Alabama\",\n          \"AL\",\n          27,\n          99.2,\n          38.3),\n      new PopulationDensityDetails(\n          \"Alaska\",\n          \"AK\",\n          50,\n          1.3,\n          0.5),\n      new PopulationDensityDetails(\n          \"Arizona\",\n          \"AZ\",\n          33,\n          63.0,\n          24.3),\n      new PopulationDensityDetails(\n          \"Arkansas\",\n          \"AR\",\n          34,\n          57.9,\n          22.3),\n      new PopulationDensityDetails(\n          \"California\",\n          \"CA\",\n          11,\n          254,\n          98.0),\n      new PopulationDensityDetails(\n          \"Colorado\",\n          \"CO\",\n          37,\n          54.3,\n          21.5),\n      new PopulationDensityDetails(\n          \"Connecticut\",\n          \"CT\",\n          4,\n          745,\n          288),\n      new PopulationDensityDetails(\n          \"Delaware\",\n          \"DE\",\n          6,\n          508,\n          196),\n      new PopulationDensityDetails(\n          \"Florida\",\n          \"FL\",\n          8,\n          402,\n          155),\n      new PopulationDensityDetails(\n          \"Georgia\",\n          \"GA\",\n          17,\n          186,\n          71.9),\n      new PopulationDensityDetails(\n          \"Hawaii\",\n          \"HI\",\n          13,\n          227,\n          87.5),\n      new PopulationDensityDetails(\n          \"Idaho\",\n          \"ID\",\n          44,\n          22.3,\n          8.6),\n      new PopulationDensityDetails(\n          \"Illinois\",\n          \"IL\",\n          12,\n          231,\n          89.1),\n      new PopulationDensityDetails(\n          \"Indiana\",\n          \"IN\",\n          16,\n          189,\n          73.1),\n      new PopulationDensityDetails(\n          \"Iowa\",\n          \"IA\",\n          36,\n          57.1,\n          22.1),\n      new PopulationDensityDetails(\n          \"Kansas\",\n          \"KS\",\n          41,\n          35.9,\n          13.9),\n      new PopulationDensityDetails(\n          \"Kentucky\",\n          \"KY\",\n          23,\n          114,\n          44.1),\n      new PopulationDensityDetails(\n          \"Louisiana\",\n          \"LA\",\n          26,\n          108,\n          41.6),\n      new PopulationDensityDetails(\n          \"Maine\",\n          \"ME\",\n          38,\n          44.2,\n          17.1),\n      new PopulationDensityDetails(\n          \"Maryland\",\n          \"MD\",\n          5,\n          636,\n          246),\n      new PopulationDensityDetails(\n          \"Massachusetts\",\n          \"MA\",\n          3,\n          901,\n          348),\n      new PopulationDensityDetails(\n          \"Michigan\",\n          \"MI\",\n          18,\n          178,\n          68.8),\n      new PopulationDensityDetails(\n          \"Minnesota\",\n          \"MN\",\n          30,\n          71.7,\n          27.7),\n      new PopulationDensityDetails(\n          \"Mississippi\",\n          \"MS\",\n          32,\n          63.1,\n          24.4),\n      new PopulationDensityDetails(\n          \"Missouri\",\n          \"MO\",\n          28,\n          89.5,\n          34.6),\n      new PopulationDensityDetails(\n          \"Montana\",\n          \"MT\",\n          48,\n          7.5,\n          2.9),\n      new PopulationDensityDetails(\n          \"Nebraska\",\n          \"NE\",\n          43,\n          25.5,\n          9.9),\n      new PopulationDensityDetails(\n          \"Nevada\",\n          \"NV\",\n          42,\n          28.3,\n          10.9),\n      new PopulationDensityDetails(\n          \"New Hampshire\",\n          \"NH\",\n          21,\n          154,\n          59.4),\n      new PopulationDensityDetails(\n          \"New Jersey\",\n          \"NJ\",\n          1,\n          1263,\n          488),\n      new PopulationDensityDetails(\n          \"New Mexico\",\n          \"NM\",\n          45,\n          17.5,\n          6.7 ),\n      new PopulationDensityDetails(\n          \"New York\",\n          \"NY\",\n          7,\n          429,\n          166),\n      new PopulationDensityDetails(\n          \"North Carolina\",\n          \"NC\",\n          15,\n          215,\n          82.9),\n      new PopulationDensityDetails(\n          \"North Dakota\",\n          \"ND\",\n          47,\n          11.3,\n          4.4),\n      new PopulationDensityDetails(\n          \"Ohio\",\n          \"OH\",\n          10,\n          289,\n          111),\n      new PopulationDensityDetails(\n          \"Oklahoma\",\n          \"OK\",\n          35,\n          57.7,\n          22.3),\n      new PopulationDensityDetails(\n          \"Pennsylvania\",\n          \"PA\",\n          9,\n          291,\n          112),\n      new PopulationDensityDetails(\n          \"Rhode Island\",\n          \"RI\",\n          2,\n          1061,\n          410),\n      new PopulationDensityDetails(\n          \"South Carolina\",\n          \"SC\",\n          19,\n          170,\n          65.7),\n      new PopulationDensityDetails(\n          \"South Dakota\",\n          \"SD\",\n          46,\n          11.7,\n          4.5),\n      new PopulationDensityDetails(\n          \"Tennessee\",\n          \"TN\",\n          20,\n          168,\n          64.7),\n      new PopulationDensityDetails(\n          \"Texas\",\n          \"TX\",\n          24,\n          112,\n          43.1),\n      new PopulationDensityDetails(\n          \"Utah\",\n          \"UT\",\n          40,\n          39.8,\n          15.4),\n      new PopulationDensityDetails(\n          \"Vermont\",\n          \"VT\",\n          31,\n          69.8,\n          26.9),\n      new PopulationDensityDetails(\n          \"Virginia\",\n          \"VA\",\n          14,\n          219,\n          84.4),\n      new PopulationDensityDetails(\n          \"West Virginia\",\n          \"WV\",\n          29,\n          74.6,\n          28.8),\n      new PopulationDensityDetails(\n          \"Wisconsin\",\n          \"WI\",\n          25,\n          109,\n          42.0),\n      new PopulationDensityDetails(\n          \"Wyoming\",\n          \"WY\",\n          49,\n          5.9,\n          2.3),\n        };\n\n        AustraliaData = new ObservableCollection<AustraliaModel>()\n        {\n            new AustraliaModel(\"New South Wales\",5),\n            new AustraliaModel(\"Queensland\",23),\n            new AustraliaModel(\"Northern Territory\",56),\n            new AustraliaModel(\"Victoria\",16),\n            new AustraliaModel(\"Western Australia\",43),\n            new AustraliaModel(\"South Australia\",26)\n        };\n        CreateMarker();\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    public ObservableCollection<Model> data;\n\n    [ObservableProperty]\n    public ObservableCollection<MapTooltipData> dataSize;\n\n    [ObservableProperty]\n    public ObservableCollection<PopulationDensityDetails> stateWiseElectionResult;\n\n    public ObservableCollection<AustraliaModel> AustraliaData { get; set; }\n\n    public ObservableCollection<CustomMarker> Markers { get; set; }\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation;\n\n    #region Xaml code\n\n    [ObservableProperty]\n    string markerLayerSource = \"<Grid Margin=\\\"20\\\">\\r\\n                <Grid.RowDefinitions>\\r\\n                    <RowDefinition Height=\\\"Auto\\\" />\\r\\n                    <RowDefinition />\\r\\n                </Grid.RowDefinitions>\\r\\n                <Label Grid.Row=\\\"0\\\"\\r\\n                   HorizontalOptions=\\\"Center\\\"\\r\\n                   Text=\\\"World Clock\\\"\\r\\n                   FontSize=\\\"Subtitle\\\"\\r\\n                   Margin=\\\"0,0,0,20\\\" />\\r\\n                <maps:SfMaps Grid.Row=\\\"1\\\">\\r\\n                    <maps:SfMaps.Layer>\\r\\n                        <maps:MapShapeLayer x:Name=\\\"markerLayer\\\"\\r\\n                                        ShapeHoverFill=\\\"Transparent\\\"\\r\\n                                        ShapeHoverStroke=\\\"Transparent\\\"\\r\\n                                        ShapeHoverStrokeThickness=\\\"0\\\"\\r\\n                                        ShapeFill=\\\"#dadadb\\\"\\r\\n                                        ShapeStrokeThickness=\\\"0\\\"\\r\\n                                        Markers=\\\"{Binding Markers}\\\"\\r\\n                                        MarkerTemplate=\\\"{StaticResource markerTemplate}\\\">\\r\\n                        </maps:MapShapeLayer>\\r\\n                    </maps:SfMaps.Layer>\\r\\n                </maps:SfMaps>\\r\\n            </Grid>\";\n    [ObservableProperty]\n    string shapeLayerSource = \"<Grid Margin=\\\"20\\\">\\r\\n                <Grid.RowDefinitions>\\r\\n                    <RowDefinition Height=\\\"Auto\\\" />\\r\\n                    <RowDefinition />\\r\\n                </Grid.RowDefinitions>\\r\\n\\r\\n                <Label Grid.ColumnSpan=\\\"2\\\"\\r\\n                   HorizontalOptions=\\\"Center\\\"\\r\\n                   Text=\\\"Rivers in Australia\\\"\\r\\n                   FontSize=\\\"Subtitle\\\"\\r\\n                   Margin=\\\"0,0,0,20\\\" />\\r\\n\\r\\n                <maps:SfMaps Grid.Row=\\\"1\\\">\\r\\n                    <maps:SfMaps.Layer>\\r\\n                        <maps:MapShapeLayer x:Name=\\\"shapeLayer\\\"\\r\\n                                        DataSource=\\\"{Binding AustraliaData}\\\"\\r\\n                                        PrimaryValuePath=\\\"State\\\"\\r\\n                                        ShapeDataField=\\\"STATE_NAME\\\"\\r\\n                                        ShapeFill=\\\"#fef6d6\\\"\\r\\n                                        ShapeStroke=\\\"#DBB589\\\"\\r\\n                                        ShapeHoverFill=\\\"Transparent\\\"\\r\\n                                        ShapeHoverStroke=\\\"Transparent\\\"\\r\\n                                        ShowDataLabels=\\\"True\\\">\\r\\n\\r\\n                            <maps:MapShapeLayer.DataLabelSettings>\\r\\n                                <maps:MapDataLabelSettings DataLabelPath=\\\"State\\\">\\r\\n                                    <maps:MapDataLabelSettings.DataLabelStyle>\\r\\n                                        <maps:MapLabelStyle FontSize=\\\"12\\\" />\\r\\n                                    </maps:MapDataLabelSettings.DataLabelStyle>\\r\\n                                </maps:MapDataLabelSettings>\\r\\n                            </maps:MapShapeLayer.DataLabelSettings>\\r\\n\\r\\n                            <maps:MapShapeLayer.Sublayers>\\r\\n                                <maps:MapShapeSublayer x:Name=\\\"sublayer\\\" \\r\\n                                                   ShapeStroke=\\\"#00A7CC\\\" \\r\\n                                                   ShapeStrokeThickness=\\\"2\\\"/>\\r\\n                            </maps:MapShapeLayer.Sublayers>\\r\\n                        </maps:MapShapeLayer>\\r\\n                    </maps:SfMaps.Layer>\\r\\n                </maps:SfMaps>\\r\\n            </Grid>\";\n\n    [ObservableProperty]\n    string selectionLayerSource = \"<Grid Margin=\\\"20\\\"\\r\\n              x:Name=\\\"sampleGrid\\\">\\r\\n                <Grid.RowDefinitions>\\r\\n                    <RowDefinition Height=\\\"Auto\\\" />\\r\\n                    <RowDefinition Height=\\\"*\\\" />\\r\\n                    <RowDefinition Height=\\\"160\\\" />\\r\\n                </Grid.RowDefinitions>\\r\\n                <Grid.ColumnDefinitions>\\r\\n                    <ColumnDefinition Width=\\\"*\\\"/>\\r\\n                    <ColumnDefinition Width=\\\"Auto\\\"/>\\r\\n                </Grid.ColumnDefinitions>\\r\\n                <Label Grid.Row=\\\"0\\\"\\r\\n                   Grid.ColumnSpan=\\\"2\\\"\\r\\n                   HorizontalOptions=\\\"Center\\\"\\r\\n                   Text=\\\"2020 US Population Density\\\"\\r\\n                   FontSize=\\\"Subtitle\\\" \\r\\n                    Margin=\\\"0,0,0,20\\\"/>\\r\\n                <maps:SfMaps Grid.Row=\\\"1\\\" Grid.RowSpan=\\\"2\\\" Grid.ColumnSpan=\\\"2\\\">\\r\\n                    <maps:SfMaps.Layer>\\r\\n                        <maps:MapShapeLayer x:Name=\\\"selectionLayer\\\"\\r\\n                                        DataSource=\\\"{Binding StateWiseElectionResult}\\\"\\r\\n                                        PrimaryValuePath=\\\"State\\\"\\r\\n                                        ShapeDataField=\\\"STATE_NAME\\\"\\r\\n                                        ShapeColorValuePath=\\\"SquareMiles\\\"\\r\\n                                        ShapeStroke=\\\"White\\\"\\r\\n                                        EnableSelection=\\\"True\\\"\\r\\n                                        SelectedShapeFill=\\\"#fcb100\\\"\\r\\n                                        SelectedShapeStroke=\\\"White\\\"\\r\\n                                        SelectedShapeStrokeThickness=\\\"3\\\"\\r\\n                                        ShapeSelected=\\\"shapeLayer_ShapeSelected\\\"\\r\\n                                        ShowDataLabels=\\\"True\\\">\\r\\n                            <maps:MapShapeLayer.ColorMappings>\\r\\n                                <maps:RangeColorMapping From=\\\"1600\\\" To=\\\"1200\\\" Color=\\\"#000000\\\"/>\\r\\n                                <maps:RangeColorMapping From=\\\"800\\\" To=\\\"1599\\\" Color=\\\"#001330\\\"/>\\r\\n                                <maps:RangeColorMapping From=\\\"400\\\" To=\\\"799\\\" Color=\\\"#003066\\\"/>\\r\\n                                <maps:RangeColorMapping From=\\\"200\\\" To=\\\"399\\\" Color=\\\"#004c9a\\\"/>\\r\\n                                <maps:RangeColorMapping From=\\\"100\\\" To=\\\"199\\\" Color=\\\"#0066cd\\\"/>\\r\\n                                <maps:RangeColorMapping From=\\\"50\\\" To=\\\"100\\\" Color=\\\"#0081ff\\\"/>\\r\\n                                <maps:RangeColorMapping From=\\\"20\\\" To=\\\"49\\\" Color=\\\"#4ca7ff\\\"/>\\r\\n                                <maps:RangeColorMapping From=\\\"10\\\" To=\\\"19\\\" Color=\\\"#8dc7ff\\\"/>\\r\\n                                <maps:RangeColorMapping From=\\\"5\\\" To=\\\"9\\\" Color=\\\"#b3daff\\\"/>\\r\\n                                <maps:RangeColorMapping From=\\\"0\\\" To=\\\"4\\\" Color=\\\"#daeeff\\\"/>\\r\\n                            </maps:MapShapeLayer.ColorMappings>\\r\\n                            <maps:MapShapeLayer.DataLabelSettings>\\r\\n                                <maps:MapDataLabelSettings DataLabelPath=\\\"StateCode\\\" OverflowMode=\\\"Hide\\\">\\r\\n                                    <maps:MapDataLabelSettings.DataLabelStyle>\\r\\n                                        <maps:MapLabelStyle FontSize=\\\"9\\\"/>\\r\\n                                    </maps:MapDataLabelSettings.DataLabelStyle>\\r\\n                                </maps:MapDataLabelSettings>\\r\\n                            </maps:MapShapeLayer.DataLabelSettings>\\r\\n                        </maps:MapShapeLayer>\\r\\n                    </maps:SfMaps.Layer>\\r\\n                </maps:SfMaps>\\r\\n                <Frame x:Name=\\\"popup\\\" \\r\\n                   Grid.Row=\\\"2\\\" \\r\\n                   Grid.Column=\\\"1\\\"\\r\\n                   HorizontalOptions=\\\"End\\\"\\r\\n                   IsClippedToBounds=\\\"True\\\" \\r\\n                   BorderColor=\\\"#E8E8E8\\\"\\r\\n                   BackgroundColor=\\\"#F8F8F8\\\"\\r\\n                   Margin=\\\"30\\\"\\r\\n                   Opacity=\\\"0.8\\\"\\r\\n                   CornerRadius=\\\"6\\\">\\r\\n                    <Grid HorizontalOptions=\\\"End\\\" Margin=\\\"-10\\\">\\r\\n                        <Grid.RowDefinitions>\\r\\n                            <RowDefinition Height=\\\"Auto\\\"/>\\r\\n                            <RowDefinition Height=\\\"Auto\\\"/>\\r\\n                            <RowDefinition Height=\\\"Auto\\\"/>\\r\\n                        </Grid.RowDefinitions>\\r\\n                        <Label Grid.Row=\\\"0\\\" x:Name=\\\"stateName\\\" Text=\\\"\\\" TextColor=\\\"Black\\\" FontAttributes=\\\"Bold\\\" FontSize=\\\"18\\\" Margin=\\\"0,0,0,5\\\"/>\\r\\n                        <BoxView Grid.Row=\\\"1\\\" BackgroundColor=\\\"#e8e8e8\\\" HeightRequest=\\\"1\\\"/>\\r\\n                        <Grid Grid.Row=\\\"2\\\">\\r\\n                            <Grid.RowDefinitions>\\r\\n                                <RowDefinition Height=\\\"Auto\\\"/>\\r\\n                                <RowDefinition Height=\\\"Auto\\\"/>\\r\\n                            </Grid.RowDefinitions>\\r\\n                            <Grid.ColumnDefinitions>\\r\\n                                <ColumnDefinition Width=\\\"Auto\\\"/>\\r\\n                                <ColumnDefinition Width=\\\"Auto\\\"/>\\r\\n                            </Grid.ColumnDefinitions>\\r\\n                            <Label Grid.Row=\\\"0\\\" Grid.Column=\\\"0\\\" x:Name=\\\"rankTitle\\\" Text=\\\"\\\" TextColor=\\\"Black\\\" FontAttributes=\\\"Bold\\\" FontSize=\\\"13\\\"  Margin=\\\"0,5\\\"/>\\r\\n                            <Label Grid.Row=\\\"0\\\" Grid.Column=\\\"1\\\" x:Name=\\\"rank\\\" Text=\\\"\\\" TextColor=\\\"Black\\\" FontSize=\\\"14\\\"  Margin=\\\"0,5\\\"/>\\r\\n                            <Label Grid.Row=\\\"1\\\" Grid.Column=\\\"0\\\" x:Name=\\\"kmTitle\\\" Text=\\\"\\\" TextColor=\\\"Black\\\" FontAttributes=\\\"Bold\\\" FontSize=\\\"13\\\" Margin=\\\"0,5,0,0\\\"/>\\r\\n                            <Label Grid.Row=\\\"1\\\" Grid.Column=\\\"1\\\" x:Name=\\\"kilometer\\\" Text=\\\"\\\" TextColor=\\\"Black\\\" FontSize=\\\"14\\\" Margin=\\\"0,5,0,0\\\"/>\\r\\n                        </Grid>\\r\\n                    </Grid>\\r\\n                </Frame>\\r\\n            </Grid>\";\n\n    [ObservableProperty]\n    string basicLayerSource = \"<Grid>\\r\\n    <Grid.BindingContext>\\r\\n        <local:ViewModel />\\r\\n    </Grid.BindingContext>\\r\\n\\r\\n    <map:SfMaps>\\r\\n        <map:SfMaps.Layer>\\r\\n            <map:MapShapeLayer x:Name=\\\"layer\\\"\\r\\n                               ShapesSource=\\\"https://cdn.syncfusion.com/maps/map-data/australia.json\\\"\\r\\n                               ShapeDataField=\\\"STATE_NAME\\\"\\r\\n                               DataSource=\\\"{Binding Data}\\\"\\r\\n                               PrimaryValuePath=\\\"State\\\" \\r\\n                               ShowDataLabels=\\\"True\\\"\\r\\n                               ShowShapeTooltip=\\\"True\\\"\\r\\n                               ShapeColorValuePath=\\\"ID\\\">\\r\\n\\r\\n                <!--Set Data Label-->\\r\\n                <map:MapShapeLayer.DataLabelSettings>\\r\\n                    <map:MapDataLabelSettings DataLabelPath=\\\"StateCode\\\" />\\r\\n                </map:MapShapeLayer.DataLabelSettings>\\r\\n                \\r\\n                <!--Set Color mapping-->\\r\\n                <map:MapShapeLayer.ColorMappings>\\r\\n                    <map:EqualColorMapping Color=\\\"#d0b800\\\"\\r\\n                                           Value=\\\"1\\\"\\r\\n                                           Text=\\\"NSW\\\" />\\r\\n                    <map:EqualColorMapping Color=\\\"#00d5cf\\\"\\r\\n                                           Value=\\\"2\\\"\\r\\n                                           Text=\\\"Queensland\\\" />\\r\\n                    <map:EqualColorMapping Color=\\\"#cf4eee\\\"\\r\\n                                           Value=\\\"3\\\"\\r\\n                                           Text=\\\"Victoria\\\" />\\r\\n                    <map:EqualColorMapping Color=\\\"#4f93d8\\\"\\r\\n                                           Value=\\\"4\\\"\\r\\n                                           Text=\\\"Tasmania\\\" />\\r\\n                    <map:EqualColorMapping Color=\\\"#8b6adf\\\"\\r\\n                                           Value=\\\"5\\\"\\r\\n                                           Text=\\\"WA\\\" />\\r\\n                    <map:EqualColorMapping Color=\\\"#7bff67\\\"\\r\\n                                           Value=\\\"6\\\"\\r\\n                                           Text=\\\"SA\\\" />\\r\\n                    <map:EqualColorMapping Color=\\\"#ff4e42\\\"\\r\\n                                           Value=\\\"7\\\"\\r\\n                                           Text=\\\"NT\\\" />\\r\\n                </map:MapShapeLayer.ColorMappings>\\r\\n\\r\\n                <!--Set Markers-->\\r\\n                <map:MapShapeLayer.Markers>\\r\\n                    <map:MapMarkerCollection>\\r\\n                        <map:MapMarker x:Name=\\\"Adelaide\\\"\\r\\n                                       IconWidth=\\\"20\\\"\\r\\n                                       IconHeight=\\\"20\\\"\\r\\n                                       IconType=\\\"Triangle\\\"\\r\\n                                       IconFill=\\\"Red\\\"\\r\\n                                       IconStroke=\\\"Black\\\"\\r\\n                                       Latitude=\\\"-34.928497\\\"\\r\\n                                       Longitude=\\\"138.600739\\\" />\\r\\n                    </map:MapMarkerCollection>\\r\\n                </map:MapShapeLayer.Markers>\\r\\n                \\r\\n                <!--Set Legend-->\\r\\n                <map:MapShapeLayer.Legend>\\r\\n                    <map:MapLegend SourceType=\\\"Shape\\\"\\r\\n                                   Placement=\\\"Bottom\\\" />\\r\\n                </map:MapShapeLayer.Legend>\\r\\n            </map:MapShapeLayer>\\r\\n        </map:SfMaps.Layer>\\r\\n    </map:SfMaps>\\r\\n</Grid>\";\n    #endregion\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n    #endregion\n\n    #region [ Private Methods ]\n    private void CreateMarker()\n    {\n        this.Markers = new ObservableCollection<CustomMarker>();\n        var currentTime = DateTime.UtcNow;\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = 47.60621,\n            Longitude = -122.332071,\n            Name = \"Seattle\",\n            Time = currentTime.Subtract(new TimeSpan(7, 0, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n\n\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = -1.455833,\n            Longitude = -48.503887,\n            Name = \"Belem\",\n            Time = currentTime.Subtract(new TimeSpan(3, 0, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = 64.10,\n            Longitude = -51.44,\n            Name = \"Nuuk\",\n            Time = currentTime.Subtract(new TimeSpan(2, 0, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = 62.035452,\n            Longitude = 129.675475,\n            Name = \"Yakutsk\",\n            Time = currentTime.Add(new TimeSpan(9, 0, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = 28.704059,\n            Longitude = 77.10249,\n            Name = \"Delhi\",\n            Time = currentTime.Add(new TimeSpan(5, 30, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = -27.469771,\n            Longitude = 153.025124,\n            Name = \"Brisbane\",\n            Time = currentTime.Add(new TimeSpan(10, 0, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n\n        this.Markers.Add(new CustomMarker()\n        {\n            Latitude = -17.825166,\n            Longitude = 31.03351,\n            Name = \"Harare\",\n            Time = currentTime.Add(new TimeSpan(2, 0, 0)).ToLongTimeString(),\n            Offset = new Point(0, -4),\n            VerticalAlignment = MapAlignment.End,\n            IconWidth = 150,\n            IconHeight = 150\n        });\n    }\n    #endregion\n}\n\npublic class Model\n{\n    public string State { get; set; }\n    public string StateCode { get; set; }\n    public int ID { get; set; }\n\n    public Model(string state, string stateCode, int id)\n    {\n        State = state;\n        StateCode = stateCode;\n        ID = id;\n    }\n}\n\npublic class MapTooltipData\n{\n    public string State { get; set; }\n    public int Size { get; set; }\n\n    public MapTooltipData(string state, int size)\n    {\n        State = state;\n        Size = size;\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfRadialGauge/SfRadialGaugeControlInfo.cs",
    "content": "using Syncfusion.Maui.Gauges;\n\nnamespace MAUIsland.Core;\nclass SfRadialGaugeControlInfo : IGalleryCardInfo\n{\n    public string ControlName => nameof(SfRadialGauge);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_top_speed_24_regular\n    };\n    public string ControlDetail => \"The Syncfusion .NET MAUI Radial Gauge is a multi-purpose data visualization control, that displays numerical values on a circular scale. It has a rich set of features such as axes, ranges, pointers, and annotations that are fully customizable and extendable. Use it to create speedometers, temperature monitors, dashboards, meter gauges, multi axis clocks, watches, progress indicators, compasses, and more.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/Syncfusion/Controls/{ControlName}\";\n    public string DocumentUrl => \"https://help.syncfusion.com/maui/radial-gauge/overview\";\n    public string GroupName => ControlGroupInfo.SyncfusionControls;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfRadialGauge/SfRadialGaugePageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class SfRadialGaugePageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public SfRadialGaugePageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation;\n\n    [ObservableProperty]\n    string redZoneMeme = \"MARIOS\\r\\nGONNA DO\\r\\nSOMTHING VERY\\r\\nILLEGAL\";\n\n    [ObservableProperty]\n    string bossPissedMetric = \"<gauge:SfRadialGauge\\r\\n                        BackgroundColor=\\\"Gray\\\"\\r\\n                        HeightRequest=\\\"380\\\"\\r\\n                        WidthRequest=\\\"380\\\">\\r\\n                        <gauge:SfRadialGauge.Axes>\\r\\n                            <gauge:RadialAxis\\r\\n                                LabelPosition=\\\"Outside\\\"\\r\\n                                Maximum=\\\"30\\\"\\r\\n                                Minimum=\\\"0\\\"\\r\\n                                ShowAxisLine=\\\"True\\\"\\r\\n                                ShowLabels=\\\"True\\\"\\r\\n                                ShowTicks=\\\"True\\\">\\r\\n                                <gauge:RadialAxis.AxisLabelStyle>\\r\\n                                    <gauge:GaugeLabelStyle FontSize=\\\"11\\\" TextColor=\\\"White\\\" />\\r\\n                                </gauge:RadialAxis.AxisLabelStyle>\\r\\n\\r\\n                                <gauge:RadialAxis.Ranges>\\r\\n                                    <gauge:RadialRange\\r\\n                                        EndValue=\\\"6\\\"\\r\\n                                        EndWidth=\\\"0.65\\\"\\r\\n                                        Fill=\\\"#73d684\\\"\\r\\n                                        Label=\\\"YO WE COOL\\\"\\r\\n                                        LabelStyle=\\\"{StaticResource labelStyle}\\\"\\r\\n                                        StartValue=\\\"0\\\"\\r\\n                                        StartWidth=\\\"0.65\\\"\\r\\n                                        WidthUnit=\\\"Factor\\\" />\\r\\n                                    <gauge:RadialRange\\r\\n                                        EndValue=\\\"18\\\"\\r\\n                                        EndWidth=\\\"0.65\\\"\\r\\n                                        Fill=\\\"#fce348\\\"\\r\\n                                        Label=\\\"YOU WAT MATE ?\\\"\\r\\n                                        LabelStyle=\\\"{StaticResource labelStyle}\\\"\\r\\n                                        StartValue=\\\"6\\\"\\r\\n                                        StartWidth=\\\"0.65\\\"\\r\\n                                        WidthUnit=\\\"Factor\\\" />\\r\\n                                    <gauge:RadialRange\\r\\n                                        EndValue=\\\"30\\\"\\r\\n                                        EndWidth=\\\"0.65\\\"\\r\\n                                        Fill=\\\"#fc0203\\\"\\r\\n                                        Label=\\\"{x:Binding RedZoneMeme}\\\"\\r\\n                                        LabelStyle=\\\"{StaticResource labelStyle}\\\"\\r\\n                                        StartValue=\\\"18\\\"\\r\\n                                        StartWidth=\\\"0.65\\\"\\r\\n                                        WidthUnit=\\\"Factor\\\" />\\r\\n                                    <gauge:RadialRange\\r\\n                                        EndValue=\\\"99\\\"\\r\\n                                        EndWidth=\\\"0.15\\\"\\r\\n                                        Fill=\\\"#4D9b9b9b\\\"\\r\\n                                        OffsetUnit=\\\"Factor\\\"\\r\\n                                        RangeOffset=\\\"0.63\\\"\\r\\n                                        StartValue=\\\"0\\\"\\r\\n                                        StartWidth=\\\"0.15\\\"\\r\\n                                        WidthUnit=\\\"Factor\\\" />\\r\\n                                </gauge:RadialAxis.Ranges>\\r\\n\\r\\n                                <gauge:RadialAxis.Pointers>\\r\\n                                    <gauge:NeedlePointer\\r\\n                                        KnobRadius=\\\"15\\\"\\r\\n                                        KnobSizeUnit=\\\"Pixel\\\"\\r\\n                                        NeedleEndWidth=\\\"15\\\"\\r\\n                                        NeedleLength=\\\"0.6\\\"\\r\\n                                        NeedleStartWidth=\\\"2\\\"\\r\\n                                        Value=\\\"28\\\" />\\r\\n                                </gauge:RadialAxis.Pointers>\\r\\n                            </gauge:RadialAxis>\\r\\n                        </gauge:SfRadialGauge.Axes>\\r\\n                    </gauge:SfRadialGauge>\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n    #endregion\n\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfRangeSelector/SfRangeSelectorControlInfo.cs",
    "content": "using Syncfusion.Maui.Sliders;\n\nnamespace MAUIsland.Core;\nclass SfRangeSelectorControlInfo : IGalleryCardInfo\n{\n    public string ControlName => nameof(SfRangeSelector);\n    public string ControlRoute => $\"MAUIsland.{ControlName}Page\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_auto_fit_width_24_regular\n    };\n    public string ControlDetail => \"The Syncfusion .NET MAUI Range Selector (SfRangeSelector) is a highly interactive UI control, allowing users to select a range values within a minimum and maximum limit. It provides rich features, such as track, labels, ticks, dividers, and tooltip.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/blob/main/src/Features/Gallery/Pages/Syncfusion/Controls/{ControlName}\";\n    public string DocumentUrl => $\"https://help.syncfusion.com/maui/range-selector/overview\";\n    public string GroupName => ControlGroupInfo.SyncfusionControls;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Syncfusion/SfRangeSelector/SfRangeSelectorPageViewModel.cs",
    "content": "namespace MAUIsland.Core;\npublic partial class SfRangeSelectorPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ CTor ]\n    public SfRangeSelectorPageViewModel(\n        IAppNavigator appNavigator\n    ) : base(appNavigator)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    DateTime rangeStart = new(2005, 01, 01);\n\n    [ObservableProperty]\n    DateTime rangeEnd = new(2008, 01, 01);\n\n    [ObservableProperty]\n    IGalleryCardInfo controlInformation;\n\n    [ObservableProperty]\n    ObservableCollection<SfRangeSelectorDemoChart> source;\n\n    [ObservableProperty]\n    string simpleRangeSelectorXamlCode = \"<sliders:SfRangeSelector />\";\n\n    [ObservableProperty]\n    string contentRangeSelectorXamlCode = \"<ContentPage \\r\\n             ...\\r\\n             xmlns:sliders=\\\"clr-namespace:Syncfusion.Maui.Sliders;assembly=Syncfusion.Maui.Sliders\\\"\\r\\n             xmlns:charts=\\\"clr-namespace:Syncfusion.Maui.Charts;assembly=Syncfusion.Maui.Charts\\\"\\r\\n             xmlns:local=\\\"clr-namespace:SliderTestbedSample.RangeSelector\\\">\\r\\n    \\r\\n    <ContentPage.BindingContext>\\r\\n        <local:ViewModel />\\r\\n    </ContentPage.BindingContext>\\r\\n\\r\\n    <sliders:SfRangeSelector Minimum=\\\"10\\\"\\r\\n                             Maximum=\\\"20\\\"\\r\\n                             RangeStart=\\\"13\\\"\\r\\n                             RangeEnd=\\\"17\\\">\\r\\n        <charts:SfCartesianChart>\\r\\n\\r\\n            <charts:SfCartesianChart.XAxes>\\r\\n                <charts:DateTimeAxis IsVisible=\\\"False\\\"\\r\\n                                    ShowMajorGridLines=\\\"False\\\" />\\r\\n            </charts:SfCartesianChart.XAxes>\\r\\n\\r\\n            <charts:SfCartesianChart.YAxes>\\r\\n                <charts:NumericalAxis IsVisible=\\\"False\\\"\\r\\n                                     ShowMajorGridLines=\\\"False\\\" />\\r\\n            </charts:SfCartesianChart.YAxes>\\r\\n\\r\\n            <charts:SfCartesianChart.Series>\\r\\n                <charts:SplineAreaSeries ItemsSource=\\\"{Binding Source}\\\"\\r\\n                                        XBindingPath=\\\"X\\\"\\r\\n                                        YBindingPath=\\\"Y\\\">\\r\\n                </charts:SplineAreaSeries>\\r\\n\\r\\n            </charts:SfCartesianChart.Series>\\r\\n        \\r\\n        </charts:SfCartesianChart>\\r\\n    \\r\\n    </sliders:SfRangeSelector>\\r\\n</ContentPage>\";\n\n    [ObservableProperty]\n    string contentRangeSelectorWithLabelXamlCode = \"<ContentPage \\r\\n             ...\\r\\n             xmlns:sliders=\\\"clr-namespace:Syncfusion.Maui.Sliders;assembly=Syncfusion.Maui.Sliders\\\"\\r\\n             xmlns:charts=\\\"clr-namespace:Syncfusion.Maui.Charts;assembly=Syncfusion.Maui.Charts\\\">\\r\\n\\r\\n    <sliders:SfRangeSelector Minimum=\\\"0\\\" \\r\\n                             Maximum=\\\"10\\\" \\r\\n                             RangeStart=\\\"2\\\" \\r\\n                             RangeEnd=\\\"8\\\"\\r\\n                             Interval=\\\"2\\\" \\r\\n                             ShowLabels=\\\"True\\\">\\r\\n\\r\\n        <charts:SfCartesianChart>\\r\\n            ...\\r\\n        </charts:SfCartesianChart>\\r\\n\\r\\n    </sliders:SfRangeSelector>\\r\\n</ContentPage>\";\n\n    [ObservableProperty]\n    string contentRangeSelectorWithTickXamlCode = \"<ContentPage \\r\\n             ...\\r\\n             xmlns:sliders=\\\"clr-namespace:Syncfusion.Maui.Sliders;assembly=Syncfusion.Maui.Sliders\\\"\\r\\n             xmlns:charts=\\\"clr-namespace:Syncfusion.Maui.Charts;assembly=Syncfusion.Maui.Charts\\\">\\r\\n    \\r\\n    <sliders:SfRangeSelector Minimum=\\\"0\\\" \\r\\n                             Maximum=\\\"10\\\" \\r\\n                             RangeStart=\\\"2\\\" \\r\\n                             RangeEnd=\\\"8\\\"                       \\r\\n                             Interval=\\\"2\\\" \\r\\n                             ShowLabels=\\\"True\\\"\\r\\n                             ShowTicks=\\\"True\\\" \\r\\n                             MinorTicksPerInterval=\\\"1\\\">\\r\\n        \\r\\n        <charts:SfCartesianChart>\\r\\n            ...\\r\\n        </charts:SfCartesianChart>\\r\\n    \\r\\n    </sliders:SfRangeSelector>\\r\\n</ContentPage>\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<IGalleryCardInfo>();\n\n        Source = new ObservableCollection<SfRangeSelectorDemoChart>\n            {\n                new SfRangeSelectorDemoChart(new DateTime(2002, 01, 01), 2.2),\n                new SfRangeSelectorDemoChart(new DateTime(2003, 01, 01), 3.4),\n                new SfRangeSelectorDemoChart(new DateTime(2004, 01, 01), 2.8),\n                new SfRangeSelectorDemoChart(new DateTime(2005, 01, 01), 1.6),\n                new SfRangeSelectorDemoChart(new DateTime(2006, 01, 01), 2.3),\n                new SfRangeSelectorDemoChart(new DateTime(2007, 01, 01), 2.5),\n                new SfRangeSelectorDemoChart(new DateTime(2008, 01, 01), 2.9),\n                new SfRangeSelectorDemoChart(new DateTime(2009, 01, 01), 3.8),\n                new SfRangeSelectorDemoChart(new DateTime(2010, 01, 01), 1.4),\n                new SfRangeSelectorDemoChart(new DateTime(2011, 01, 01), 3.1),\n            };\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n    #endregion\n}\n\npublic class SfRangeSelectorDemoChart\n{\n    public DateTime X { get; set; }\n    public double Y { get; set; }\n\n    public SfRangeSelectorDemoChart(DateTime date, double value)\n    {\n        X = date;\n        Y = value;\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/BaseToolkitPageControlViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class BaseToolkitPageControlViewModel : NavigationAwareBaseViewModel\n{\n    #region [ Fields ]\n\n    protected IGitHubService GitHubService { get; }\n    protected IGitHubIssueLocalDbService GitHubIssueLocalDbService { get; }\n    #endregion\n\n    #region [ CTor ]\n\n    public BaseToolkitPageControlViewModel(IAppNavigator appNavigator,\n                                           IGitHubService gitHubService,\n                                           IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                               : base(appNavigator)\n    {\n        GitHubService = gitHubService;\n        GitHubIssueLocalDbService = gitHubIssueLocalDbService;\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string emptyViewText = \"No issues found for this control\";\n\n    [ObservableProperty]\n    string gitHubAPIRateLimit = \"https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api?apiVersion=2022-11-28\";\n\n    [ObservableProperty]\n    bool isBusy;\n\n    [ObservableProperty]\n    ICommunityToolkitGalleryCardInfo controlInformation = default!;\n\n    [ObservableProperty]\n    ObservableCollection<ControlIssueModel> controlIssues = default!;\n\n    [ObservableProperty]\n    ControlIssueModel selectedControlIssue = default!;\n\n    #endregion\n\n    #region [ Methods ]\n\n    public async Task RefreshControlIssues(bool forced,\n                                           string controlName,\n                                           string gitHubAuthorName,\n                                           string gitHubrepositoryName,\n                                           IEnumerable<string> labels)\n    {\n        if (IsBusy)\n            return;\n\n        IsBusy = true;\n\n        var now = DateTime.UtcNow;\n\n        // First: sync from local db.\n        // TODO: how to get control name?\n        var allLocalDbIssues = await GetIssueByControlNameFromLocalDb(controlName);\n\n        // If localdb version is not null & not outdated => use local version.\n        if (allLocalDbIssues != null && allLocalDbIssues.Any() && !allLocalDbIssues.Any(x => (now - x.LastUpdated).TotalHours > 1))\n        {\n            if (ControlIssues is null || forced)\n            {\n                ControlIssues = new(allLocalDbIssues.Select(x => new ControlIssueModel()\n                {\n                    IssueId = x.IssueId,\n                    Title = x.Title,\n                    IssueLinkUrl = x.IssueLinkUrl,\n                    MileStone = x.MileStone,\n                    OwnerName = x.OwnerName,\n                    AvatarUrl = x.UserAvatarUrl,\n                    CreatedDate = x.CreatedDate,\n                    LastUpdated = x.LastUpdated\n                }));\n            }\n            IsBusy = false;\n\n            // Done.\n            return;\n        }\n\n        // If localdb does not have issue info, or info outdated => sync from GitHub & save.\n        var result = await GitHubService.GetGitHubIssuesByLabels(gitHubAuthorName,\n                                                                 gitHubrepositoryName,\n                                                                 labels);\n\n\n        if (result.IsT0) // Check if result is ServiceSuccess\n        {\n            var issues = result.AsT0.AttachedData as IEnumerable<GitHubIssueModel>;\n\n            // Save to localdb.\n            foreach (var issue in issues)\n            {\n                await UpdateLocalIssue(issue, controlName);\n            }\n\n            IsBusy = false;\n\n            if (ControlIssues is null || forced)\n            {\n                ControlIssues = new(issues.Select(x => new ControlIssueModel()\n                {\n                    IssueId = x.Id,\n                    Title = x.Title,\n                    IssueLinkUrl = x.HtmlUrl,\n                    MileStone = x.Milestone is null ? \"No mile stone\" : x.Milestone.Title,\n                    OwnerName = x.User.Login,\n                    AvatarUrl = x.User.AvatarUrl,\n                    CreatedDate = x.CreatedAt.DateTime,\n                    LastUpdated = x.UpdatedAt is null ? x.CreatedAt.DateTime : x.UpdatedAt.Value.DateTime\n                }));\n            }\n        }\n        else\n        {\n            IsBusy = false;\n\n            var error = result.AsT1;\n            EmptyViewText = error.ErrorDetail;\n            await AppNavigator.ShowSnackbarAsync(error.ErrorDetail,\n                                                 async () =>\n                                                 {\n                                                     await AppNavigator.OpenUrlAsync(GitHubAPIRateLimit);\n                                                 },\n                                                 \"Visit GitHub API Rate Limits Policies\");\n        }\n    }\n\n    public async Task<IEnumerable<GitHubIssueLocalDbModel>> GetIssueByControlNameFromLocalDb(string controlName)\n    {\n        try\n        {\n            var now = DateTime.UtcNow;\n\n            var result = await GitHubIssueLocalDbService.GetByControlNameAsync(controlName);\n            return result is not null ?\n                        result\n                        :\n                        new List<GitHubIssueLocalDbModel>().AsEnumerable();\n        }\n        catch (Exception e)\n        {\n            await AppNavigator.ShowSnackbarAsync(e.Message, null, null);\n            return new List<GitHubIssueLocalDbModel>().AsEnumerable();\n        }\n    }\n\n    public async Task UpdateLocalIssue(GitHubIssueModel issue, string controlName)\n    {\n        try\n        {\n            var now = DateTime.UtcNow;\n\n            var localIssue = await GitHubIssueLocalDbService.GetByIssueUrlAsync(issue.Url);\n\n            if (localIssue is null)\n            {\n                await GitHubIssueLocalDbService.AddAsync(new()\n                {\n                    IssueId = issue.Id,\n                    Title = issue.Title,\n                    IssueLinkUrl = issue.HtmlUrl,\n                    ControlName = controlName,\n                    MileStone = issue.Milestone?.Title,\n                    OwnerName = issue.User?.Login,\n                    UserAvatarUrl = issue.User?.AvatarUrl,\n                    CreatedDate = issue.CreatedAt.DateTime,\n                    LastUpdated = now\n                });\n                return;\n            }\n\n            // Update fields: milestone (TODO: what else?).\n            localIssue.MileStone = issue.Milestone?.Title;\n            localIssue.LastUpdated = now;\n\n            await GitHubIssueLocalDbService.UpdateAsync(localIssue);\n        }\n        catch (Exception e)\n        {\n            await AppNavigator.ShowSnackbarAsync(e.Message, null, null);\n        }\n    }\n\n    public void SetControlInformation(object controlInfo)\n    {\n        ControlInformation = (ICommunityToolkitGalleryCardInfo)controlInfo;\n    }\n    #endregion\n\n\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Controls/AvatarView/AvatarViewControlInfo.cs",
    "content": "﻿using CommunityToolkit.Maui.Views;\n\nnamespace MAUIsland.Core;\n\nclass AvatarViewControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(AvatarView);\n    public string ControlRoute => \"MAUIsland.AvatarViewPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_person_circle_24_regular,\n    };\n    public string ControlDetail => \"AvatarView is a control for displaying a user's avatar image or their initials. Avatars can be text, image, colored, shaped and supports shadow and gestures.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Controls/AvatarView\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/views/avatarview\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Controls/AvatarView/AvatarViewPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class AvatarViewPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n    public AvatarViewPageViewModel(IAppNavigator appNavigator,\n                                   IGitHubService gitHubService,\n                                   IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                        : base(appNavigator,\n                                                gitHubService,\n                                                gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string setupDescription =\n        \"In order to use the toolkit in XAML the following xmlns needs to be added into your page or view:\";\n\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleBefore =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\">\\\"\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleAfter =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlAvatarViewText =\n        \"<toolkit:AvatarView Text=\\\"ZS\\\" \\r\\n\" +\n        \"                    BorderColor=\\\"Black\\\"/>\";\n\n    [ObservableProperty]\n    string xamlAvatarViewTextColor =\n        \"<toolkit:AvatarView BorderColor=\\\"Black\\\" \\r\\n\" +\n        \"                    Text=\\\"TC\\\" \\r\\n\" +\n        \"                    TextColor=\\\"Green\\\"/>\\r\\n\" +\n        \"<toolkit:AvatarView BorderColor=\\\"Black\\\" \\r\\n\" +\n        \"                    Text=\\\"TC\\\" \\r\\n\" +\n        \"                    TextColor=\\\"{x:Static core:AppColors.BlackGrey}\\\"/>\\r\\n\" +\n        \"<toolkit:AvatarView BorderColor=\\\"Black\\\" \\r\\n\" +\n        \"                    Text=\\\"TC\\\" \\r\\n\" +\n        \"                    TextColor=\\\"#806e41\\\"/>\";\n\n    [ObservableProperty]\n    string xamlAvatarViewBackgroundColor =\n        \"<toolkit:AvatarView BackgroundColor=\\\"Red\\\"\\r\\n\" +\n        \"                    BorderColor=\\\"Black\\\"\\r\\n\" +\n        \"                    Text=\\\"BC\\\"/>\\r\\n\" +\n        \"<toolkit:AvatarView BackgroundColor=\\\"{x:Static core:AppColors.Green}\\\"\\r\\n\" +\n        \"                    BorderColor=\\\"Black\\\"\\r\\n\" +\n        \"                    Text=\\\"BC\\\"/>\\r\\n\" +\n        \"<toolkit:AvatarView BackgroundColor=\\\"#ffe39e\\\"\\r\\n\" +\n        \"                    BorderColor=\\\"Black\\\"\\r\\n\" +\n        \"                    Text=\\\"BC\\\"/>\";\n\n    [ObservableProperty]\n    string xamlAvatarViewBorderColor =\n        \"<toolkit:AvatarView BorderColor=\\\"Yellow\\\"\\r\\n\" +\n        \"                    Text=\\\"BC\\\"/>\\r\\n\" +\n        \"<toolkit:AvatarView BorderColor=\\\"{x:Static core:AppColors.LightBlue}\\\"\\r\\n\" +\n        \"                    Text=\\\"BC\\\"/>\\r\\n\" +\n        \"<toolkit:AvatarView BorderColor=\\\"#004b5c\\\"\\r\\n\" +\n        \"                    Text=\\\"BC\\\" />\";\n\n    [ObservableProperty]\n    string xamlAvatarViewPadding =\n        \"<toolkit:AvatarView BorderColor=\\\"Black\\\"\\r\\n\" +\n        \"                    Padding=\\\"2\\\"\\r\\n\" +\n        \"                    Text=\\\"PA\\\"/>\";\n\n    [ObservableProperty]\n    string xamlAvatarViewBorderWidth =\n        \"<toolkit:AvatarView BorderColor=\\\"Black\\\"\\r\\n\" +\n        \"                    BorderWidth=\\\" 2 \\\"\\r\\n\" +\n        \"                    Text=\\\"BW\\\" />\\r\\n\";\n\n    [ObservableProperty]\n    string xamlAvatarViewSingleCornerSet =\n        \"<toolkit:AvatarView CornerRadius=\\\" 8 \\\" \\r\\n\" +\n        \"                    HeightRequest=\\\"48\\\" \\r\\n\" +\n        \"                    WidthRequest=\\\"48\\\"\\r\\n\" +\n        \"                    BorderColor=\\\"Black\\\"\\r\\n\" +\n        \"                    Text=\\\"CR\\\" />\";\n\n    [ObservableProperty]\n    string xamlAvatarViewFourCornerSet =\n        \"<toolkit:AvatarView CornerRadius=\\\"8, 12, 16, 20\\\" \\r\\n\" +\n        \"                    HeightRequest=\\\"48\\\" \\r\\n\" +\n        \"                    WidthRequest=\\\"48\\\"\\r\\n\" +\n        \"                    BorderColor=\\\"Black\\\"\\r\\n\" +\n        \"                    Text=\\\"CR\\\" />\";\n\n    [ObservableProperty]\n    string xamlAvatarViewImageSource =\n        \"<!--<Add Padding=\\\"-4, 0, 0, 0\\\" if picture shifts to the right-->\\r\\n\" +\n        \"<toolkit:AvatarView BorderColor=\\\"Black\\\"\\r\\n\" +\n        \"                    BackgroundColor=\\\"Orange\\\"\\r\\n\" +\n        \"                    HeightRequest=\\\"40\\\" \\r\\n\" +\n        \"                    WidthRequest=\\\"40\\\"\\r\\n\" +\n        \"                    Padding=\\\"-4, 0, 0, 0\\\">\\r\\n\" +\n        \"   <toolkit:AvatarView.ImageSource>\\r\\n\" +\n        \"       <FontImageSource Glyph=\\\"{x:Static core:FluentUIIcon.Ic_fluent_person_circle_24_regular}\\\" \\r\\n\" +\n        \"                        FontFamily=\\\"{x:Static core:FontNames.FluentSystemIconsRegular}\\\"\\r\\n\" +\n        \"                        Size=\\\"100\\\"\\r\\n\" +\n        \"                        Color = \\\"{x:Static core:AppColors.White}\\\"/>\\r\\n\" +\n        \"   </toolkit:AvatarView.ImageSource>\\r\\n\" +\n        \"</toolkit:AvatarView>\\r\\n\\r\\n\" +\n        \"<!--ControlInformation is bonded from the ViewModel-->\\r\\n\" +\n        \"<toolkit:AvatarView BorderColor=\\\"Black\\\"\\r\\n\" +\n        \"                    BackgroundColor=\\\"Orange\\\"\\r\\n\" +\n        \"                    ImageSource=\\\"{x:Binding ControlInformation.ControlIcon, Mode=OneWay}\\\"\\r\\n\" +\n        \"                    HeightRequest=\\\"40\\\" \\r\\n\" +\n        \"                    WidthRequest=\\\"40\\\"\\r\\n\" +\n        \"                    Padding=\\\"-4, 0, 0, 0\\\"/>\\r\\n\\r\\n\" +\n        \"<toolkit:AvatarView BorderColor=\\\"Black\\\"\\r\\n\" +\n        \"                    ImageSource=\\\"https://aka.ms/campus.jpg\\\"\\r\\n\" +\n        \"                    HeightRequest=\\\"40\\\" \\r\\n\" +\n        \"                    WidthRequest=\\\"40\\\"\\r\\n\" +\n        \"                    Padding=\\\"-4, 0, 0, 0\\\">\";\n\n    [ObservableProperty]\n    string cSharpAvatarViewViewModelImageSource =\n        \"[ObservableProperty]\\r\\n\" +\n        \"IGalleryCardInfo controlInformation; // IGalleryCardInfo has ControlIcon property which is why ControlIcon can be called from xaml\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Controls/DrawingView/DrawingViewControlInfo.cs",
    "content": "using CommunityToolkit.Maui.Views;\n\nnamespace MAUIsland.Core;\n\nclass DrawingViewControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(DrawingView);\n    public string ControlRoute => \"MAUIsland.DrawingViewPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_draw_shape_24_regular\n    };\n    public string ControlDetail => \"The DrawingView provides a surface that allows for the drawing of lines through the use of touch or mouse interaction. The result of a users drawing can be saved out as an image. A common use case for this is to provide a signature box in an application.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Controls/DrawingView\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/views/drawingview\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Controls/DrawingView/DrawingViewPageViewModel.cs",
    "content": "using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\npublic partial class DrawingViewPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n    public DrawingViewPageViewModel(IAppNavigator appNavigator,\n                                   IGitHubService gitHubService,\n                                   IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                        : base(appNavigator,\n                                                gitHubService,\n                                                gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string basicDrawingViewXamlCode = \"<toolkit:DrawingView\\r\\n            Lines=\\\"{Binding MyLines}\\\"\\r\\n            LineColor=\\\"Red\\\"\\r\\n            LineWidth=\\\"5\\\" />\";\n\n    [ObservableProperty]\n    string basicDrawingViewCSharpCode = \"using CommunityToolkit.Maui.Views;\\r\\n\\r\\nvar drawingView = new DrawingView\\r\\n{\\r\\n    Lines = new ObservableCollection<IDrawingLine>(),\\r\\n    LineColor = Colors.Red,\\r\\n    LineWidth = 5\\r\\n};\";\n\n    [ObservableProperty]\n    string multiLineUsageXamlCode = \"<views:DrawingView\\r\\n            Lines=\\\"{Binding MyLines}\\\"\\r\\n            IsMultiLineModeEnabled=\\\"true\\\"\\r\\n            ShouldClearOnFinish=\\\"false\\\" />\";\n\n    [ObservableProperty]\n    string multiLineUsageCSharpCode = \"using CommunityToolkit.Maui.Views;\\r\\n\\r\\nvar gestureImage = new Image();\\r\\nvar drawingView = new DrawingView\\r\\n{\\r\\n    Lines = new ObservableCollection<IDrawingLine>(),\\r\\n    IsMultiLineModeEnabled = true,\\r\\n    ShouldClearOnFinish = false,\\r\\n};\";\n\n    [ObservableProperty]\n    string drawingLineCompletedXamlCode = \"<views:DrawingView\\r\\n            Lines=\\\"{Binding MyLines}\\\"\\r\\n            DrawingLineCompletedCommand=\\\"{Binding DrawingLineCompletedCommand}\\\"\\r\\n            DrawingLineCompleted=\\\"OnDrawingLineCompletedEvent\\\" />\";\n\n    [ObservableProperty]\n    string drawingLineCompletedCSharpCode = \"using CommunityToolkit.Maui.Views;\\r\\n\\r\\nvar gestureImage = new Image();\\r\\nvar drawingView = new DrawingView\\r\\n{\\r\\n    Lines = new ObservableCollection<IDrawingLine>(),\\r\\n    DrawingLineCompletedCommand = new Command<IDrawingLine>(async (line) =>\\r\\n    {\\r\\n        var stream = await line.GetImageStream(gestureImage.Width, gestureImage.Height, Colors.Gray.AsPaint());\\r\\n        gestureImage.Source = ImageSource.FromStream(() => stream);\\r\\n    })\\r\\n};\\r\\ndrawingView.DrawingLineCompleted += async (s, e) =>\\r\\n{\\r\\n    var stream = await e.LastDrawingLine.GetImageStream(gestureImage.Width, gestureImage.Height, Colors.Gray.AsPaint());\\r\\n    gestureImage.Source = ImageSource.FromStream(() => stream);\\r\\n};\";\n\n    [ObservableProperty]\n    string advancedUsageXamlCode = \"<toolkit:DrawingView\\r\\n            x:Name=\\\"DrawingViewControl\\\"\\r\\n            Lines=\\\"{Binding MyLines}\\\"\\r\\n            IsMultiLineModeEnabled=\\\"true\\\"\\r\\n            ShouldClearOnFinish=\\\"true\\\"\\r\\n            DrawingLineCompletedCommand=\\\"{Binding DrawingLineCompletedCommand}\\\"\\r\\n            DrawingLineCompleted=\\\"OnDrawingLineCompletedEvent\\\"\\r\\n            LineColor=\\\"Red\\\"\\r\\n            LineWidth=\\\"5\\\"\\r\\n            HorizontalOptions=\\\"FillAndExpand\\\"\\r\\n            VerticalOptions=\\\"FillAndExpand\\\">\\r\\n            <toolkit:DrawingView.Background>\\r\\n                    <LinearGradientBrush StartPoint=\\\"0,0\\\"\\r\\n                                         EndPoint=\\\"0,1\\\">\\r\\n                        <GradientStop Color=\\\"Blue\\\"\\r\\n                                      Offset=\\\"0\\\"/>\\r\\n                        <GradientStop Color=\\\"Yellow\\\"\\r\\n                                      Offset=\\\"1\\\"/>\\r\\n                    </LinearGradientBrush>\\r\\n            </toolkit:DrawingView.Background>\\r\\n</toolkit:DrawingView>\";\n\n    [ObservableProperty]\n    string advancedUsageCSharpCode = \"using CommunityToolkit.Maui.Views;\\r\\n\\r\\nvar gestureImage = new Image();\\r\\nvar drawingView = new DrawingView\\r\\n{\\r\\n    Lines = new ObservableCollection<IDrawingLine>(),\\r\\n    IsMultiLineModeEnabled = true,\\r\\n    ShouldClearOnFinish = false,\\r\\n    DrawingLineCompletedCommand = new Command<IDrawingLine>(async (line) =>\\r\\n    {\\r\\n        var stream = await line.GetImageStream(gestureImage.Width, gestureImage.Height, Colors.Gray.AsPaint());\\r\\n        gestureImage.Source = ImageSource.FromStream(() => stream);\\r\\n    }),\\r\\n    LineColor = Colors.Red,\\r\\n    LineWidth = 5,\\r\\n    Background = Brush.Red\\r\\n};\\r\\ndrawingView.DrawingLineCompleted += async (s, e) =>\\r\\n{\\r\\n    var stream = await e.LastDrawingLine.GetImageStream(gestureImage.Width, gestureImage.Height, Colors.Gray.AsPaint());\\r\\n    gestureImage.Source = ImageSource.FromStream(() => stream);\\r\\n};\\r\\n\\r\\n// get stream from lines collection\\r\\nvar lines = new List<IDrawingLine>();\\r\\nvar stream1 = await DrawingView.GetImageStream(\\r\\n                lines,\\r\\n                new Size(gestureImage.Width, gestureImage.Height),\\r\\n                Colors.Black);\\r\\n\\r\\n// get steam from the current DrawingView\\r\\nvar stream2 = await drawingView.GetImageStream(gestureImage.Width, gestureImage.Height);\";\n\n    [ObservableProperty]\n    string customIDrawingLineCSharpCode1 = \"public class MyDrawingLine : IDrawingLine\\r\\n{\\r\\n    public ObservableCollection<PointF> Points { get; } = new();\\r\\n    ...\\r\\n}\";\n\n    [ObservableProperty]\n    string customIDrawingLineCSharpCode2 = \"public class MyDrawingLineAdapter : IDrawingLineAdapter\\r\\n{\\r\\n    public IDrawingLine(MauiDrawingLine mauiDrawingLine)\\r\\n    {\\r\\n        return new MyDrawingLine\\r\\n        {\\r\\n            Points = mauiDrawingLine.Points,\\r\\n            ...\\r\\n        }\\r\\n    }\\r\\n}\";\n\n    [ObservableProperty]\n    string customIDrawingLineCSharpCode3 = \"var myDrawingLineAdapter = new MyDrawingLineAdapter();\\r\\ndrawingViewHandler.SetDrawingLineAdapter(myDrawingLineAdapter);\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Controls/Expander/ExpanderControlInfo.cs",
    "content": "﻿using CommunityToolkit.Maui.Views;\n\nnamespace MAUIsland.Core;\n\ninternal class ExpanderControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(Expander);\n    public string ControlRoute => \"MAUIsland.ExpanderPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_panel_top_expand_20_regular\n    };\n    public string ControlDetail => \"The Expander control provides an expandable container to host any content. The control has two main properties to store your content.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Controls/Expander\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/views/expander\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Controls/Expander/ExpanderPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class ExpanderPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ Fields ]\n\n    private readonly IControlsService MauiControlsService;\n    #endregion\n\n    #region [ CTor ]\n    public ExpanderPageViewModel(IAppNavigator appNavigator,\n                                 IGitHubService gitHubService,\n                                 IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                        : base(appNavigator,\n                                                gitHubService,\n                                                gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> controlGroupList;\n\n    [ObservableProperty]\n    bool isExpanding;\n\n    [ObservableProperty]\n    string expanderStatus;\n\n    [ObservableProperty]\n    string setupDescription =\n    \"In order to use the toolkit in XAML the following xmlns needs to be added into your page or view:\";\n\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleBefore =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.ExpanderPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleAfter =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.ExpanderPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlSimpleExpander =\n        \"<toolkit:Expander>\\r\\n\" +\n        \"   <toolkit:Expander.Header>\\r\\n\" +\n        \"       <Label Text=\\\"Click me\\\" \\r\\n\" +\n        \"              FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"              FontSize=\\\"Medium\\\" />\\r\\n\" +\n        \"   </toolkit:Expander.Header>\\r\\n\" +\n        \"   <Grid ColumnDefinitions=\\\"120, *\\\"\\r\\n\" +\n        \"         ColumnSpacing=\\\"10\\\">\\r\\n\" +\n        \"       <Image Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"              Aspect=\\\"AspectFill\\\"\\r\\n\" +\n        \"              Source=\\\"https://aka.ms/campus.jpg\\\"\\r\\n\" +\n        \"              HeightRequest=\\\"120\\\"\\r\\n\" +\n        \"              WidthRequest=\\\"120\\\"/>\\r\\n\" +\n        \"       <Label Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"              Text=\\\"The Microsoft headquarters, also known as the Microsoft Redmond campus, is a sprawling complex located in Redmond, Washington.\" +\n        \" It’s home to numerous buildings and facilities where Microsoft’s various teams and departments work.\" +\n        \" The campus is known for its modern architecture, lush landscaping, and amenities designed to foster collaboration and creativity among employees.\" +\n        \" It’s truly a landmark in the world of tech company campuses.\\\"\\r\\n\" +\n        \"              FontAttributes=\\\"Italic\\\" />\\r\\n\" +\n        \"   </Grid>\\r\\n\" +\n        \"</toolkit:Expander\";\n\n    [ObservableProperty]\n    string xamlSimpleExpanderOppositeDirection =\n        \"<toolkit:Expander Direction=\\\"Up\\\" \\r\\n\" +\n        \"                  FlowDirection=\\\"RightToLeft\\\">\\r\\n\" +\n        \"   <toolkit:Expander.Header>\\r\\n\" +\n        \"       <Label Text=\\\"Click me\\\" \\r\\n\" +\n        \"              FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"              FontSize=\\\"Medium\\\" />\\r\\n\" +\n        \"   </toolkit:Expander.Header>\\r\\n\" +\n        \"   <Grid ColumnDefinitions=\\\"120, *\\\"\\r\\n\" +\n        \"         ColumnSpacing=\\\"10\\\">\\r\\n\" +\n        \"       <Image Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"              Aspect=\\\"AspectFill\\\"\\r\\n\" +\n        \"              Source=\\\"https://aka.ms/campus.jpg\\\"\\r\\n\" +\n        \"              HeightRequest=\\\"120\\\"\\r\\n\" +\n        \"              WidthRequest=\\\"120\\\"/>\\r\\n\" +\n        \"       <Label Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"              Text=\\\"The Microsoft headquarters, also known as the Microsoft Redmond campus, is a sprawling complex located in Redmond, Washington.\" +\n        \" It’s home to numerous buildings and facilities where Microsoft’s various teams and departments work.\" +\n        \" The campus is known for its modern architecture, lush landscaping, and amenities designed to foster collaboration and creativity among employees.\" +\n        \" It’s truly a landmark in the world of tech company campuses.\\\"\\r\\n\" +\n        \"              FontAttributes=\\\"Italic\\\" />\\r\\n\" +\n        \"   </Grid>\\r\\n\" +\n        \"</toolkit:Expander>\";\n\n    [ObservableProperty]\n    string xamlSimpleExpanderCheckingExpand =\n        \"<Label>\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"Your Expander is: \\\" />\\r\\n\" +\n        \"           <Span BackgroundColor=\\\"Yellow\\\"\\r\\n\" +\n        \"                 Text=\\\"{x:Binding ExpanderStatus}\\\"/>\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\\r\\n\" +\n        \"<toolkit:Expander IsExpanded=\\\"{x:Binding IsExpanding}\\\">\\r\\n\" +\n        \"   <toolkit:Expander.Header>\\r\\n\" +\n        \"       <Label Text=\\\"Click me\\\" \\r\\n\" +\n        \"              FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"              FontSize=\\\"Medium\\\" />\\r\\n\" +\n        \"   </toolkit:Expander.Header>\\r\\n\" +\n        \"   <Grid ColumnDefinitions=\\\"120, *\\\"\\r\\n\" +\n        \"         ColumnSpacing=\\\"10\\\">\\r\\n\" +\n        \"       <Image Grid.Column=\\\"0\\\"\\r\\n\" +\n        \"              Aspect=\\\"AspectFill\\\"\\r\\n\" +\n        \"              Source=\\\"https://aka.ms/campus.jpg\\\"\\r\\n\" +\n        \"              HeightRequest=\\\"120\\\"\\r\\n\" +\n        \"              WidthRequest=\\\"120\\\"/>\\r\\n\" +\n        \"       <Label Grid.Column=\\\"1\\\"\\r\\n\" +\n        \"              Text=\\\"The Microsoft headquarters, also known as the Microsoft Redmond campus, is a sprawling complex located in Redmond, Washington.\" +\n        \" It’s home to numerous buildings and facilities where Microsoft’s various teams and departments work.\" +\n        \" The campus is known for its modern architecture, lush landscaping, and amenities designed to foster collaboration and creativity among employees.\" +\n        \" It’s truly a landmark in the world of tech company campuses.\\\"\\r\\n\" +\n        \"              FontAttributes=\\\"Italic\\\" />\\r\\n\" +\n        \"   </Grid>\\r\\n\" +\n        \"</toolkit:Expander>\";\n\n    [ObservableProperty]\n    string cSharpViewModelSimpleExpanderCheckingExpand =\n        \"[ObservableProperty]\\r\\n\" +\n        \"bool isExpanding;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"string expanderStatus = \\\"Is Close\\\";\\r\\n\\r\\n\" +\n        \"//This OnIsExpandingChanged this path of ObservableProperty annotation generate you can create your own version check the ObservableProperty in our App\\r\\n\" +\n        \"partial void OnIsExpandingChanged(bool value)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    if (value is true)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        this.ExpanderStatus = \\\"Is Expanded\\\";\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"    else \\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        this.ExpanderStatus = \\\"Is Close\\\";\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ExpanderStatus = \"Is Close\";\n        ControlGroupList = new ObservableCollection<IGalleryCardInfo>();\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n        ControlGroupList.Clear();\n\n        var items = await MauiControlsService.GetControlsAsync(ControlInformation.GroupName);\n\n        foreach (var item in items)\n        {\n            ControlGroupList.Add(item);\n        }\n        return;\n    }\n    #endregion\n\n    #region [ Methods ]\n    partial void OnIsExpandingChanged(bool value)\n    {\n        if (value is true)\n        {\n            this.ExpanderStatus = \"Is Expanded\";\n        }\n        else\n        {\n            this.ExpanderStatus = \"Is Close\";\n        }\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Controls/MediaElement/MediaElementControlInfo.cs",
    "content": "using CommunityToolkit.Maui.Views;\n\nnamespace MAUIsland.Core;\n\nclass MediaElementControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(MediaElement);\n    public string ControlRoute => \"MAUIsland.MediaElementPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_video_clip_24_regular\n    };\n    public string ControlDetail => \"MediaElement is a control for playing video and audio.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Controls/MediaElement\";\n    public string DocumentUrl => \"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/views/mediaelement\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Control;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Controls/MediaElement/MediaElementPageViewModel.cs",
    "content": "using CommunityToolkit.Maui.Core.Primitives;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\npublic partial class MediaElementPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n    public MediaElementPageViewModel(IAppNavigator appNavigator,\n                                     IGitHubService gitHubService,\n                                     IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                        : base(appNavigator,\n                                                gitHubService,\n                                                gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n    [ObservableProperty]\n    double volume;\n\n    [ObservableProperty]\n    MediaElementState currentState;\n\n    [ObservableProperty]\n    string setupDescription =\n        \"In order to use the toolkit in XAML the following xmlns needs to be added into your page or view:\";\n\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleBefore =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleAfter =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string iOSBypassing = \"To bypass the Hardware Silent Switch on iOS, add the following lines of code to MauiProgram.cs. This ensures that MediaElement's playback audio will always be audible to the user regardless of their device's Hardware Silent Switch.\";\n\n    [ObservableProperty]\n    string iOSBypassingSetup =\n        \"public static class MauiProgram\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    public static MauiApp CreateMauiApp()\\r\\n\\t\" +\n        \"    {\\r\\n\" +\n        \"#if IOS\\r\\n\" +\n        \"        AVAudioSession.SharedInstance().SetActive(true);\\r\\n\" +\n        \"        AVAudioSession.SharedInstance().SetCategory(AVAudioSessionCategory.Playback);\\r\\n\" +\n        \"#endif\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlSimpleRemoteMediaElement =\n        \"<toolkit:MediaElement MinimumHeightRequest=\\\"200\\\"\\r\\n\" +\n        \"                      houldShowPlaybackControls=\\\"True\\\"\\r\\n\" +\n        \"                      Source=\\\"https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4\\\" />\";\n\n\n    [ObservableProperty]\n    string xamlSimpleLocalMediaElement =\n        \"<toolkit:MediaElement Source = \\\"embed://MyFile.mp4\\\"\\r\\n\" +\n        \"                      ShouldShowPlaybackControls=\\\"True\\\" />\";\n    [ObservableProperty]\n    string mediaSourceStaticMethodsExample =\n        \"// FromFile\\r\\n\" +\n        \"var mediaSource = MediaSource.FromFile(\\\"localfile.mp4\\\");\\r\\n\" +\n        \"mediaElement.Source = mediaSource;\\r\\n\\r\\n \" +\n        \"// FromUri\\r\\n \" +\n        \"var mediaSource = MediaSource.FromUri(new Uri(\\\"https://website.com/media.mp4\\\"));\\r\\n\" +\n        \"mediaElement.Source = mediaSource;\\r\\n\\r\\n\" +\n        \"// FromResource\\r\\n\" +\n        \"var mediaSource = MediaSource.FromResource(\\\"YourAppName.Resources.media.mp4\\\");\\r\\n\" +\n        \"mediaElement.Source = mediaSource;\";\n\n    [ObservableProperty]\n    string mediaSourceExample =\n        \"// UriMediaSource\\r\\n\" +\n        \"var uriMediaSource = new UriMediaSource { Uri = new Uri(\\\"https://website.com/media.mp4\\\") };\\r\\n\" +\n        \"mediaElement.Source = uriMediaSource;\\r\\n\\r\\n\" +\n        \"// FileMediaSource\\r\\n\" +\n        \"var fileMediaSource = new FileMediaSource { File = \\\"media.mp4\\\" };\\r\\n\" +\n        \"mediaElement.Source = fileMediaSource;\\r\\n\\r\\n\" +\n        \"// ResourceMediaSource\\r\\n\" +\n        \"var resourceMediaSource = new ResourceMediaSource { Resource = \\\"YourAppName.Resources.media.mp4\\\" };\\r\\n\" +\n        \"mediaElement.Source = resourceMediaSource;\";\n\n    [ObservableProperty]\n    string aspectRatioExample =\n        \"<toolkit:MediaElement x:Name=\\\"MediaElement\\\" \\r\\n\" +\n        \"                      Aspect=\\\"AspectFill\\\"/>\";\n\n    [ObservableProperty]\n    string xamlMediaElement =\n        \"<Frame Style=\\\"{x:StaticResource DocumentContentFrameStyle}\\\">\\r\\n\" +\n        \"     <toolkit:MediaElement x:Name=\\\"MediaElement\\\" \\r\\n\" +\n        \"              ShouldAutoPlay=\\\"False\\\"\\r\\n\" +\n        \"              Volume=\\\"{x:Binding Volume}\\\"\\r\\n\" +\n        \"              MediaEnded=\\\"OnMediaEnded\\\"\\r\\n\" +\n        \"              MediaFailed=\\\"OnMediaFailed\\\"\\r\\n\" +\n        \"              MediaOpened=\\\"OnMediaOpened\\\"\\r\\n\" +\n        \"              PositionChanged=\\\"OnPositionChanged\\\"\\r\\n\" +\n        \"              StateChanged=\\\"OnStateChanged\\\"\\r\\n\" +\n        \"              SeekCompleted=\\\"OnSeekCompleted\\\"\\r\\n\" +\n        \"              Source=\\\"https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4\\\"/>\\r\\n\" +\n        \"</Frame>\\r\\n\" +\n        \"<Frame Style=\\\"{x:StaticResource DocumentContentFrameStyle}\\\">\\r\\n\" +\n        \"     <HorizontalStackLayout BindingContext=\\\"{x:Reference MediaElement}\\\">\\r\\n\" +\n        \"       <Button Grid.Column=\\\"0\\\" Text=\\\"Play\\\" Clicked=\\\"OnPlayClicked\\\" />\\r\\n\" +\n        \"       <Button Grid.Column=\\\"1\\\" Text=\\\"Pause\\\" Clicked=\\\"OnPauseClicked\\\" />\\r\\n\" +\n        \"       <Button Grid.Column=\\\"2\\\" Text=\\\"Stop\\\" Clicked=\\\"OnStopClicked\\\" />\\r\\n\" +\n        \"       <Button Grid.Column=\\\"3\\\" Text=\\\"Mute\\\" Clicked=\\\"OnMuteClicked\\\">\\r\\n\" +\n        \"           <Button.Triggers>\\r\\n\" +\n        \"               <DataTrigger TargetType=\\\"Button\\\"\\r\\n\" +\n        \"                            Binding=\\\"{Binding ShouldMute, Source={x:Reference MediaElement}}\\\"\\r\\n\" +\n        \"                            Value=\\\"True\\\">\\r\\n\" +\n        \"                   <Setter Property=\\\"Text\\\" Value=\\\"Unmute\\\" />\\r\\n\" +\n        \"               </DataTrigger>\\r\\n\" +\n        \"               <DataTrigger TargetType=\\\"Button\\\"\\r\\n\" +\n        \"                            Binding=\\\"{Binding ShouldMute, Source={x:Reference MediaElement}}\\\"\\r\\n\" +\n        \"                            Value=\\\"False\\\">\\r\\n\" +\n        \"                   <Setter Property=\\\"Text\\\" Value=\\\"Mute\\\" />\\r\\n\" +\n        \"               </DataTrigger>\\r\\n\" +\n        \"           </Button.Triggers>\\r\\n\" +\n        \"     </Button>\\r\\n\" +\n        \"     <Button Text=\\\">\\\" Clicked=\\\"OnSpeedMinusClicked\\\" />\\r\\n\" +\n        \"     <Button Text=\\\">>>\\\" Clicked=\\\"OnSpeedPlusClicked\\\" />\\r\\n\" +\n        \"     <Button Text=\\\"-\\\" Clicked=\\\"OnVolumeMinusClicked\\\" />\\r\\n\" +\n        \"     <Button Text=\\\"+\\\" Clicked=\\\"OnVolumePlusClicked\\\" />\\r\\n\" +\n        \"   </HorizontalStackLayout>\\r\\n\" +\n        \"</Frame>\";\n\n    [ObservableProperty]\n    string cSharpMediaElement =\n        \"void OnMediaOpened(object? sender, EventArgs e) \\r\\n\" +\n        \"   => MediaElementLogger.LogInformation(\\\"Media opened.\\\");\\r\\n\\r\\n\" +\n        \"void OnStateChanged(object? sender, MediaStateChangedEventArgs e) \\r\\n\" +\n        \"   => MediaElementLogger.LogInformation(\\\"Media State Changed. Old State: {PreviousState}, New State: {NewState}\\\", e.PreviousState, e.NewState);\\r\\n\\r\\n\" +\n        \"void OnMediaFailed(object? sender, MediaFailedEventArgs e) \\r\\n\" +\n        \"   => MediaElementLogger.LogInformation(\\\"Media failed. Error: {ErrorMessage}\\\", e.ErrorMessage);\\r\\n\\r\\n\" +\n        \"void OnMediaEnded(object? sender, EventArgs e) \\r\\n\" +\n        \"   => MediaElementLogger.LogInformation(\\\"Media ended.\\\");\\r\\n\\r\\n\" +\n        \"void OnPositionChanged(object? sender, MediaPositionChangedEventArgs e)\\r\\n\" +\n        \"   => MediaElementLogger.LogInformation(\\\"Position changed to {position}\\\", e.Position);\\r\\n\\r\\n\" +\n        \"void OnSeekCompleted(object? sender, EventArgs e) \\r\\n\" +\n        \"   => MediaElementLogger.LogInformation(\\\"Seek completed.\\\");\\r\\n\\r\\n\" +\n        \"void OnSpeedMinusClicked(object? sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    if (MediaElement.Speed >= 1)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        MediaElement.Speed -= 1;\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\\r\\n\" +\n        \"void OnSpeedPlusClicked(object? sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    if (MediaElement.Speed < 10)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        MediaElement.Speed += 1;\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\\r\\n\" +\n        \"void OnVolumeMinusClicked(object? sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    if (MediaElement.Volume >= 0)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        if (MediaElement.Volume < .1)\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            MediaElement.Volume = 0;\\r\\n\" +\n        \"            return;\\r\\n\" +\n        \"        }\\r\\n\\r\\n\" +\n        \"        MediaElement.Volume -= .1;\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"void OnVolumePlusClicked(object? sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    if (MediaElement.Volume < 1)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        if (MediaElement.Volume > .9)\\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            MediaElement.Volume = 1;\\r\\n\" +\n        \"            return;\\r\\n\" +\n        \"        }\\r\\n\" +\n        \"        MediaElement.Volume += .1;\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"void OnPlayClicked(object? sender, EventArgs e)\\r\\n\" +\n        \"   => MediaElement.Play();\\r\\n\\r\\n\" +\n        \"void OnPauseClicked(object? sender, EventArgs e)\\r\\n\" +\n        \"   => MediaElement.Pause();\\r\\n\\r\\n\" +\n        \"void OnStopClicked(object? sender, EventArgs e)\\r\\n\" +\n        \"   => MediaElement.Stop();\\r\\n\\r\\n\" +\n        \"void OnMuteClicked(object? sender, EventArgs e)\\r\\n\" +\n        \"   => MediaElement.ShouldMute = !MediaElement.ShouldMute;\";\n\n    [ObservableProperty]\n    string xamlVolumeControl =\n        \"<toolkit:MediaElement x:Name=\\\"MediaElement\\\" \\r\\n\" +\n        \"                      ShouldAutoPlay=\\\"False\\\"\\r\\n\" +\n        \"                      Volume=\\\"{x:Binding Volume, Mode=TwoWay}\\\" \\r\\n\" +\n        \"                      Source=\\\"https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4\\\"/>\\r\\n\\r\\n\" +\n        \"<Slider x:Name=\\\"VolumeSlider\\\"\\r\\n\" +\n        \"        IsEnabled=\\\"True\\\"\\r\\n\" +\n        \"        Maximum=\\\"1.0\\\"\\r\\n\" +\n        \"        Minimum=\\\"0.0\\\"\\r\\n\" +\n        \"        MinimumTrackColor=\\\"Gray\\\"\\r\\n\" +\n        \"        Value=\\\"{x:Binding Volume, Mode=TwoWay}\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"200\\\" />\";\n\n    [ObservableProperty]\n    string cSharpVolumeControl =\n        \"[ObservableProperty]\\r\\n\" +\n        \"double volume;\\r\\n \";\n\n    [ObservableProperty]\n    string xamlPositionControl =\n        \"<toolkit:MediaElement x:Name=\\\"MediaElement\\\" \\r\\n\" +\n        \"                      ShouldAutoPlay=\\\"False\\\"\\r\\n\" +\n        \"                      PositionChanged=\\\"OnPositionChanged\\\"\\r\\n\" +\n        \"                      Source=\\\"https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4\\\"/>\\r\\n\\r\\n\" +\n        \"<Slider x:Name=\\\"PositionSlider\\\"\\r\\n\" +\n        \"        IsEnabled=\\\"True\\\"\\r\\n\" +\n        \"        MinimumTrackColor=\\\"Gray\\\"\\r\\n\" +\n        \"        DragStarted=\\\"Slider_DragStarted\\\"\\r\\n\" +\n        \"        DragCompleted=\\\"Slider_DragCompleted\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"200\\\" />\";\n\n    [ObservableProperty]\n    string cSharpPositionControl =\n        \"public MediaElementPage(MediaElementPageViewModel vm)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     InitializeComponent();\\r\\n\\r\\n\" +\n        \"     BindingContext = vm;\\r\\n\" +\n        \"     MediaElement.PropertyChanged += MediaElementPropertyChanged;\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"void MediaElementPropertyChanged(object? sender, PropertyChangedEventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    if (e.PropertyName == MediaElement.DurationProperty.PropertyName)\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        PositionSlider.Maximum = MediaElement.Duration.TotalSeconds;\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"}\\r\\n\" +\n        \"void OnPositionChanged(object? sender, MediaPositionChangedEventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    PositionSlider.Value = e.Position.TotalSeconds;\\r\\n\" +\n        \"}\\r\\n\" +\n        \"void Slider_DragCompleted(object? sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    ArgumentNullException.ThrowIfNull(sender);\\r\\n\\r\\n\" +\n        \"    var newValue = ((Slider)sender).Value;\\r\\n\" +\n        \"    MediaElement.SeekTo(TimeSpan.FromSeconds(newValue));\\r\\n\\r\\n\" +\n        \"    MediaElement.Play();\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"void Slider_DragStarted(object sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    MediaElement.Pause();\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string xamlCleanUpProperty = \"Unloaded=\\\"ContentPage_Unloaded\\\"\";\n\n    [ObservableProperty]\n    string cleanUpOnDisappearing = \"\";\n\n    [ObservableProperty]\n    string xamlCleanUpMediaElementResourcesRemovedVisualTree =\n        \"<core:BasePage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    x:DataType=\\\"app:MediaElementPageViewModel\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:app=\\\"clr-namespace:MAUIsland\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\\r\\n\" +\n        \"    Loaded=\\\"ContentPage_Loaded\\\"\\r\\n\" +\n        \"    Unloaded=\\\"ContentPage_Unloaded\\\">\\r\\n\" +\n        \"</core:BasePage>\";\n\n    [ObservableProperty]\n    string cSharpCleanUpMediaElementResourcesRemovedVisualTree =\n        \"void ContentPage_Unloaded(object? sender, EventArgs e)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    MediaElementDownloadSample.Handler?.DisconnectHandler();\\r\\n\" +\n        \"    MediaElement.Handler?.DisconnectHandler();\\r\\n\" +\n        \"    SimpleMediaElement.Handler?.DisconnectHandler();\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string cleanUpMediaElementResourcesPageInvisible =\n        \"protected override void OnDisappearing()\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     base.OnDisappearing();\\r\\n\\r\\n\" +\n        \"     // Disconnect the event handlers.\\r\\n\" +\n        \"     MediaElement.MediaEnded -= OnMediaEnded;\\r\\n\" +\n        \"     MediaElement.MediaFailed -= OnMediaFailed;\\r\\n\" +\n        \"     MediaElement.MediaOpened -= OnMediaOpened;\\r\\n\" +\n        \"     MediaElement.PositionChanged -= OnPositionChanged;\\r\\n\" +\n        \"     MediaElement.StateChanged -= OnStateChanged;\\r\\n\" +\n        \"     MediaElement.SeekCompleted -= OnSeekCompleted;\\r\\n\\r\\n\" +\n        \"     // Set the Source property to null.\\r\\n\" +\n        \"     MediaElement.Source = null;\\r\\n    }\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        Volume = 0.5;\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n}\n\npublic partial class SupportedFormatsTable\n{\n    public string Platform { get; set; }\n    public string Link { get; set; }\n    public string Notes { get; set; }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/BoolToObjectConverter/BoolToObjectConverterControlInfo.cs",
    "content": "﻿using CommunityToolkit.Maui.Converters;\n\nnamespace MAUIsland.Core;\n\nclass BoolToObjectConverterControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(BoolToObjectConverter);\n\n    public string ControlRoute => \"MAUIsland.BoolToObjectConverterPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"The BoolToObjectConverter is a converter that allows users to convert a bool value binding to a specific object. By providing both a TrueObject and a FalseObject in the converter the appropriate object will be returned depending on the value of the binding.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/BoolToObjectConverter\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/bool-to-object-converter\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Converter;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/BoolToObjectConverter/BoolToObjectConverterPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class BoolToObjectConverterPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n    public BoolToObjectConverterPageViewModel(IAppNavigator appNavigator,\n                                              IGitHubService gitHubService,\n                                              IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                                    : base(appNavigator,\n                                                           gitHubService,\n                                                           gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    bool converterTesting1 = true;\n\n    [ObservableProperty]\n    bool converterTesting2 = false;\n\n    [ObservableProperty]\n    string setupDescription =\n    \"In order to use the toolkit in XAML the following xmlns needs to be added into your page or view:\";\n\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleBefore =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleAfter =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlConverterTesting =\n        \"<Label>\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"This is the \\\"/>\\r\\n\" +\n        \"           <Span Text=\\\"ConverterTesting2\\\"\\r\\n\" +\n        \"                 FontAttributes=\\\"Bold\\\"/>\\r\\n\" +\n        \"           <Span Text=\\\" property with the Converter: \\\"/>\\r\\n\" +\n        \"           <Span Text=\\\"{x:Binding ConverterTesting2, Converter={StaticResource BoolToObjectConverter2}}\\\" \\r\\n\" +\n        \"                 FontAttributes=\\\"Bold\\\"/>\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\";\n\n    [ObservableProperty]\n    string xamlConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:BoolToObjectConverter x:Key=\\\"BoolToObjectConverter2\\\" TrueObject=\\\"Visible\\\" FalseObject=\\\"Collapsed\\\" />\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpxamlConverterTestingViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"bool converterTesting2 = false;\";\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n    }\n    #endregion\n\n    #region[ Relay Command ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/ByteArrayToImageSourceConverter/ByteArrayToImageSourceConverterControlInfo.cs",
    "content": "﻿using CommunityToolkit.Maui.Converters;\n\nnamespace MAUIsland.Core;\n\nclass ByteArrayToImageSourceConverterControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(ByteArrayToImageSourceConverter);\n\n    public string ControlRoute => \"MAUIsland.ByteArrayToImageSourceConverterPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"The ByteArrayToImageSourceConverter is a converter that allows the user to convert an incoming value from a byte array and returns an ImageSource. This object can then be used as the Source of an Image control.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/byte-array-to-image-source-converter\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Converter;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/ByteArrayToImageSourceConverter/ByteArrayToImageSourceConverterPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class ByteArrayToImageSourceConverterPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n    public ByteArrayToImageSourceConverterPageViewModel(IAppNavigator appNavigator,\n                                                        IGitHubService gitHubService,\n                                                        IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                                            : base(appNavigator,\n                                                                    gitHubService,\n                                                                    gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    byte[] imageByteArray;\n\n    [ObservableProperty]\n    string imageByteArrayToString;\n\n    [ObservableProperty]\n    string setupDescription =\n    \"In order to use the toolkit in XAML the following xmlns needs to be added into your page or view:\";\n\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleBefore =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleAfter =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlConverterTesting =\n        \"<Image Source=\\\"{x:Binding ImageByteArray, Converter={x:StaticResource ByteArrayToImageSourceConverter}}\\\"/>\";\n\n    [ObservableProperty]\n    string xamlConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:ByteArrayToImageSourceConverter x:Key=\\\"ByteArrayToImageSourceConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpxamlConverterTestingViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"byte[] imageByteArray;\";\n    #endregion\n\n    #region[ Relay Command ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n        LoadDataAsync().FireAndForget();\n    }\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n        ImageByteArray = await ImageUrlToByteArrayAsync(\"https://aka.ms/campus.jpg\");\n        ImageByteArrayToString = ByteArrayToString(ImageByteArray);\n    }\n    #endregion\n\n    #region [ Method ]\n    public async Task<byte[]> ImageUrlToByteArrayAsync(string imageUrl)\n    {\n        using var httpClient = new HttpClient();\n        return await httpClient.GetByteArrayAsync(imageUrl).ConfigureAwait(false);\n    }\n    public string ByteArrayToString(byte[] byteArray)\n    {\n        return BitConverter.ToString(byteArray);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/ColorConverter/ColorConverterControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\nclass ColorConverterControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => \"ColorConverter\";\n\n    public string ControlRoute => \"MAUIsland.ColorConverterPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"A group of converters that convert a Color to strings value like RGB, HEX, HSL, etc\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Converter;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/ColorConverter/ColorConverterPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class ColorConverterPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ Fields ]\n    #endregion\n\n    #region [ CTor ]\n    public ColorConverterPageViewModel(IAppNavigator appNavigator,\n                                       IGitHubService gitHubService,\n                                       IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                            : base(appNavigator,\n                                                    gitHubService,\n                                                    gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> controlGroupList = default!;\n\n    [ObservableProperty]\n    double blueByte;\n\n    [ObservableProperty]\n    double redByte;\n\n    [ObservableProperty]\n    double greenByte;\n\n    [ObservableProperty]\n    double alphaByte;\n\n    [ObservableProperty]\n    Color exampleColor = Color.FromRgba(1, 1, 1, 1);\n\n    [ObservableProperty]\n    Color exampleColorNotIncludeAlpha = Colors.White;\n\n    [ObservableProperty]\n    string setupDescription =\n        \"In order to use the toolkit in XAML the following xmlns needs to be added into your page or view:\";\n\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleBefore =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleAfter =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpColorConverterTestingViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"Color exampleColor = Color.FromRgba(1, 1, 1, 1); \\r\\n\" +\n        \"//You can add any color you want, you can pass int from 0 to 255 to FromRgba, or you can use Microsoft.Maui.Graphics.Colors\";\n\n    [ObservableProperty]\n    string cSharpColorNoAlphaConverterTestingViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"Color exampleColor = Color.FromRgba(1, 1, 1, 1); \\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"Color exampleColorNotIncludeAlpha = Colors.White;\\r\\n\" +\n        \"//You can add any color you want, you can pass int from 0 to 255 to FromRgb\";\n\n    [ObservableProperty]\n    string xamlColorToBlackOrWhiteConverterTextTesting =\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToBlackOrWhiteConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToBlackOrWhiteConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:ColorToBlackOrWhiteConverter x:Key=\\\"ColorToBlackOrWhiteConverter\\\" />\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToByteAlphaConverterTextTesting =\n    \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n    \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToByteAlphaConverter}}\\\"\\r\\n\" +\n    \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToByteAlphaConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:ColorToByteAlphaConverter x:Key=\\\"ColorToByteAlphaConverter\\\" />\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToByteBlueConverterTextTesting =\n    \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n    \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToByteBlueConverter}}\\\"\\r\\n\" +\n    \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToByteBlueConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:ColorToByteBlueConverter x:Key=\\\"ColorToByteBlueConverter\\\" />\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToByteGreenConverterTextTesting =\n    \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n    \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToByteGreenConverter}}\\\"\\r\\n\" +\n    \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToByteGreenConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:ColorToByteGreenConverter x:Key=\\\"ColorToByteGreenConverter\\\" />\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToByteRedConverterTextTesting =\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToByteRedConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToByteRedConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:ColorToByteRedConverter x:Key=\\\"ColorToByteRedConverter\\\" />\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToCmykaStringConverterTextTesting =\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToCmykaStringConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToCmykaStringConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:ColorToCmykaStringConverter x:Key=\\\"ColorToCmykaStringConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToCmykStringConverterTextTesting =\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToCmykStringConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToCmykStringConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:ColorToCmykStringConverter x:Key=\\\"ColorToCmykStringConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToColorForTextConverterTextTesting =\n    \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n    \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToColorForTextConverter}}\\\"\\r\\n\" +\n    \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToColorForTextConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToColorForTextConverter x:Key=\\\"ColorToColorForTextConverter\\\"/>\\r\\n\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToDegreeHueConverterTextTesting =\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToDegreeHueConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToDegreeHueConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToDegreeHueConverter x:Key=\\\"ColorToDegreeHueConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToGrayScaleColorConverterTextTesting =\n    \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n    \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToGrayScaleColorConverter}}\\\"\\r\\n\" +\n    \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToGrayScaleColorConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToGrayScaleColorConverter x:Key=\\\"ColorToGrayScaleColorConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToHexRgbStringConverterTextTesting =\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColorNotIncludeAlpha, Converter={x:StaticResource ColorToHexRgbStringConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\\r\\n\" +\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToHexRgbStringConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToHexRgbStringConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToHexRgbStringConverter x:Key=\\\"ColorToHexRgbStringConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToHexRgbaStringConverterTextTesting =\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToHexRgbaStringConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToHexRgbaStringConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToHexRgbaStringConverter x:Key=\\\"ColorToHexRgbaStringConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToHslStringConverterTextTesting =\n    \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n    \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToHslStringConverter}}\\\"\\r\\n\" +\n    \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToHslStringConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToHslStringConverter x:Key=\\\"ColorToHslStringConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToHslaStringConverterTextTesting =\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToHslaStringConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToHslaStringConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToHslaStringConverter x:Key=\\\"ColorToHslaStringConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToInverseColorConverterTextTesting =\n    \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n    \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToInverseColorConverter}}\\\"\\r\\n\" +\n    \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToInverseColorConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToInverseColorConverter x:Key=\\\"ColorToInverseColorConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToPercentBlackKeyConverterTextTesting =\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToPercentBlackKeyConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToPercentBlackKeyConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToPercentBlackKeyConverter x:Key=\\\"ColorToPercentBlackKeyConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToPercentCyanConverterTextTesting =\n    \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n    \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToPercentCyanConverter}}\\\"\\r\\n\" +\n    \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToPercentCyanConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToPercentCyanConverter x:Key=\\\"ColorToPercentCyanConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToPercentMagentaConverterTextTesting =\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToPercentMagentaConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToPercentMagentaConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToPercentMagentaConverter x:Key=\\\"ColorToPercentMagentaConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToPercentYellowConverterTextTesting =\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToPercentYellowConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToPercentYellowConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToPercentYellowConverter x:Key=\\\"ColorToPercentYellowConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToRgbStringConverterTextTesting =\n    \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n    \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToRgbStringConverter}}\\\"\\r\\n\" +\n    \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToRgbStringConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToRgbStringConverter x:Key=\\\"ColorToRgbStringConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlColorToRgbaStringConverterTextTesting =\n        \"<Label Text=\\\"Text Color\\\"\\r\\n\" +\n        \"       TextColor=\\\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToRgbaStringConverter}}\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"/>\";\n\n    [ObservableProperty]\n    string xamlColorToRgbaStringConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"       <toolkit:ColorToRgbaStringConverter x:Key=\\\"ColorToRgbaStringConverter\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n        LoadDataAsync().FireAndForget();\n    }\n    #endregion\n\n    #region[ Relay Command ]\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    Task OpenColorToBlackOrWhiteConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-black-or-white-converter\");\n\n    [RelayCommand]\n    Task OpenColorToByteAlphaConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-byte-alpha-converter\");\n\n    [RelayCommand]\n    Task OpenColorToByteBlueConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-byte-blue-converter\");\n\n    [RelayCommand]\n    Task OpenColorToByteRedConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-byte-red-converter\");\n\n    [RelayCommand]\n    Task OpenColorToByteGreenConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-byte-green-converter\");\n\n    [RelayCommand]\n    Task OpenColorToCmykaStringConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-cmyka-string-converter\");\n\n    [RelayCommand]\n    Task OpenColorToCmykStringConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-cmyk-string-converter\");\n\n    [RelayCommand]\n    Task OpenColorToColorForTextConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-color-for-text-converter\");\n\n    [RelayCommand]\n    Task OpenColorToDegreeHueConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-degree-hue-converter\");\n\n    [RelayCommand]\n    Task OpenColorToGrayScaleColorConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-gray-scale-color-converter\");\n\n    [RelayCommand]\n    Task OpenColorToHexRgbStringConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-gray-scale-color-converter\");\n\n    [RelayCommand]\n    Task OpenColorToHexRgbaStringConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-hex-rgba-string-converter\");\n\n    [RelayCommand]\n    Task OpenColorToHslStringConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-hsl-string-converter\");\n\n    [RelayCommand]\n    Task OpenColorToHslaStringConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-hsla-string-converter\");\n\n    [RelayCommand]\n    Task OpenColorToInverseColorConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-inverse-color-converter\");\n\n    [RelayCommand]\n    Task OpenColorToPercentBlackKeyConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-percent-black-key-converter\");\n\n    [RelayCommand]\n    Task OpenColorToPercentCyanConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-percent-cyan-converter\");\n\n    [RelayCommand]\n    Task OpenColorToPercentMagentaConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-percent-magenta-converter\");\n\n    [RelayCommand]\n    Task OpenColorToPercentYellowConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-percent-yellow-converter\");\n\n    [RelayCommand]\n    Task OpenColorToRgbStringConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-rgb-string-converter\");\n\n    [RelayCommand]\n    Task OpenColorToRgbaStringConverterUrlAsync()\n        => AppNavigator.OpenUrlAsync(\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/color-to-rgba-string-converter\");\n\n    #endregion\n\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n    }\n    #endregion\n\n    #region [ Method ]\n    partial void OnRedByteChanged(double value)\n    {\n        ExampleColor = Color.FromRgba(value, ExampleColor.Green, ExampleColor.Blue, ExampleColor.Alpha);\n        ExampleColorNotIncludeAlpha = Color.FromRgb(value, ExampleColor.Green, ExampleColor.Blue);\n    }\n\n    partial void OnGreenByteChanged(double value)\n    {\n        ExampleColor = Color.FromRgba(ExampleColor.Red, value, ExampleColor.Blue, ExampleColor.Alpha);\n        ExampleColorNotIncludeAlpha = Color.FromRgb(ExampleColor.Red, value, ExampleColor.Blue);\n    }\n\n    partial void OnBlueByteChanged(double value)\n    {\n        ExampleColor = Color.FromRgba(ExampleColor.Red, ExampleColor.Green, value, ExampleColor.Alpha);\n        ExampleColorNotIncludeAlpha = Color.FromRgb(ExampleColor.Red, ExampleColor.Green, value);\n    }\n\n    partial void OnAlphaByteChanged(double value)\n    {\n        ExampleColor = Color.FromRgba(ExampleColor.Red, ExampleColor.Green, ExampleColor.Blue, value);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/CompareConverter/CompareConverterControlInfo.cs",
    "content": "﻿using CommunityToolkit.Maui.Converters;\n\nnamespace MAUIsland.Core;\n\nclass CompareConverterControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(CompareConverter);\n\n    public string ControlRoute => \"MAUIsland.CompareConverterPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"The CompareConverter is a one way converter that take an incoming value implementing IComparable, compares to a specified value, and returns the comparison result. The result will default to a bool if no objects were specified through the TrueObject and/or FalseObject properties. If values are assigned to the TrueObject and/or FalseObject properties, the CompareConverter returns the respective object assigned.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/compare-converter\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Converter;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/CompareConverter/CompareConverterPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class CompareConverterPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n\n    public CompareConverterPageViewModel(IAppNavigator appNavigator,\n                                         IGitHubService gitHubService,\n                                         IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                                : base(appNavigator,\n                                                        gitHubService,\n                                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    double slideValue = 0;\n\n    [ObservableProperty]\n    int testValue1;\n\n    [ObservableProperty]\n    double testValue2;\n\n    [ObservableProperty]\n    string setupDescription =\n    \"In order to use the toolkit in XAML the following xmlns needs to be added into your page or view:\";\n\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleBefore =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleAfter =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlConverterTesting =\n        \"<Label Text=\\\"The background of this label will be green if the value entered is less than 50, and red otherwise.\\\" \\r\\n\" +\n        \"       BackgroundColor=\\\"{x:Binding TestValue1, Converter={StaticResource CompareConverter1}}\\\"\\r\\n\" +\n        \"       VerticalOptions=\\\"Center\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"       FontSize=\\\"14\\\"\\r\\n\" +\n        \"       HorizontalOptions=\\\"CenterAndExpand\\\"/>\\r\\n\" +\n        \"<Label Text=\\\"The background of this label will be green if the value entered is less than 50, and red otherwise.\\\" \\r\\n\" +\n        \"       BackgroundColor=\\\"{x:Binding TestValue2, Converter={StaticResource CompareConverter2}}\\\"\\r\\n\" +\n        \"       VerticalOptions=\\\"Center\\\"\\r\\n\" +\n        \"       FontAttributes=\\\"Bold\\\"\\r\\n\" +\n        \"       FontSize=\\\"14\\\"\\r\\n\" +\n        \"       HorizontalOptions=\\\"CenterAndExpand\\\"/>\";\n\n    [ObservableProperty]\n    string xamlConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <x:Int32 x:Key=\\\"ComparingValue1\\\">30</x:Int32>\\r\\n\\r\\n\" +\n        \"        <x:Double x:Key=\\\"ComparingValue2\\\">40</x:Double>\\r\\n\\r\\n\" +\n        \"        <toolkit:CompareConverter x:Key=\\\"CompareConverter1\\\"\\r\\n\" +\n        \"                                  ComparisonOperator=\\\"GreaterOrEqual\\\"\\r\\n\" +\n        \"                                  ComparingValue=\\\"{x:StaticResource ComparingValue1}\\\"\\r\\n\" +\n        \"                                  TrueObject=\\\"LightGreen\\\"\\r\\n\" +\n        \"                                  FalseObject=\\\"OrangeRed\\\"/>\\r\\n\\r\\n\" +\n        \"        <toolkit:CompareConverter x:Key=\\\"CompareConverter2\\\"\\r\\n\" +\n        \"                                  ComparisonOperator=\\\"SmallerOrEqual\\\"\\r\\n\" +\n        \"                                  ComparingValue=\\\"{x:StaticResource ComparingValue2}\\\"\\r\\n\" +\n        \"                                  TrueObject=\\\"LightGreen\\\"\\r\\n\" +\n        \"                                  FalseObject=\\\"OrangeRed\\\"/>\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpxamlConverterTestingViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"int testValue1;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"double testValue2;\";\n    #endregion\n\n    #region[ Relay Command ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n        LoadDataAsync().FireAndForget();\n    }\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n    }\n    #endregion\n\n    #region [ Method ]\n    partial void OnSlideValueChanged(double value)\n    {\n        TestValue1 = (int)Math.Round(value);\n        TestValue2 = value;\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/DateTimeOffsetConverter/DateTimeOffsetConverterControlInfo.cs",
    "content": "﻿using CommunityToolkit.Maui.Converters;\n\nnamespace MAUIsland.Core;\n\npublic class DateTimeOffsetConverterControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(DateTimeOffsetConverter);\n\n    public string ControlRoute => \"MAUIsland.DateTimeOffsetConverterPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"The DateTimeOffsetConverter is a converter that allows users to convert a DateTimeOffset to a DateTime. Sometimes a DateTime value is stored with the offset on a backend to allow for storing the timezone in which a DateTime originated from. Controls like the Microsoft.Maui.Controls.DatePicker only work with DateTime. This converter can be used in those scenarios.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/datetimeoffsetconverter\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Converter;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/DateTimeOffsetConverter/DateTimeOffsetConverterPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class DateTimeOffsetConverterPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n    public DateTimeOffsetConverterPageViewModel(IAppNavigator appNavigator,\n                                                IGitHubService gitHubService,\n                                                IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                                    : base(appNavigator,\n                                                            gitHubService,\n                                                            gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    DateTimeOffset dateTimeOffset = new DateTimeOffset();\n\n    [ObservableProperty]\n    string setupDescription =\n    \"In order to use the toolkit in XAML the following xmlns needs to be added into your page or view:\";\n\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleBefore =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleAfter =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlConverterTesting =\n        \"<DatePicker Date=\\\"{x:Binding DateTimeOffset, Converter={StaticResource DateTimeOffsetConverter}}\\\"\\r\\n\" +\n        \"            HorizontalOptions=\\\"Center\\\" />\";\n\n    [ObservableProperty]\n    string xamlConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:DateTimeOffsetConverter x:Key=\\\"DateTimeOffsetConverter\\\" />\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpxamlConverterTestingViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"DateTimeOffset dateTimeOffset = new DateTimeOffset();\";\n    #endregion\n\n    #region[ Relay Command ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n        LoadDataAsync().FireAndForget();\n    }\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n    }\n    #endregion\n\n    #region [ Method ]\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/DoubleToIntConverter/DoubleToIntConverterControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\nclass DoubleToIntConverterControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(Core.DoubleToIntConverter);\n\n    public string ControlRoute => \"MAUIsland.DoubleToIntConverterPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"The DoubleToIntConverter is a converter that allows users to convert an incoming double value to an int and vice-versa. Optionally the user can provide a multiplier to the conversion through the Ratio property.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/double-to-int-converter\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Converter;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/DoubleToIntConverter/DoubleToIntConverterPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class DoubleToIntConverterPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n    public DoubleToIntConverterPageViewModel(IAppNavigator appNavigator,\n                                             IGitHubService gitHubService,\n                                             IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                                : base(appNavigator,\n                                                        gitHubService,\n                                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    double testValue;\n\n    [ObservableProperty]\n    string setupDescription =\n    \"In order to use the toolkit in XAML the following xmlns needs to be added into your page or view:\";\n\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleBefore =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleAfter =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlConverterTesting =\n        \"<Label Text=\\\"{x:Binding TestValue, Converter={StaticResource DoubleToIntConverter}}\\\" />\";\n\n    [ObservableProperty]\n    string xamlConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:DoubleToIntConverter x:Key=\\\"DoubleToIntConverter\\\" />\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpxamlConverterTestingViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"double testValue;\";\n    #endregion\n\n    #region[ Relay Command ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n        LoadDataAsync().FireAndForget();\n    }\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n    }\n    #endregion\n\n    #region [ Method ]\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/EnumToBoolConverter/EnumToBoolConverterControlInfo.cs",
    "content": "﻿using CommunityToolkit.Maui.Converters;\n\nnamespace MAUIsland.Core;\n\nclass EnumToBoolConverterControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(EnumToBoolConverter);\n\n    public string ControlRoute => \"MAUIsland.EnumToBoolConverterPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"The EnumToBoolConverter is a one way converter that allows you to convert an Enum to a corresponding bool based on whether it is equal to a set of supplied enum values. It is useful when binding a collection of values representing an enumeration type to a boolean control property like the IsVisible property.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/enum-to-bool-converter\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Converter;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/EnumToBoolConverter/EnumToBoolConverterPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class EnumToBoolConverterPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n    public EnumToBoolConverterPageViewModel(IAppNavigator appNavigator,\n                                            IGitHubService gitHubService,\n                                            IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                            : base(appNavigator,\n                                                    gitHubService,\n                                                    gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    ObservableCollection<GalleryCardType> galleryCardTypes = default!;\n\n    [ObservableProperty]\n    GalleryCardType selectedItem;\n\n    [ObservableProperty]\n    string setupDescription =\n    \"In order to use the toolkit in XAML the following xmlns needs to be added into your page or view:\";\n\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleBefore =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleAfter =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlConverterTesting =\n        \"<Label Text=\\\"Let Go!\\\" \\r\\n\" +\n        \"       TextColor=\\\"OrangeRed\\\"\\r\\n\" +\n        \"       IsVisible=\\\"{x:Binding SelectedItem, Converter={StaticResource EnumToBoolConverter}, ConverterParameter={x:Static app:GalleryCardType.Converter}}\\\" />\";\n\n    [ObservableProperty]\n    string xamlConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:EnumToBoolConverter x:Key=\\\"EnumToBoolConverter\\\" />\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpxamlConverterTestingViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"GalleryCardType selectedItem;\";\n    #endregion\n\n    #region[ Relay Command ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n        LoadDataAsync().FireAndForget();\n    }\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n        GalleryCardTypes = new ObservableCollection<GalleryCardType>(Enum.GetValues<GalleryCardType>());\n    }\n    #endregion\n\n    #region [ Method ]\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/EnumToIntConverter/EnumToIntConverterControlInfo.cs",
    "content": "﻿using CommunityToolkit.Maui.Converters;\n\nnamespace MAUIsland.Core;\n\nclass EnumToIntConverterControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(EnumToIntConverter);\n\n    public string ControlRoute => \"MAUIsland.EnumToIntConverterPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"The EnumToIntConverter is a converter that allows you to convert a standard Enum (extending int) to its underlying primitive int type. It is useful when binding a collection of values representing an enumeration type with default numbering to a control such as a Picker.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/enum-to-int-converter\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Converter;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/EnumToIntConverter/EnumToIntConverterPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class EnumToIntConverterPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n    public EnumToIntConverterPageViewModel(IAppNavigator appNavigator,\n                                           IGitHubService gitHubService,\n                                           IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                            : base(appNavigator,\n                                                    gitHubService,\n                                                    gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    ObservableCollection<GalleryCardType> galleryCardTypes = default!;\n\n    [ObservableProperty]\n    GalleryCardType selectedItem;\n\n    [ObservableProperty]\n    string setupDescription =\n    \"In order to use the toolkit in XAML the following xmlns needs to be added into your page or view:\";\n\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleBefore =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleAfter =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlConverterTesting =\n        \"<Picker ItemsSource=\\\"{x:Binding GalleryCardTypes}\\\" \\r\\n\" +\n        \"        SelectedIndex=\\\"{Binding SelectedItem, Converter={StaticResource EnumToIntConverter}, ConverterParameter={x:Type app:GalleryCardType}}\\\"\\r\\n\" +\n        \"        BackgroundColor=\\\"LightGray\\\" />\\r\\n\" +\n        \"<Label>\\r\\n\" +\n        \"   <Label.FormattedText>\\r\\n\" +\n        \"       <FormattedString>\\r\\n\" +\n        \"           <Span Text=\\\"This is the index of the item that you have chosen:  \\\"/>\\r\\n\" +\n        \"           <Span Text=\\\"{x:Binding SelectedItem, Converter={StaticResource EnumToIntConverter}}\\\"/>\\r\\n\" +\n        \"       </FormattedString>\\r\\n\" +\n        \"   </Label.FormattedText>\\r\\n\" +\n        \"</Label>\";\n\n    [ObservableProperty]\n    string xamlConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:EnumToIntConverter x:Key=\\\"EnumToIntConverter\\\" />\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpxamlConverterTestingViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"ObservableCollection<GalleryCardType> galleryCardTypes;\\r\\n\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"GalleryCardType selectedItem;\";\n    #endregion\n\n    #region[ Relay Command ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n        LoadDataAsync().FireAndForget();\n    }\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n        GalleryCardTypes = new ObservableCollection<GalleryCardType>(Enum.GetValues<GalleryCardType>());\n    }\n    #endregion\n\n    #region [ Method ]\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/ImageResourceConverter/ImageResourceConverterControlInfo.cs",
    "content": "﻿using CommunityToolkit.Maui.Converters;\n\nnamespace MAUIsland.Core;\n\nclass ImageResourceConverterControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(ImageResourceConverter);\n\n    public string ControlRoute => \"MAUIsland.ImageResourceConverterPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"The ImageResourceConverter is a converter that converts embedded image resource ID to its ImageSource. An embedded image resource is when an image has been added to a project with the Build Action set to Embedded Resource.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/converters/image-resource-converter\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Converter;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Converters/ImageResourceConverter/ImageResourceConverterPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class ImageResourceConverterPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n    public ImageResourceConverterPageViewModel(IAppNavigator appNavigator,\n                                               IGitHubService gitHubService,\n                                               IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                                : base(appNavigator,\n                                                        gitHubService,\n                                                        gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string imageResource = string.Empty;\n\n    [ObservableProperty]\n    string setupDescription =\n    \"In order to use the toolkit in XAML the following xmlns needs to be added into your page or view:\";\n\n    [ObservableProperty]\n    string xamlNamespace =\n        \"xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleBefore =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string fullNamepaceExampleAfter =\n        \"<ContentPage\\r\\n\" +\n        \"    x:Class=\\\"MAUIsland.MediaElementPage\\\"\\r\\n\" +\n        \"    xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n        \"    xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n        \"    xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\">\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string xamlConverterTesting =\n        \"<Image Source=\\\"{x:Binding ImageResource, Converter={StaticResource ImageResourceConverter}}\\\" />\";\n\n    [ObservableProperty]\n    string xamlConverterSetup =\n        \"<ContentPage>\\r\\n\" +\n        \"   <ContentPage.Resources>\\r\\n\" +\n        \"        <toolkit:ImageResourceConverter x:Key=\\\"ImageResourceConverter\\\" />\\r\\n\" +\n        \"   </ContentPage.Resources>\\r\\n\" +\n        \"</ContentPage>\";\n\n    [ObservableProperty]\n    string cSharpxamlConverterTestingViewModel =\n        \"[ObservableProperty]\\r\\n\" +\n        \"string imageResource = $\\\"{System.Reflection.Assembly.GetExecutingAssembly().GetName().Name}.Resources.Embedded.mauibeach.jpeg\\\";\";\n    #endregion\n\n    #region[ Relay Command ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n        LoadDataAsync().FireAndForget();\n    }\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n        ImageResource = BuildImageResource(\"mauibeach.jpeg\");\n    }\n    #endregion\n\n    #region [ Method ]\n    private string BuildImageResource(in string resourceName)\n        => $\"{System.Reflection.Assembly.GetExecutingAssembly().GetName().Name}.Resources.Embedded.{resourceName}\";\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Helpers/ObservableProperty/ObservablePropertyControlInfo.cs",
    "content": "namespace MAUIsland.Core;\n\npublic class ObservablePropertyControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => \"Observable Property\";\n    public string ControlRoute => \"MAUIsland.ObservablePropertyPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"The ObservableProperty type is an attribute that allows generating observable properties from annotated fields. Its purpose is to greatly reduce the amount of boilerplate that is needed to define observable properties.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Helpers/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/mvvm/generators/observableproperty\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Helper;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n\n    public List<string> DontList => throw new NotImplementedException();\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Helpers/ObservableProperty/ObservablePropertyPageViewModel.cs",
    "content": "using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\npublic partial class ObservablePropertyPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ Fields ]\n\n    private readonly IControlsService controlsService;\n    #endregion\n\n    #region [ CTor ]\n    public ObservablePropertyPageViewModel(IAppNavigator appNavigator,\n                                           IGitHubService gitHubService,\n                                           IControlsService controlsService,\n                                           IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                            : base(appNavigator,\n                                                    gitHubService,\n                                                    gitHubIssueLocalDbService)\n    {\n        this.controlsService = controlsService;\n    }\n    #endregion\n\n    #region [ Build-in Property Setup ]\n    public string buildinCode;\n    public string BuildinCode\n    {\n        get => buildinCode;\n        set\n        {\n            if (!EqualityComparer<string>.Default.Equals(buildinCode, value))\n            {\n                string oldValue = buildinCode;\n                OnBuildinCodeChanging(value);\n                OnBuildinCodeChanging(oldValue, value);\n                OnPropertyChanging();\n                buildinCode = value;\n                OnBuildinCodeChanged(value);\n                OnBuildinCodeChanged(oldValue, value);\n                OnPropertyChanged();\n            }\n        }\n    }\n\n    partial void OnBuildinCodeChanging(string value);\n    partial void OnBuildinCodeChanged(string value);\n\n    partial void OnBuildinCodeChanging(string oldValue, string newValue);\n    partial void OnBuildinCodeChanged(string oldValue, string newValue);\n    #endregion\n\n    #region [ Community Toolkit Setup ]\n    [ObservableProperty]\n    string fullName = \"FullName\";\n\n    [ObservableProperty]\n    string toolkitCode;\n\n    [ObservableProperty]\n    [NotifyPropertyChangedFor(nameof(FullName))]\n    private string toolkitNotifyPropertyChanged;\n\n    [ObservableProperty]\n    [NotifyCanExecuteChangedFor(nameof(NotifyCanExecuteChangedCommand))]\n    private string toolkitNotifyCanExecuteChanged;\n\n    // To use this one you have to inherit ObservableValidator\n    //[ObservableProperty]\n    //[NotifyDataErrorInfo]\n    //[Required]\n    //[MinLength(2)]\n    //[MaxLength(4)]\n    //private string toolkitNotifyDataErrorInfo;\n\n    [ObservableProperty]\n    [NotifyPropertyChangedRecipients]\n    private string toolkitNotifyPropertyChangedRecipients;\n\n    #region [ Generated Code ]\n    private string generatedCode;\n    public string GeneratedCode\n    {\n        get => generatedCode;\n        set => SetProperty(ref generatedCode, value);\n    }\n    private string generatedNotifyPropertyChanged;\n    public string GeneratedNotifyPropertyChanged\n    {\n        get => generatedNotifyPropertyChanged;\n        set\n        {\n            if (SetProperty(ref generatedNotifyPropertyChanged, value))\n            {\n                OnPropertyChanged(\"FullName\");\n            }\n        }\n    }\n    private string generatedNotifyCanExecuteChanged;\n    public string GeneratedNotifyCanExecuteChanged\n    {\n        get => generatedNotifyCanExecuteChanged;\n        set\n        {\n            if (SetProperty(ref generatedNotifyCanExecuteChanged, value))\n            {\n                NotifyCanExecuteChangedCommand.NotifyCanExecuteChanged();\n            }\n        }\n    }\n    //private string generatedNotifyDataErrorInfo;\n    //public string GeneratedNotifyDataErrorInfo\n    //{\n    //    get => generatedNotifyDataErrorInfo;\n    //    set\n    //    {\n    //        if (SetProperty(ref generatedNotifyDataErrorInfo, value))\n    //        {\n    //            ValidateProperty(value, \"Value2\");\n    //        }\n    //    }\n    //}\n    private string generatedNotifyPropertyChangedRecipients;\n    public string GeneratedNotifyPropertyChangedRecipients\n    {\n        get => generatedNotifyPropertyChangedRecipients;\n        set => SetProperty(ref generatedNotifyPropertyChangedRecipients, value, broadcast: true);\n    }\n    #endregion\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    bool isExpanding;\n\n    [ObservableProperty]\n    string searchText = string.Empty;\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> controlGroupList;\n\n    [ObservableProperty]\n    string toolkitObservableProperty =\n        \"[ObservableProperty]\\r\\n\" +\n        \"string toolkitCode;\";\n\n    [ObservableProperty]\n    string toolkitNotifyingDependentProperties =\n        \"[ObservableProperty]\\r\\n\" +\n        \"[NotifyPropertyChangedFor(nameof(FullName))]\\r\\n\" +\n        \"private string toolkitNotifyPropertyChanged;\";\n\n    [ObservableProperty]\n    string toolkitNotifyingDependentCommands =\n        \"[ObservableProperty]\\r\\n\" +\n        \"[NotifyCanExecuteChangedFor(nameof(NotifyCanExecuteChangedCommand))]\\r\\n\" +\n        \"private string toolkitNotifyCanExecuteChanged;\\r\\n\\r\\n\" +\n        \"[RelayCommand]\\r\\n\" +\n        \"Task<string> NotifyCanExecuteChanged() => Task.FromResult(\\\"null\\\");\";\n\n    [ObservableProperty]\n    string toolkitRequestingPropertyValidation =\n        \"// To use this one you have to inherit ObservableValidator\\r\\n\" +\n        \"[ObservableProperty]\\r\\n\" +\n        \"[NotifyDataErrorInfo]\\r\\n\" +\n        \"[Required]\\r\\n\" +\n        \"[MinLength(2)]\\r\\n\" +\n        \"[MaxLength(4)]\\r\\n\" +\n        \"private string toolkitNotifyDataErrorInfo;\";\n\n    [ObservableProperty]\n    string toolkitSendingNotificationMessages =\n        \"[ObservableProperty]\\r\\n\" +\n        \"[NotifyPropertyChangedRecipients]\\r\\n\" +\n        \"private string toolkitNotifyPropertyChangedRecipients;\";\n\n    [ObservableProperty]\n    string buildinGenerateObservableProperty =\n        \"private string generatedCode;\\r\\n\" +\n        \"public string GeneratedCode\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     get => generatedCode;\\r\\n\" +\n        \"     set => SetProperty(ref generatedCode, value);\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string buildinGenerateNotifyingDependentProperties =\n        \"private string generatedNotifyPropertyChanged;\\r\\n\" +\n        \"public string GeneratedNotifyPropertyChanged\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     get => generatedNotifyPropertyChanged;\\r\\n\" +\n        \"     set\\r\\n\" +\n        \"     {\\r\\n\" +\n        \"           if (SetProperty(ref generatedNotifyPropertyChanged, value))\\r\\n\" +\n        \"           {\\r\\n\" +\n        \"                OnPropertyChanged(\\\"FullName\\\");\\r\\n\" +\n        \"           }\\r\\n\" +\n        \"     }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string buildinGenerateNotifyingDependentCommands =\n        \"private string generatedNotifyCanExecuteChanged;\\r\\n\" +\n        \"public string GeneratedNotifyCanExecuteChanged\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     get => generatedNotifyCanExecuteChanged;\\r\\n\" +\n        \"     set\\r\\n\" +\n        \"     {\\r\\n\" +\n        \"          if (SetProperty(ref generatedNotifyCanExecuteChanged, value))\\r\\n\" +\n        \"          {\\r\\n\" +\n        \"               NotifyCanExecuteChangedCommand.NotifyCanExecuteChanged();\\r\\n\" +\n        \"          }\\r\\n\" +\n        \"     }\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"[RelayCommand]\\r\\n\" +\n        \"Task<string> NotifyCanExecuteChanged() => Task.FromResult(\\\"null\\\");\";\n\n    [ObservableProperty]\n    string buildinGenerateRequestingPropertyValidation =\n        \"private string generatedNotifyDataErrorInfo;\\r\\n\" +\n        \"public string? GeneratedNotifyDataErrorInfo\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     get => generatedNotifyDataErrorInfo;\\r\\n\" +\n        \"     set\\r\\n\" +\n        \"     {\\r\\n\" +\n        \"          if (SetProperty(ref generatedNotifyDataErrorInfo, value))\\r\\n\" +\n        \"          {\\r\\n\" +\n        \"               ValidateProperty(value, \\\"Value2\\\");\\r\\n\" +\n        \"          }\\r\\n\" +\n        \"     }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string buildinGenerateSendingNotificationMessages =\n        \"private string generatedNotifyPropertyChangedRecipients;\\r\\n\" +\n        \"public string GeneratedNotifyPropertyChangedRecipients\\r\\n\" +\n        \"{\\r\\n \" +\n        \"     get => generatedNotifyPropertyChangedRecipients;\\r\\n\" +\n        \"     set => SetProperty(ref generatedNotifyPropertyChangedRecipients, value, broadcast: true);\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string buildinCodeSetup =\n         \"public string buildinCode;\\r\\n\" +\n         \"public string BuildinCode\\r\\n\" +\n         \"{\\r\\n\" +\n         \"      get => buildinCode;\\r\\n\" +\n         \"      set\\r\\n\" +\n         \"      {\\r\\n\" +\n         \"            if (!EqualityComparer<string>.Default.Equals(buildinCode, value))\\r\\n\" +\n         \"            {\\r\\n\" +\n         \"                  string oldValue = buildinCode;\\r\\n\" +\n         \"                  OnBuildinCodeChanging(value);\\r\\n\" +\n         \"                  OnBuildinCodeChanging(oldValue, value);\\r\\n\" +\n         \"                  OnPropertyChanging();\\r\\n\" +\n         \"                  buildinCode = value;\\r\\n\" +\n         \"                  OnBuildinCodeChanged(value);\\r\\n\" +\n         \"                  OnBuildinCodeChanged(oldValue, value);\\r\\n\" +\n         \"                  OnPropertyChanged();\\r\\n\" +\n         \"            }\\r\\n\" +\n         \"      }\\r\\n\" +\n         \"}\\r\\n\\r\\n\" +\n         \"partial void OnBuildinCodeChanging(string value);\\r\\n\" +\n         \"partial void OnBuildinCodeChanged(string value);\\r\\n\\r\\n\" +\n         \"partial void OnBuildinCodeChanging(string oldValue, string newValue);\\r\\n\" +\n         \"partial void OnBuildinCodeChanged(string oldValue, string newValue);\";\n\n    [ObservableProperty]\n    string toolkitCodeSetup =\n        \"[ObservableProperty]\\r\\n\" +\n        \"string toolkitCode;\";\n\n    [ObservableProperty]\n    string buildinCodeUsage =\n        \"partial void OnBuildinCodeChanged(string oldValue, string newValue)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     //Implement your code here\\r\\n\" +\n        \"}\\r\\n\" +\n        \"partial void OnBuildinCodeChanging(string oldValue, string newValue)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     //Implement your code here\\r\\n\" +\n        \"}\\r\\n\" +\n        \"partial void OnBuildinCodeChanged(string value)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     //Implement your code here\\r\\n\" +\n        \"}\\r\\n\" +\n        \"partial void OnBuildinCodeChanging(string value)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     //Implement your code here\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string toolkitCodeUsage =\n        \"partial void OnToolkitCodeChanged(string oldValue, string newValue)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     //Implement your code here\\r\\n\" +\n        \"}\\r\\n\" +\n        \"partial void OnToolkitCodeChanging(string oldValue, string newValue)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     //Implement your code here\\r\\n\" +\n        \"}\\r\\n\" +\n        \"partial void OnToolkitCodeChanged(string value)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     //Implement your code here\\r\\n\" +\n        \"}\\r\\n\" +\n        \"partial void OnToolkitCodeChanging(string value)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     //Implement your code here\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string searchingXamlCode =\n        \"<SearchBar Placeholder=\\\"Search items...\\\"\\r\\n\" +\n        \"           x:Name=\\\"SearchBar\\\"\\r\\n\" +\n        \"           Text=\\\"{x:Binding SearchText}\\\"/>\";\n\n    [ObservableProperty]\n    string searchingCSharpCode =\n        \"[ObservableProperty]\\r\\n\" +\n        \"string searchText = string.Empty;\\r\\n\\r\\n\" +\n        \"partial void OnSearchTextChanged(string value)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     SearchCommand.ExecuteAsync(null);\\r\\n\" +\n        \"}\\r\\n\\r\\n\" +\n        \"[RelayCommand]\\r\\n\" +\n        \"private async Task SearchAsync()\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     ControlGroupList.Clear();\\r\\n\\r\\n\" +\n        \"     var items = await MauiControlsService.GetControlsAsync(ControlInformation.GroupName);\\r\\n\\r\\n\" +\n        \"     foreach (var item in items.Where(x => x.ControlName.ToLower().Contains(SearchText.ToLower())))\\r\\n\" +\n        \"     {\\r\\n\" +\n        \"          ControlGroupList.Add(item);\\r\\n\" +\n        \"     }\\r\\n\" +\n        \"}\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlGroupList = new ObservableCollection<IGalleryCardInfo>();\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n\n        LoadDataAsync().FireAndForget();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n\n    [RelayCommand]\n    Task<string> NotifyCanExecuteChanged() => Task.FromResult(\"null\");\n\n    [RelayCommand]\n    private async Task SearchAsync()\n    {\n        ControlGroupList.Clear();\n\n        var items = await this.controlsService.GetControlsAsync(ControlInformation.GroupName);\n\n        foreach (var item in items.Where(x => x.ControlName.ToLower().Contains(SearchText.ToLower())))\n        {\n            ControlGroupList.Add(item);\n        }\n    }\n    #endregion\n\n    #region [ Methods ]\n\n    partial void OnSearchTextChanged(string value)\n    {\n        SearchCommand.ExecuteAsync(null);\n    }\n\n    #region [ Build-in Testing Methods ]\n    partial void OnBuildinCodeChanged(string oldValue, string newValue)\n    {\n        throw new NotImplementedException();\n    }\n    partial void OnBuildinCodeChanging(string oldValue, string newValue)\n    {\n        if (oldValue is not null)\n        {\n            oldValue = \"new\";\n        }\n\n        if (newValue is not null)\n        {\n            newValue = \"new\";\n        }\n    }\n    partial void OnBuildinCodeChanged(string value)\n    {\n        throw new NotImplementedException();\n    }\n    partial void OnBuildinCodeChanging(string value)\n    {\n        throw new NotImplementedException();\n    }\n    #endregion\n\n    #region [ Toolkit Testing Method ]\n    partial void OnToolkitCodeChanged(string oldValue, string newValue)\n    {\n        throw new NotImplementedException();\n    }\n    partial void OnToolkitCodeChanging(string oldValue, string newValue)\n    {\n        if (oldValue is not null)\n        {\n            oldValue = \"new\";\n        }\n\n        if (newValue is not null)\n        {\n            newValue = \"new\";\n        }\n    }\n    partial void OnToolkitCodeChanged(string value)\n    {\n        throw new NotImplementedException();\n    }\n    partial void OnToolkitCodeChanging(string value)\n    {\n        throw new NotImplementedException();\n    }\n    #endregion\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync()\n    {\n        ControlGroupList.Clear();\n\n        if (ControlInformation is null || ControlInformation.GroupName is null)\n            return;\n\n        var items = await this.controlsService.GetControlsAsync(ControlInformation.GroupName);\n\n        foreach (var item in items)\n        {\n            ControlGroupList.Add(item);\n        }\n        return;\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Helpers/RelayCommand/RelayCommandControlInfo.cs",
    "content": "﻿namespace MAUIsland.Core;\n\nclass RelayCommandControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => \"Relay Command\";\n    public string ControlRoute => \"MAUIsland.RelayCommandPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_approvals_app_20_regular\n    };\n    public string ControlDetail => \"The RelayCommand type is an attribute that allows generating relay command properties for annotated methods. Its purpose is to completely eliminate the boilerplate that is needed to define commands wrapping private methods in a viewmodel.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Helpers/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/mvvm/generators/relaycommand\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Helper;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Helpers/RelayCommand/RelayCommandPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class RelayCommandPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ Fields ]\n\n    private readonly IControlsService controlsService;\n    #endregion\n\n    #region [ CTor ]\n\n    public RelayCommandPageViewModel(IAppNavigator appNavigator,\n                                     IGitHubService gitHubService,\n                                     IControlsService controlsService,\n                                     IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                        : base(appNavigator,\n                                                gitHubService,\n                                                gitHubIssueLocalDbService)\n    {\n        this.controlsService = controlsService;\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> controlGroupList = default!;\n\n    [ObservableProperty]\n    string toolkitRelayCommand =\n        \"[RelayCommand]\\r\\n\" +\n        \"private void ToolKit()\\r\\n\" +\n        \"   => RelayCommand();\\r\\n\\r\\n\" +\n        \"private void RelayCommand()\\r\\n\" +\n        \"   => Console.WriteLine(\\\"RelayCommand!\\\");\";\n\n    [ObservableProperty]\n    string toolkitRelayCommandWithParameter =\n        \"[RelayCommand]\\r\\n\" +\n        \"private void ToolKitWithParameter(string value)\\r\\n\" +\n        \"   => RelayCommandWithParameter(value);\\r\\n\\r\\n\" +\n        \"private void RelayCommandWithParameter(string value) \\r\\n\" +\n        \"   => Console.WriteLine($\\\"RelayCommand {value}!\\\");\";\n\n    [ObservableProperty]\n    string toolkitRelayCommandWithAsynchronous =\n        \"[RelayCommand]\\r\\n\" +\n        \"private async Task ToolKitWithAsynchronous(string value)\\r\\n\" +\n        \"   => await RelayCommandithAsynchronous();\\r\\n\\r\\n\" +\n        \"private async Task RelayCommandithAsynchronous() \\r\\n\" +\n        \"   => await LoadDataAsync();\";\n\n    [ObservableProperty]\n    string toolkitControlPropertyState1 =\n        \"[ObservableProperty]\\r\\n\" +\n        \"[NotifyCanExecuteChangedFor(nameof(ToolKitWithEnablingDisablingCommand))]\\r\\n\" +\n        \"private string exampleForControlPropertyState1 = \\\"Hello\\\";\";\n\n    [ObservableProperty]\n    string toolkitControlPropertyState2 =\n        \"[ObservableProperty]\\r\\n\" +\n        \"[NotifyCanExecuteChangedFor(nameof(ToolKitWithEnablingDisablingCommand))]\\r\\n\" +\n        \"private string exampleForControlPropertyStateCommand;\";\n\n    [ObservableProperty]\n    string example1BoundPropertyToControlXaml =\n    \"<Button Text=\\\"Example Property For Control Property State Command\\\"\\r\\n\" +\n    \"        Command=\\\"{Binding ToolKitWithEnablingDisablingCommand}\\\"\\r\\n\" +\n    \"        CommandParameter=\\\"{Binding ExampleForControlPropertyState1}\\\"/>\";\n\n    [ObservableProperty]\n    string example2BoundPropertyToControlXaml =\n    \"<Button Text=\\\"Example Property For Control Property State Command\\\"\\r\\n\" +\n    \"        Command=\\\"{Binding ToolKitWithEnablingDisablingCommand}\\\"\\r\\n\" +\n    \"        CommandParameter=\\\"{Binding ExampleForControlPropertyState2}\\\"/>\";\n\n    [ObservableProperty]\n    string toolkitRelayCommandWithEnablingDisabling =\n        \"[RelayCommand(CanExecute = nameof(CanExecuteMethod))]\\r\\n\" +\n        \"private void ToolKitWithEnablingDisabling(string value)\\r\\n\" +\n        \"   => RelayCommandWithEnablingDisabling(value);\\r\\n\\r\\n\" +\n        \"private void RelayCommandWithEnablingDisabling(string value) \\r\\n\" +\n        \"   => Console.WriteLine($\\\"RelayCommand {value}!\\\");\\r\\n\\r\\n\" +\n        \"private bool CanExecuteMethod(string value) \\r\\n\" +\n        \"   => value is not null;\";\n\n    [ObservableProperty]\n    string toolkitRelayCommandWithAllowConcurrentExecution =\n        \"[RelayCommand(AllowConcurrentExecutions = true)]\\r\\n\" +\n        \"private async Task ToolKitWithAllowConcurrentExecution()\\r\\n\" +\n        \"   => await RelayCommandithAsynchronous();\";\n\n    [ObservableProperty]\n    string toolkitRelayCommandWithExceptionDefault =\n        \"[RelayCommand]\\r\\n\" +\n        \"private async Task ToolKitWithHandlingAsyncExceptionDefault(CancellationToken token)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     try { await RelayCommandithAsynchronous(); }\\r\\n\" +\n        \"     catch (Exception ex) { Console.WriteLine($\\\"An error occurred: {ex.Message}\\\"); }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string toolkitRelayCommandWithExceptionScheduler =\n        \"[RelayCommand(FlowExceptionsToTaskScheduler = true)]\\r\\n\" +\n        \"private async Task ToolKitWithHandlingAsyncExceptionScheduler(CancellationToken token)\\r\\n\" +\n        \"{\\r\\n\" +\n        \"     try { await RelayCommandithAsynchronous(); }\\r\\n\" +\n        \"     catch (Exception ex) { Console.WriteLine($\\\"An error occurred: {ex.Message}\\\"); }\\r\\n\" +\n        \"}\";\n\n    [ObservableProperty]\n    string toolkitRelayCommandWithCancel =\n        \"[RelayCommand(IncludeCancelCommand = true)]\\r\\n\" +\n        \"private async Task ToolKitAsyncWithCancel(CancellationToken token)\\r\\n\" +\n        \"   => await RelayCommandAsyncWithCancel(token);\";\n\n    [ObservableProperty]\n    string buildinGenerate =\n        \"private RelayCommand? buildinGenerateCommand;\\r\\n\" +\n        \"public IRelayCommand BuildinGenerateCommand\\r\\n\" +\n        \"   => buildinGenerateCommand ??= new RelayCommand(RelayCommand);\" +\n        \"private void RelayCommand()\\r\\n\" +\n        \"   => Console.WriteLine(\\\"RelayCommand!\\\");\";\n\n    [ObservableProperty]\n    string buildinGenerateCommandWithParameter =\n        \"private RelayCommand<string>? buildinGenerateWithParameter;\\r\\n\" +\n        \"public IRelayCommand<string> BuildinGenerateCommandWithParameter \\r\\n\" +\n        \"   => buildinGenerateWithParameter ??= new RelayCommand<string>(RelayCommandWithParameter);\\r\\n\\r\\n\" +\n        \"private void RelayCommandWithParameter(string value) \\r\\n\" +\n        \"   => Console.WriteLine($\\\"RelayCommand {value}!\\\");\";\n\n    [ObservableProperty]\n    string buildinGenerateCommandWithAsynchronous =\n        \"private AsyncRelayCommand? buildinGenerateWithAsynchronous;\\r\\n\" +\n        \"public IAsyncRelayCommand BuildinGenerateWithAsynchronous \\r\\n\" +\n        \"   => buildinGenerateWithAsynchronous ??= new AsyncRelayCommand(RelayCommandithAsynchronous);\\r\\n\\r\\n\" +\n        \"private async Task RelayCommandithAsynchronous() \\r\\n\" +\n        \"   => await LoadDataAsync();\";\n\n    [ObservableProperty]\n    string buildinGenerateCommandWithEnablingDisabling =\n        \"private RelayCommand<string>? buildinGenerateWithEnablingDisabling;\\r\\n\" +\n        \"public ICommand BuildinGenerateWithEnablingDisabling\\r\\n\" +\n        \"   => buildinGenerateWithEnablingDisabling ??= new RelayCommand<string>(RelayCommandWithEnablingDisabling, CanExecuteMethod);\\r\\n\\r\\n\" +\n        \"private void RelayCommandWithEnablingDisabling(string value) \\r\\n\" +\n        \"   => Console.WriteLine($\\\"RelayCommand {value}!\\\");\\r\\n\\r\\n\" +\n        \"private bool CanExecuteMethod(string value) \\r\\n\" +\n        \"   => value is not null;\";\n\n    [ObservableProperty]\n    string buildinEquivalentCommandWithCancel =\n        \"private AsyncRelayCommand<CancellationToken>? buildinCancel;\\r\\n\" +\n        \"public IAsyncRelayCommand BuildinCancel\\r\\n\" +\n        \"   => buildinCancel ??= new AsyncRelayCommand<CancellationToken>(RelayCommandAsyncWithCancel);\\r\\n\" +\n        \"private RelayCommand buildinAsyncWithCancelCommand;\\r\\n\" +\n        \"public ICommand BuildinAsyncWithCancelCommand\\r\\n\" +\n        \"   => buildinAsyncWithCancelCommand ??= new RelayCommand(() => buildinCancel?.Cancel());\";\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlGroupList = new ObservableCollection<IGalleryCardInfo>();\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n    }\n    #endregion\n\n    #region [ Example Properties ]\n    [ObservableProperty]\n    [NotifyCanExecuteChangedFor(nameof(ToolKitWithEnablingDisablingCommand))]\n    private string exampleForControlPropertyState1 = \"Hello\";\n\n    [ObservableProperty]\n    [NotifyCanExecuteChangedFor(nameof(ToolKitWithEnablingDisablingCommand))]\n    private string exampleForControlPropertyState2;\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n\n    #region [ Build-in Relay Commands ]\n    private RelayCommand? buildinGenerateCommand;\n    public IRelayCommand BuildinGenerateCommand\n        => buildinGenerateCommand ??= new RelayCommand(RelayCommand);\n\n    private RelayCommand<string>? buildinGenerateWithParameter;\n    public IRelayCommand<string> BuildinGenerateWithParameter\n        => buildinGenerateWithParameter ??= new RelayCommand<string>(RelayCommandWithParameter);\n\n    private AsyncRelayCommand? buildinGenerateWithAsynchronous;\n    public IAsyncRelayCommand BuildinGenerateWithAsynchronous\n        => buildinGenerateWithAsynchronous ??= new AsyncRelayCommand(RelayCommandithAsynchronous);\n\n    private RelayCommand<string>? buildinGenerateWithEnablingDisabling;\n    public ICommand BuildinGenerateWithEnablingDisabling\n        => buildinGenerateWithEnablingDisabling ??= new RelayCommand<string>(RelayCommandWithEnablingDisabling, CanExecuteMethod);\n\n    private AsyncRelayCommand<CancellationToken>? buildinCancel;\n    public IAsyncRelayCommand BuildinCancel\n        => buildinCancel ??= new AsyncRelayCommand<CancellationToken>(RelayCommandAsyncWithCancel);\n    private RelayCommand buildinAsyncWithCancelCommand;\n    public ICommand BuildinAsyncWithCancelCommand\n        => buildinAsyncWithCancelCommand ??= new RelayCommand(() => buildinCancel?.Cancel());\n    #endregion\n\n    #region [ ToolKit Relay Commands ]\n    [RelayCommand]\n    private void ToolKit() => RelayCommand();\n\n    [RelayCommand]\n    private void ToolKitWithParameter(string value)\n        => RelayCommandWithParameter(value);\n\n    [RelayCommand]\n    private async Task ToolKitWithAsynchronous(string value)\n        => await RelayCommandithAsynchronous();\n\n    [RelayCommand(CanExecute = nameof(CanExecuteMethod))]\n    private void ToolKitWithEnablingDisabling(string value)\n        => RelayCommandWithEnablingDisabling(value);\n\n    [RelayCommand(AllowConcurrentExecutions = true)]\n    private async Task ToolKitWithAllowConcurrentExecution()\n        => await RelayCommandithAsynchronous();\n\n    [RelayCommand]\n    private async Task ToolKitWithHandlingAsyncExceptionDefault(CancellationToken token)\n    {\n        try { await RelayCommandithAsynchronous(); }\n        catch (Exception ex) { Console.WriteLine($\"An error occurred: {ex.Message}\"); }\n    }\n\n    [RelayCommand(FlowExceptionsToTaskScheduler = true)]\n    private async Task ToolKitWithHandlingAsyncExceptionScheduler(CancellationToken token)\n    {\n        try { await RelayCommandithAsynchronous(); }\n        catch (Exception ex) { Console.WriteLine($\"An error occurred: {ex.Message}\"); }\n    }\n\n    [RelayCommand(IncludeCancelCommand = true)]\n    private async Task ToolKitAsyncWithCancel(CancellationToken token)\n        => await RelayCommandAsyncWithCancel(token);\n    #endregion\n\n    #region [ Methods ]\n    private void RelayCommand()\n        => Console.WriteLine(\"RelayCommand!\");\n\n    private void RelayCommandWithParameter(string value)\n        => Console.WriteLine($\"RelayCommand {value}!\");\n\n    private async Task RelayCommandithAsynchronous()\n        => await LoadDataAsync();\n\n    private bool CanExecuteMethod(string value)\n        => value is not null;\n\n    private void RelayCommandWithEnablingDisabling(string value)\n        => Console.WriteLine($\"RelayCommand {value}!\");\n\n    private async Task RelayCommandAsyncWithCancel(CancellationToken token)\n    {\n        try\n        {\n            await LoadDataAsync();\n        }\n        catch (OperationCanceledException) { }\n    }\n    #endregion\n\n    #region [Data]\n    private async Task LoadDataAsync()\n    {\n        try\n        {\n            ControlGroupList.Clear();\n\n            var items = await controlsService.GetControlsAsync(ControlInformation.GroupName);\n\n            items.ToList().ForEach(item =>\n            {\n                ControlGroupList.Add(item);\n            });\n            return;\n        }\n        catch (OperationCanceledException) { }\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Layouts/DockLayout/DockLayoutControlInfo.cs",
    "content": "﻿using CommunityToolkit.Maui.Layouts;\n\nnamespace MAUIsland.Core;\n\nclass DockLayoutControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(DockLayout);\n    public string ControlRoute => \"MAUIsland.DockLayoutPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_table_16_regular,\n    };\n    public string ControlDetail => \"DockLayout is a layout where views can be docked to the sides of the layout container.\\r\\nThe image below shows how a DockLayout is conceptually structured. Child views are docked at one of 4 possible docking positions: Top, Bottom, Left or Right (equivalent to DockPosition.Top, DockPosition.Bottom, DockPosition.Left, and DockPosition.Right). Views that are not explicitly docked (or with DockPosition.None) are displayed at the center (or between Top / Bottom and Left / Right positions).\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Layouts/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/layouts/docklayout\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Layout;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Layouts/DockLayout/DockLayoutPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class DockLayoutPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n    public DockLayoutPageViewModel(IAppNavigator appNavigator,\n                                   IGitHubService gitHubService,\n                                   IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                    : base(appNavigator,\n                                           gitHubService,\n                                           gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string xamlDockLayout =\n        \"<toolkit:DockLayout>\\r\\n\" +\n        \"    <Button toolkit:DockLayout.DockPosition=\\\"Top\\\" Text=\\\"Top\\\" HeightRequest=\\\"50\\\" />\\r\\n\" +\n        \"    <Button toolkit:DockLayout.DockPosition=\\\"Bottom\\\" Text=\\\"Bottom\\\" HeightRequest=\\\"70\\\" />\\r\\n\" +\n        \"    <Button toolkit:DockLayout.DockPosition=\\\"Left\\\" Text=\\\"Left\\\" WidthRequest=\\\"80\\\" />\\r\\n\" +\n        \"    <Button toolkit:DockLayout.DockPosition=\\\"Right\\\" Text=\\\"Right\\\" WidthRequest=\\\"90\\\" />\\r\\n\" +\n        \"    <Button Text=\\\"Center\\\" />\\r\\n\" +\n        \"</toolkit:DockLayout>\";\n\n    [ObservableProperty]\n    string csharpDockLayout =\n    \"using CommunityToolkit.Maui.Layouts;\\r\\n\" +\n    \"\\r\\n\" +\n    \"var page = new ContentPage\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    Content = new DockLayout\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        { new Button { Text = \\\"Top\\\", HeightRequest = 50 }, DockPosition.Top },\\r\\n\" +\n    \"        { new Button { Text = \\\"Bottom\\\", HeightRequest = 70 }, DockPosition.Bottom },\\r\\n\" +\n    \"        { new Button { Text = \\\"Left\\\", WidthRequest = 80 }, DockPosition.Left },\\r\\n\" +\n    \"        { new Button { Text = \\\"Right\\\", WidthRequest = 90 }, DockPosition.Right },\\r\\n\" +\n    \"        { new Button { Text = \\\"Center\\\" } },\\r\\n\" +\n    \"    }\\r\\n\" +\n    \"};\";\n\n    [ObservableProperty]\n    string settingDockLayoutPosition =\n    \"var button = new Button { Text = \\\"Top\\\", HeightRequest = 50 };\\r\\n\" +\n    \"DockLayout.SetDockPosition(button, DockPosition.Top);\";\n\n    [ObservableProperty]\n    string xamlCustomizeDockLayout =\n    \"<ContentPage xmlns=\\\"http://schemas.microsoft.com/dotnet/2021/maui\\\"\\r\\n\" +\n    \"             xmlns:x=\\\"http://schemas.microsoft.com/winfx/2009/xaml\\\"\\r\\n\" +\n    \"             xmlns:toolkit=\\\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\\\"\\r\\n\" +\n    \"             x:Class=\\\"MyProject.MyContentPage\\\">\\r\\n\" +\n    \"\\r\\n\" +\n    \"    <toolkit:DockLayout HeightRequest=\\\"400\\\"\\r\\n\" +\n    \"                    WidthRequest=\\\"600\\\"\\r\\n\" +\n    \"                    Padding=\\\"10,20,30,40\\\"\\r\\n\" +\n    \"                    VerticalSpacing=\\\"10\\\"\\r\\n\" +\n    \"                    HorizontalSpacing=\\\"15\\\"\\r\\n\" +\n    \"                    ShouldExpandLastChild=\\\"False\\\">\\r\\n\" +\n    \"        ...\\r\\n\" +\n    \"    </toolkit:DockLayout>\\r\\n\" +\n    \"    \\r\\n\" +\n    \"</ContentPage>\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Layouts/StateContainer/StateContainerControlInfo.cs",
    "content": "﻿using CommunityToolkit.Maui.Layouts;\n\nnamespace MAUIsland.Core;\n\nclass StateContainerControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(StateContainer);\n    public string ControlRoute => \"MAUIsland.StateContainerPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_column_arrow_right_20_regular,\n    };\n    public string ControlDetail => \"Displaying a specific view when your app is in a specific state is a common pattern throughout any mobile app. Examples range from creating loading views to overlay on the screen, or on a subsection of the screen. Empty state views can be created for when there's no data to display, and error state views can be displayed when an error occurs.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Layouts/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/layouts/statecontainer\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Layout;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Layouts/StateContainer/StateContainerPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class StateContainerPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n\n    public StateContainerPageViewModel(IAppNavigator appNavigator,\n                                       IGitHubService gitHubService,\n                                       IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                        : base(appNavigator,\n                                                gitHubService,\n                                                gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    bool canStateChange = true;\n\n    [ObservableProperty]\n    string currentState = \"Loading\";\n\n    [ObservableProperty]\n    string xamlStateContainerLayout =\n        \"<VerticalStackLayout toolkit:StateContainer.CanStateChange=\\\"{Binding CanStateChange}\\\" toolkit:StateContainer.CurrentState=\\\"{Binding CurrentState}\\\">\\r\\n\" +\n        \"    <toolkit:StateContainer.StateViews>\\r\\n\" +\n        \"        <VerticalStackLayout toolkit:StateView.StateKey=\\\"Loading\\\">\\r\\n\" +\n        \"            <ActivityIndicator IsRunning=\\\"True\\\" />\\r\\n\" +\n        \"            <Label Text=\\\"Loading Content...\\\" />\\r\\n\" +\n        \"        </VerticalStackLayout>\\r\\n\" +\n        \"        <Label toolkit:StateView.StateKey=\\\"Success\\\" Text=\\\"Success!\\\" />\\r\\n\" +\n        \"    </toolkit:StateContainer.StateViews>\\r\\n\" +\n        \"\\r\\n\" +\n        \"    <Label Text=\\\"Default Content\\\" />\\r\\n\" +\n        \"    <Button Command=\\\"{Binding ChangeStateCommand}\\\" Text=\\\"Change State\\\" />\\r\\n\" +\n        \"\\r\\n\" +\n        \"</VerticalStackLayout>\";\n\n    [ObservableProperty]\n    string csharpStateContainerLayout =\n    \"[ObservableProperty]\\r\\n\" +\n    \"bool canStateChange = true;\\r\\n\" +\n    \"\\r\\n\" +\n    \"[ObservableProperty]\\r\\n\" +\n    \"string currentState = \\\"Loading\\\";\\r\\n\" +\n    \"[RelayCommand(CanExecute = nameof(CanStateChange))]\\r\\n\" +\n    \"void ChangeState()\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    CurrentState = CurrentState == \\\"Success\\\"\\r\\n\" +\n    \"                            ?\\r\\n\" +\n    \"                            \\\"Loading\\\"\\r\\n\" +\n    \"                            :\\r\\n\" +\n    \"                            \\\"Success\\\";\\r\\n\" +\n    \"}\";\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n\n    [RelayCommand(CanExecute = nameof(CanStateChange))]\n    void ChangeState()\n    {\n        CurrentState = CurrentState == \"Success\"\n                                ?\n                                \"Loading\"\n                                :\n                                \"Success\";\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Layouts/UniformLayout/UniformItemsLayoutControlInfo.cs",
    "content": "﻿using CommunityToolkit.Maui.Layouts;\n\nnamespace MAUIsland.Core;\n\nclass UniformItemsLayoutControlInfo : ICommunityToolkitGalleryCardInfo\n{\n    public string ControlName => nameof(UniformItemsLayout);\n    public string ControlRoute => \"MAUIsland.UniformItemsLayoutPage\";\n    public ImageSource ControlIcon => new FontImageSource()\n    {\n        FontFamily = FontNames.FluentSystemIconsRegular,\n        Size = 100,\n        Glyph = FluentUIIcon.Ic_fluent_dock_row_20_regular,\n    };\n    public string ControlDetail => \"The UniformItemsLayout is a layout where all rows and columns have the same size.\";\n    public string GitHubUrl => $\"https://github.com/Strypper/mauisland/tree/main/src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Layouts/{ControlName}\";\n    public string DocumentUrl => $\"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/layouts/uniformitemslayout\";\n    public string GroupName => ControlGroupInfo.CommunityToolkit;\n    public GalleryCardType CardType => GalleryCardType.Layout;\n    public GalleryCardStatus CardStatus => throw new NotImplementedException();\n    public DateTime LastUpdate => throw new NotImplementedException();\n    public List<string> DoList => throw new NotImplementedException();\n    public List<string> DontList => throw new NotImplementedException();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Features/Gallery/Pages/Toolkit/Layouts/UniformLayout/UniformItemsLayoutPageViewModel.cs",
    "content": "﻿using MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\n\nnamespace MAUIsland.Core;\n\npublic partial class UniformItemsLayoutPageViewModel : BaseToolkitPageControlViewModel\n{\n    #region [ CTor ]\n    public UniformItemsLayoutPageViewModel(IAppNavigator appNavigator,\n                                           IGitHubService gitHubService,\n                                           IGitHubIssueLocalDbService gitHubIssueLocalDbService)\n                                            : base(appNavigator,\n                                                    gitHubService,\n                                                    gitHubIssueLocalDbService)\n    {\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    bool canStateChange = true;\n\n    [ObservableProperty]\n    string currentState = \"Loading\";\n\n    [ObservableProperty]\n    string xamlUniformItemsLayout =\n        \"<toolkit:UniformItemsLayout>\\r\\n\" +\n        \"    <BoxView\\r\\n\" +\n        \"        HeightRequest=\\\"25\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"25\\\"\\r\\n\" +\n        \"        Color=\\\"Blue\\\" />\\r\\n\" +\n        \"    <BoxView\\r\\n\" +\n        \"        HeightRequest=\\\"25\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"25\\\"\\r\\n\" +\n        \"        Color=\\\"Yellow\\\" />\\r\\n\" +\n        \"    <BoxView\\r\\n\" +\n        \"        HeightRequest=\\\"25\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"25\\\"\\r\\n\" +\n        \"        Color=\\\"Red\\\" />\\r\\n\" +\n        \"    <BoxView\\r\\n\" +\n        \"        HeightRequest=\\\"25\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"25\\\"\\r\\n\" +\n        \"        Color=\\\"Black\\\" />\\r\\n\" +\n        \"    <BoxView\\r\\n\" +\n        \"        HeightRequest=\\\"25\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"25\\\"\\r\\n\" +\n        \"        Color=\\\"Blue\\\" />\\r\\n\" +\n        \"    <BoxView\\r\\n\" +\n        \"        HeightRequest=\\\"25\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"25\\\"\\r\\n\" +\n        \"        Color=\\\"Yellow\\\" />\\r\\n\" +\n        \"    <BoxView\\r\\n\" +\n        \"        HeightRequest=\\\"25\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"25\\\"\\r\\n\" +\n        \"        Color=\\\"Red\\\" />\\r\\n\" +\n        \"    <BoxView\\r\\n\" +\n        \"        HeightRequest=\\\"25\\\"\\r\\n\" +\n        \"        WidthRequest=\\\"25\\\"\\r\\n\" +\n        \"        Color=\\\"Black\\\" />\\r\\n\" +\n        \"</toolkit:UniformItemsLayout>\";\n\n\n\n    [ObservableProperty]\n    string csharpUniformItemsLayout =\n        \"using CommunityToolkit.Maui.Views;\\r\\n\" +\n        \"\\r\\n\" +\n        \"var page = new ContentPage\\r\\n\" +\n        \"{\\r\\n\" +\n        \"    Content = new UniformItemsLayout\\r\\n\" +\n        \"    {\\r\\n\" +\n        \"        Children = \\r\\n\" +\n        \"        {\\r\\n\" +\n        \"            new BoxView { HeightRequest = 25, WidthRequest = 25, BackgroundColor = Colors.Blue },\\r\\n\" +\n        \"            new BoxView { HeightRequest = 25, WidthRequest = 25, BackgroundColor = Colors.Yellow },\\r\\n\" +\n        \"            new BoxView { HeightRequest = 25, WidthRequest = 25, BackgroundColor = Colors.Red },\\r\\n\" +\n        \"            new BoxView { HeightRequest = 25, WidthRequest = 25, BackgroundColor = Colors.Black }\\r\\n\" +\n        \"        }\\r\\n\" +\n        \"    }\\r\\n\" +\n        \"};\";\n\n    [ObservableProperty]\n    string xamlCustomizingUniformItemsLayout =\n            \"<toolkit:UniformItemsLayout MaxColumns=\\\"1\\\" MaxRows=\\\"1\\\">\\r\\n\" +\n    \"    <BoxView\\r\\n\" +\n    \"        HeightRequest=\\\"25\\\"\\r\\n\" +\n    \"        WidthRequest=\\\"25\\\"\\r\\n\" +\n    \"        Color=\\\"Blue\\\" />\\r\\n\" +\n    \"    <BoxView\\r\\n\" +\n    \"        HeightRequest=\\\"25\\\"\\r\\n\" +\n    \"        WidthRequest=\\\"25\\\"\\r\\n\" +\n    \"        Color=\\\"Yellow\\\" />\\r\\n\" +\n    \"    <BoxView\\r\\n\" +\n    \"        HeightRequest=\\\"25\\\"\\r\\n\" +\n    \"        WidthRequest=\\\"25\\\"\\r\\n\" +\n    \"        Color=\\\"Red\\\" />\\r\\n\" +\n    \"    <BoxView\\r\\n\" +\n    \"        HeightRequest=\\\"25\\\"\\r\\n\" +\n    \"        WidthRequest=\\\"25\\\"\\r\\n\" +\n    \"        Color=\\\"Black\\\" />\\r\\n\" +\n    \"</toolkit:UniformItemsLayout>\";\n\n    [ObservableProperty]\n    string csharpCustomizingUniformItemsLayout =\n    \"using CommunityToolkit.Maui.Views;\\r\\n\" +\n    \"\\r\\n\" +\n    \"var page = new ContentPage\\r\\n\" +\n    \"{\\r\\n\" +\n    \"    Content = new UniformItemsLayout\\r\\n\" +\n    \"    {\\r\\n\" +\n    \"        MaxRows = 1,\\r\\n\" +\n    \"        MaxColumns = 1,\\r\\n\" +\n    \"        Children = \\r\\n\" +\n    \"        {\\r\\n\" +\n    \"            new BoxView { HeightRequest = 25, WidthRequest = 25, BackgroundColor = Colors.Blue },\\r\\n\" +\n    \"            new BoxView { HeightRequest = 25, WidthRequest = 25, BackgroundColor = Colors.Yellow },\\r\\n\" +\n    \"            new BoxView { HeightRequest = 25, WidthRequest = 25, BackgroundColor = Colors.Red },\\r\\n\" +\n    \"            new BoxView { HeightRequest = 25, WidthRequest = 25, BackgroundColor = Colors.Black }\\r\\n\" +\n    \"        }\\r\\n\" +\n    \"    }\\r\\n\" +\n    \"};\";\n\n    [ObservableProperty]\n    int noOfColumns = 4;\n\n    [ObservableProperty]\n    int noOfRows = 4;\n\n    #endregion\n\n    #region [ Overrides ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n        ControlInformation = query.GetData<ICommunityToolkitGalleryCardInfo>();\n    }\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    async Task RefreshAsync()\n    {\n        if (ControlInformation is null)\n            return;\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/GlobalUsings.cs",
    "content": "﻿global using CommunityToolkit.Mvvm.ComponentModel;\nglobal using CommunityToolkit.Mvvm.Input;\nglobal using System;\nglobal using System.Collections.Generic;\nglobal using System.Collections.ObjectModel;\nglobal using System.ComponentModel.DataAnnotations;\nglobal using System.Diagnostics.CodeAnalysis;\nglobal using System.Globalization;\nglobal using System.Linq;\nglobal using System.Windows.Input;\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Helpers/FormattedStringFormatter.cs",
    "content": "﻿namespace MAUIsland.Core;\n\n// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\n// See the LICENSE file in the project root for more information.\n\nusing ColorCode;\nusing ColorCode.Common;\nusing ColorCode.Parsing;\nusing ColorCode.Styling;\nusing System.Collections.Generic;\n\n/// <summary>\n/// Creates a <see cref=\"RichTextBlockFormatter\"/>, for rendering Syntax Highlighted code to a RichTextBlock.\n/// </summary>\npublic class FormattedStringFormatter : CodeColorizerBase\n{\n    /// <summary>\n    /// Creates a <see cref=\"RichTextBlockFormatter\"/>, for rendering Syntax Highlighted code to a RichTextBlock.\n    /// </summary>\n    /// <param name=\"Theme\">The Theme to use, determines whether to use Default Light or Default Dark.</param>\n    public FormattedStringFormatter(AppTheme Theme, ILanguageParser languageParser = null)\n        : this(Theme == AppTheme.Dark ? StyleDictionary.DefaultDark : StyleDictionary.DefaultLight, languageParser)\n    {\n    }\n\n    /// <summary>\n    /// Creates a <see cref=\"RichTextBlockFormatter\"/>, for rendering Syntax Highlighted code to a RichTextBlock.\n    /// </summary>\n    /// <param name=\"Style\">The Custom styles to Apply to the formatted Code.</param>\n    /// <param name=\"languageParser\">The language parser that the <see cref=\"RichTextBlockFormatter\"/> instance will use for its lifetime.</param>\n    public FormattedStringFormatter(StyleDictionary Style = null, ILanguageParser languageParser = null) : base(Style, languageParser)\n    {\n    }\n\n    /// <summary>\n    /// Adds Syntax Highlighted Source Code to the provided RichTextBlock.\n    /// </summary>\n    /// <param name=\"sourceCode\">The source code to colorize.</param>\n    /// <param name=\"language\">The language to use to colorize the source code.</param>\n    /// <param name=\"formattedString\">The Control to add the Text to.</param>\n    public void FormatString(string sourceCode, ILanguage Language, FormattedString formattedString)\n    {\n        var paragraph = new Span();\n        formattedString.Spans.Add(paragraph);\n        FormatSpans(sourceCode, Language, formattedString.Spans);\n    }\n\n    /// <summary>\n    /// Adds Syntax Highlighted Source Code to the provided InlineCollection.\n    /// </summary>\n    /// <param name=\"sourceCode\">The source code to colorize.</param>\n    /// <param name=\"language\">The language to use to colorize the source code.</param>\n    /// <param name=\"spans\">InlineCollection to add the Text to.</param>\n    public void FormatSpans(string sourceCode, ILanguage Language, IList<Span> spans)\n    {\n        this.Spans = spans;\n        languageParser.Parse(sourceCode, Language, (parsedSourceCode, captures) => Write(parsedSourceCode, captures));\n    }\n\n    private IList<Span> Spans { get; set; }\n\n    protected override void Write(string parsedSourceCode, IList<Scope> scopes)\n    {\n        var styleInsertions = new List<TextInsertion>();\n\n        foreach (Scope scope in scopes)\n            GetStyleInsertionsForCapturedStyle(scope, styleInsertions);\n\n        styleInsertions.SortStable((x, y) => x.Index.CompareTo(y.Index));\n\n        int offset = 0;\n\n        Scope PreviousScope = null;\n\n        foreach (var styleinsertion in styleInsertions)\n        {\n            var text = parsedSourceCode.Substring(offset, styleinsertion.Index - offset);\n            CreateSpan(text, PreviousScope);\n            if (!string.IsNullOrWhiteSpace(styleinsertion.Text))\n            {\n                CreateSpan(text, PreviousScope);\n            }\n            offset = styleinsertion.Index;\n\n            PreviousScope = styleinsertion.Scope;\n        }\n\n        var remaining = parsedSourceCode.Substring(offset);\n        // Ensures that those loose carriages don't run away!\n        if (remaining != \"\\r\")\n        {\n            CreateSpan(remaining, null);\n        }\n    }\n\n    private void CreateSpan(string text, Scope scope)\n    {\n        var span = new Span\n        {\n            Text = text\n        };\n\n        // Styles and writes the text to the span.\n        if (scope != null) StyleSpan(span, scope);\n        //span.Inlines.Add(run);\n\n        Spans.Add(span);\n    }\n\n    private void StyleSpan(Span span, Scope scope)\n    {\n        string foreground = null;\n        string background = null;\n        bool italic = false;\n        bool bold = false;\n\n        if (Styles.Contains(scope.Name))\n        {\n            ColorCode.Styling.Style style = Styles[scope.Name];\n\n            foreground = style.Foreground;\n            background = style.Background;\n            italic = style.Italic;\n            bold = style.Bold;\n        }\n\n        if (!string.IsNullOrWhiteSpace(foreground))\n            span.TextColor = Color.FromArgb(foreground);\n\n        if (!string.IsNullOrWhiteSpace(background))\n            span.BackgroundColor = Color.FromArgb(background);\n\n\n        if (italic)\n            span.FontAttributes = FontAttributes.Italic;\n\n        if (bold)\n            span.FontAttributes = FontAttributes.Bold;\n    }\n\n    private void GetStyleInsertionsForCapturedStyle(Scope scope, ICollection<TextInsertion> styleInsertions)\n    {\n        styleInsertions.Add(new TextInsertion\n        {\n            Index = scope.Index,\n            Scope = scope\n        });\n\n        foreach (Scope childScope in scope.Children)\n            GetStyleInsertionsForCapturedStyle(childScope, styleInsertions);\n\n        styleInsertions.Add(new TextInsertion\n        {\n            Index = scope.Index + scope.Length\n        });\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Helpers/ServiceHelper.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic static class ServiceHelper\n{\n    public static TService GetService<TService>() => Current.GetService<TService>();\n    public static TService GetService<TService>(Type type) where TService : class\n        => GetService(type) as TService;\n\n    public static object GetService(Type type) => Current.GetService(type);\n\n    public static IServiceProvider Current\n    {\n        get\n        {\n#if WINDOWS\n            return MauiWinUIApplication.Current.Services;\n#elif ANDROID\n            return MauiApplication.Current.Services;\n#elif IOS || MACCATALYST\n            return MauiUIApplicationDelegate.Current.Services;\n#else \n    return null;\n#endif\n        }\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Icons/FluentUIIcon.cs",
    "content": "﻿namespace MAUIsland.Core;\npublic static class FluentUIIcon\n{\n    public const string Ic_fluent_access_time_20_regular = \"\\ue000\";\n    public const string Ic_fluent_access_time_24_regular = \"\\uf101\";\n    public const string Ic_fluent_accessibility_16_regular = \"\\uf102\";\n    public const string Ic_fluent_accessibility_20_regular = \"\\uf103\";\n    public const string Ic_fluent_accessibility_24_regular = \"\\uf104\";\n    public const string Ic_fluent_accessibility_28_regular = \"\\uf105\";\n    public const string Ic_fluent_accessibility_32_regular = \"\\ue001\";\n    public const string Ic_fluent_accessibility_48_regular = \"\\ue002\";\n    public const string Ic_fluent_accessibility_checkmark_20_regular = \"\\ue003\";\n    public const string Ic_fluent_accessibility_checkmark_24_regular = \"\\ue004\";\n    public const string Ic_fluent_add_12_regular = \"\\uf107\";\n    public const string Ic_fluent_add_16_regular = \"\\uf108\";\n    public const string Ic_fluent_add_20_regular = \"\\uf109\";\n    public const string Ic_fluent_add_24_regular = \"\\uf10a\";\n    public const string Ic_fluent_add_28_regular = \"\\uf10b\";\n    public const string Ic_fluent_add_circle_16_regular = \"\\ue005\";\n    public const string Ic_fluent_add_circle_20_regular = \"\\uf10c\";\n    public const string Ic_fluent_add_circle_24_regular = \"\\uf10d\";\n    public const string Ic_fluent_add_circle_28_regular = \"\\uf10e\";\n    public const string Ic_fluent_add_circle_32_regular = \"\\ue006\";\n    public const string Ic_fluent_add_square_20_regular = \"\\ue007\";\n    public const string Ic_fluent_add_square_24_regular = \"\\uf8ca\";\n    public const string Ic_fluent_add_square_multiple_16_regular = \"\\ue008\";\n    public const string Ic_fluent_add_square_multiple_20_regular = \"\\ue009\";\n    public const string Ic_fluent_add_subtract_circle_16_regular = \"\\ue00a\";\n    public const string Ic_fluent_add_subtract_circle_20_regular = \"\\ue00b\";\n    public const string Ic_fluent_add_subtract_circle_24_regular = \"\\ue00c\";\n    public const string Ic_fluent_add_subtract_circle_28_regular = \"\\ue00d\";\n    public const string Ic_fluent_add_subtract_circle_48_regular = \"\\ue00e\";\n    public const string Ic_fluent_airplane_20_regular = \"\\uf10f\";\n    public const string Ic_fluent_airplane_24_regular = \"\\uf110\";\n    public const string Ic_fluent_airplane_take_off_16_regular = \"\\uf111\";\n    public const string Ic_fluent_airplane_take_off_20_regular = \"\\uf112\";\n    public const string Ic_fluent_airplane_take_off_24_regular = \"\\uf113\";\n    public const string Ic_fluent_album_20_regular = \"\\ue00f\";\n    public const string Ic_fluent_album_24_regular = \"\\ue010\";\n    public const string Ic_fluent_album_add_20_regular = \"\\ue011\";\n    public const string Ic_fluent_album_add_24_regular = \"\\ue012\";\n    public const string Ic_fluent_alert_12_regular = \"\\ue013\";\n    public const string Ic_fluent_alert_16_regular = \"\\ue014\";\n    public const string Ic_fluent_alert_20_regular = \"\\uf114\";\n    public const string Ic_fluent_alert_24_regular = \"\\uf115\";\n    public const string Ic_fluent_alert_28_regular = \"\\uf116\";\n    public const string Ic_fluent_alert_32_regular = \"\\ue015\";\n    public const string Ic_fluent_alert_48_regular = \"\\ue016\";\n    public const string Ic_fluent_alert_badge_16_regular = \"\\ue017\";\n    public const string Ic_fluent_alert_badge_20_regular = \"\\ue018\";\n    public const string Ic_fluent_alert_badge_24_regular = \"\\ue019\";\n    public const string Ic_fluent_alert_off_16_regular = \"\\uf117\";\n    public const string Ic_fluent_alert_off_20_regular = \"\\uf118\";\n    public const string Ic_fluent_alert_off_24_regular = \"\\uf119\";\n    public const string Ic_fluent_alert_off_28_regular = \"\\uf11a\";\n    public const string Ic_fluent_alert_on_20_regular = \"\\ue01a\";\n    public const string Ic_fluent_alert_on_24_regular = \"\\uf11b\";\n    public const string Ic_fluent_alert_snooze_12_regular = \"\\ue01b\";\n    public const string Ic_fluent_alert_snooze_16_regular = \"\\ue01c\";\n    public const string Ic_fluent_alert_snooze_20_regular = \"\\uf11c\";\n    public const string Ic_fluent_alert_snooze_24_regular = \"\\uf11d\";\n    public const string Ic_fluent_alert_urgent_16_regular = \"\\ue01d\";\n    public const string Ic_fluent_alert_urgent_20_regular = \"\\uf11e\";\n    public const string Ic_fluent_alert_urgent_24_regular = \"\\uf11f\";\n    public const string Ic_fluent_align_bottom_16_regular = \"\\ue01e\";\n    public const string Ic_fluent_align_bottom_20_regular = \"\\ue01f\";\n    public const string Ic_fluent_align_bottom_24_regular = \"\\ue020\";\n    public const string Ic_fluent_align_bottom_28_regular = \"\\ue021\";\n    public const string Ic_fluent_align_bottom_32_regular = \"\\ue022\";\n    public const string Ic_fluent_align_bottom_48_regular = \"\\ue023\";\n    public const string Ic_fluent_align_center_horizontal_16_regular = \"\\ue024\";\n    public const string Ic_fluent_align_center_horizontal_20_regular = \"\\ue025\";\n    public const string Ic_fluent_align_center_horizontal_24_regular = \"\\ue026\";\n    public const string Ic_fluent_align_center_horizontal_28_regular = \"\\ue027\";\n    public const string Ic_fluent_align_center_horizontal_32_regular = \"\\ue028\";\n    public const string Ic_fluent_align_center_horizontal_48_regular = \"\\ue029\";\n    public const string Ic_fluent_align_center_vertical_16_regular = \"\\ue02a\";\n    public const string Ic_fluent_align_center_vertical_20_regular = \"\\ue02b\";\n    public const string Ic_fluent_align_center_vertical_24_regular = \"\\ue02c\";\n    public const string Ic_fluent_align_center_vertical_28_regular = \"\\ue02d\";\n    public const string Ic_fluent_align_center_vertical_32_regular = \"\\ue02e\";\n    public const string Ic_fluent_align_center_vertical_48_regular = \"\\ue02f\";\n    public const string Ic_fluent_align_end_horizontal_20_regular = \"\\ue030\";\n    public const string Ic_fluent_align_end_vertical_20_regular = \"\\ue031\";\n    public const string Ic_fluent_align_left_16_regular = \"\\ue032\";\n    public const string Ic_fluent_align_left_20_regular = \"\\ue033\";\n    public const string Ic_fluent_align_left_24_regular = \"\\ue034\";\n    public const string Ic_fluent_align_left_28_regular = \"\\ue035\";\n    public const string Ic_fluent_align_left_32_regular = \"\\ue036\";\n    public const string Ic_fluent_align_left_48_regular = \"\\ue037\";\n    public const string Ic_fluent_align_right_16_regular = \"\\ue038\";\n    public const string Ic_fluent_align_right_20_regular = \"\\ue039\";\n    public const string Ic_fluent_align_right_24_regular = \"\\ue03a\";\n    public const string Ic_fluent_align_right_28_regular = \"\\ue03b\";\n    public const string Ic_fluent_align_right_32_regular = \"\\ue03c\";\n    public const string Ic_fluent_align_right_48_regular = \"\\ue03d\";\n    public const string Ic_fluent_align_space_around_horizontal_20_regular = \"\\ue03e\";\n    public const string Ic_fluent_align_space_around_vertical_20_regular = \"\\ue03f\";\n    public const string Ic_fluent_align_space_between_horizontal_20_regular = \"\\ue040\";\n    public const string Ic_fluent_align_space_between_vertical_20_regular = \"\\ue041\";\n    public const string Ic_fluent_align_space_evenly_horizontal_20_regular = \"\\ue042\";\n    public const string Ic_fluent_align_space_evenly_vertical_20_regular = \"\\ue043\";\n    public const string Ic_fluent_align_space_fit_vertical_20_regular = \"\\ue044\";\n    public const string Ic_fluent_align_start_horizontal_20_regular = \"\\ue045\";\n    public const string Ic_fluent_align_start_vertical_20_regular = \"\\ue046\";\n    public const string Ic_fluent_align_stretch_horizontal_20_regular = \"\\ue047\";\n    public const string Ic_fluent_align_stretch_vertical_20_regular = \"\\ue048\";\n    public const string Ic_fluent_align_top_16_regular = \"\\ue049\";\n    public const string Ic_fluent_align_top_20_regular = \"\\ue04a\";\n    public const string Ic_fluent_align_top_24_regular = \"\\ue04b\";\n    public const string Ic_fluent_align_top_28_regular = \"\\ue04c\";\n    public const string Ic_fluent_align_top_32_regular = \"\\ue04d\";\n    public const string Ic_fluent_align_top_48_regular = \"\\ue04e\";\n    public const string Ic_fluent_animal_cat_16_regular = \"\\uf106\";\n    public const string Ic_fluent_animal_cat_20_regular = \"\\uf126\";\n    public const string Ic_fluent_animal_cat_24_regular = \"\\uf127\";\n    public const string Ic_fluent_animal_cat_28_regular = \"\\uf128\";\n    public const string Ic_fluent_animal_dog_16_regular = \"\\ue04f\";\n    public const string Ic_fluent_animal_dog_20_regular = \"\\uf120\";\n    public const string Ic_fluent_animal_dog_24_regular = \"\\uf121\";\n    public const string Ic_fluent_animal_rabbit_16_regular = \"\\ue050\";\n    public const string Ic_fluent_animal_rabbit_20_regular = \"\\ue051\";\n    public const string Ic_fluent_animal_rabbit_24_regular = \"\\ue052\";\n    public const string Ic_fluent_animal_rabbit_28_regular = \"\\ue053\";\n    public const string Ic_fluent_animal_turtle_16_regular = \"\\ue054\";\n    public const string Ic_fluent_animal_turtle_20_regular = \"\\ue055\";\n    public const string Ic_fluent_animal_turtle_24_regular = \"\\ue056\";\n    public const string Ic_fluent_animal_turtle_28_regular = \"\\ue057\";\n    public const string Ic_fluent_app_folder_16_regular = \"\\ue058\";\n    public const string Ic_fluent_app_folder_20_regular = \"\\uf122\";\n    public const string Ic_fluent_app_folder_24_regular = \"\\uf123\";\n    public const string Ic_fluent_app_folder_28_regular = \"\\ue059\";\n    public const string Ic_fluent_app_folder_32_regular = \"\\ue05a\";\n    public const string Ic_fluent_app_folder_48_regular = \"\\ue05b\";\n    public const string Ic_fluent_app_generic_20_regular = \"\\ue05c\";\n    public const string Ic_fluent_app_generic_24_regular = \"\\uf124\";\n    public const string Ic_fluent_app_recent_20_regular = \"\\ue05d\";\n    public const string Ic_fluent_app_recent_24_regular = \"\\uf125\";\n    public const string Ic_fluent_app_store_24_regular = \"\\uf12a\";\n    public const string Ic_fluent_app_title_20_regular = \"\\ue05e\";\n    public const string Ic_fluent_app_title_24_regular = \"\\uf12b\";\n    public const string Ic_fluent_approvals_app_16_regular = \"\\ue05f\";\n    public const string Ic_fluent_approvals_app_20_regular = \"\\ue060\";\n    public const string Ic_fluent_approvals_app_24_regular = \"\\uf130\";\n    public const string Ic_fluent_approvals_app_28_regular = \"\\uf131\";\n    public const string Ic_fluent_approvals_app_32_regular = \"\\ue061\";\n    public const string Ic_fluent_apps_16_regular = \"\\uf132\";\n    public const string Ic_fluent_apps_20_regular = \"\\uf133\";\n    public const string Ic_fluent_apps_24_regular = \"\\uf134\";\n    public const string Ic_fluent_apps_28_regular = \"\\uf135\";\n    public const string Ic_fluent_apps_add_in_16_regular = \"\\ue062\";\n    public const string Ic_fluent_apps_add_in_20_regular = \"\\uf136\";\n    public const string Ic_fluent_apps_add_in_24_regular = \"\\uf137\";\n    public const string Ic_fluent_apps_add_in_28_regular = \"\\ue063\";\n    public const string Ic_fluent_apps_list_20_regular = \"\\uf8cb\";\n    public const string Ic_fluent_apps_list_24_regular = \"\\uf138\";\n    public const string Ic_fluent_apps_list_detail_20_regular = \"\\ue064\";\n    public const string Ic_fluent_apps_list_detail_24_regular = \"\\ue065\";\n    public const string Ic_fluent_archive_16_regular = \"\\uf8cc\";\n    public const string Ic_fluent_archive_20_regular = \"\\uf139\";\n    public const string Ic_fluent_archive_24_regular = \"\\uf13a\";\n    public const string Ic_fluent_archive_28_regular = \"\\uf13b\";\n    public const string Ic_fluent_archive_32_regular = \"\\ue066\";\n    public const string Ic_fluent_archive_48_regular = \"\\uf13c\";\n    public const string Ic_fluent_archive_arrow_back_16_regular = \"\\ue067\";\n    public const string Ic_fluent_archive_arrow_back_20_regular = \"\\ue068\";\n    public const string Ic_fluent_archive_arrow_back_24_regular = \"\\ue069\";\n    public const string Ic_fluent_archive_arrow_back_28_regular = \"\\ue06a\";\n    public const string Ic_fluent_archive_arrow_back_32_regular = \"\\ue06b\";\n    public const string Ic_fluent_archive_arrow_back_48_regular = \"\\ue06c\";\n    public const string Ic_fluent_archive_multiple_16_regular = \"\\ue06d\";\n    public const string Ic_fluent_archive_multiple_20_regular = \"\\ue06e\";\n    public const string Ic_fluent_archive_multiple_24_regular = \"\\ue06f\";\n    public const string Ic_fluent_archive_settings_16_regular = \"\\uf129\";\n    public const string Ic_fluent_archive_settings_20_regular = \"\\ue070\";\n    public const string Ic_fluent_archive_settings_24_regular = \"\\ue071\";\n    public const string Ic_fluent_archive_settings_28_regular = \"\\ue072\";\n    public const string Ic_fluent_arrow_autofit_content_20_regular = \"\\ue073\";\n    public const string Ic_fluent_arrow_autofit_content_24_regular = \"\\ue074\";\n    public const string Ic_fluent_arrow_autofit_down_20_regular = \"\\ue075\";\n    public const string Ic_fluent_arrow_autofit_down_24_regular = \"\\ue076\";\n    public const string Ic_fluent_arrow_autofit_height_20_regular = \"\\ue077\";\n    public const string Ic_fluent_arrow_autofit_height_24_regular = \"\\uf8cd\";\n    public const string Ic_fluent_arrow_autofit_height_dotted_20_regular = \"\\ue078\";\n    public const string Ic_fluent_arrow_autofit_height_dotted_24_regular = \"\\ue079\";\n    public const string Ic_fluent_arrow_autofit_up_20_regular = \"\\ue07a\";\n    public const string Ic_fluent_arrow_autofit_up_24_regular = \"\\ue07b\";\n    public const string Ic_fluent_arrow_autofit_width_20_regular = \"\\ue07c\";\n    public const string Ic_fluent_arrow_autofit_width_24_regular = \"\\uf8ce\";\n    public const string Ic_fluent_arrow_autofit_width_dotted_20_regular = \"\\ue07d\";\n    public const string Ic_fluent_arrow_autofit_width_dotted_24_regular = \"\\ue07e\";\n    public const string Ic_fluent_arrow_between_down_20_regular = \"\\ue07f\";\n    public const string Ic_fluent_arrow_between_down_24_regular = \"\\ue080\";\n    public const string Ic_fluent_arrow_between_up_20_regular = \"\\ue081\";\n    public const string Ic_fluent_arrow_bidirectional_up_down_12_regular = \"\\ue082\";\n    public const string Ic_fluent_arrow_bidirectional_up_down_16_regular = \"\\ue083\";\n    public const string Ic_fluent_arrow_bidirectional_up_down_20_regular = \"\\ue084\";\n    public const string Ic_fluent_arrow_bidirectional_up_down_24_regular = \"\\ue085\";\n    public const string Ic_fluent_arrow_bounce_16_regular = \"\\ue086\";\n    public const string Ic_fluent_arrow_bounce_20_regular = \"\\ue087\";\n    public const string Ic_fluent_arrow_bounce_24_regular = \"\\ue088\";\n    public const string Ic_fluent_arrow_circle_down_12_regular = \"\\ue089\";\n    public const string Ic_fluent_arrow_circle_down_16_regular = \"\\ue08a\";\n    public const string Ic_fluent_arrow_circle_down_20_regular = \"\\uf12c\";\n    public const string Ic_fluent_arrow_circle_down_24_regular = \"\\uf12d\";\n    public const string Ic_fluent_arrow_circle_down_28_regular = \"\\ue08b\";\n    public const string Ic_fluent_arrow_circle_down_32_regular = \"\\ue08c\";\n    public const string Ic_fluent_arrow_circle_down_48_regular = \"\\ue08d\";\n    public const string Ic_fluent_arrow_circle_down_double_20_regular = \"\\uf12e\";\n    public const string Ic_fluent_arrow_circle_down_double_24_regular = \"\\uf12f\";\n    public const string Ic_fluent_arrow_circle_down_right_16_regular = \"\\ue08e\";\n    public const string Ic_fluent_arrow_circle_down_right_20_regular = \"\\ue08f\";\n    public const string Ic_fluent_arrow_circle_down_right_24_regular = \"\\ue090\";\n    public const string Ic_fluent_arrow_circle_down_split_20_regular = \"\\uf143\";\n    public const string Ic_fluent_arrow_circle_down_split_24_regular = \"\\uf144\";\n    public const string Ic_fluent_arrow_circle_down_up_20_regular = \"\\ue091\";\n    public const string Ic_fluent_arrow_circle_left_12_regular = \"\\ue092\";\n    public const string Ic_fluent_arrow_circle_left_16_regular = \"\\ue093\";\n    public const string Ic_fluent_arrow_circle_left_20_regular = \"\\ue094\";\n    public const string Ic_fluent_arrow_circle_left_24_regular = \"\\ue095\";\n    public const string Ic_fluent_arrow_circle_left_28_regular = \"\\ue096\";\n    public const string Ic_fluent_arrow_circle_left_32_regular = \"\\ue097\";\n    public const string Ic_fluent_arrow_circle_left_48_regular = \"\\ue098\";\n    public const string Ic_fluent_arrow_circle_right_12_regular = \"\\ue099\";\n    public const string Ic_fluent_arrow_circle_right_16_regular = \"\\ue09a\";\n    public const string Ic_fluent_arrow_circle_right_20_regular = \"\\ue09b\";\n    public const string Ic_fluent_arrow_circle_right_24_regular = \"\\ue09c\";\n    public const string Ic_fluent_arrow_circle_right_28_regular = \"\\ue09d\";\n    public const string Ic_fluent_arrow_circle_right_32_regular = \"\\ue09e\";\n    public const string Ic_fluent_arrow_circle_right_48_regular = \"\\ue09f\";\n    public const string Ic_fluent_arrow_circle_up_12_regular = \"\\ue0a0\";\n    public const string Ic_fluent_arrow_circle_up_16_regular = \"\\ue0a1\";\n    public const string Ic_fluent_arrow_circle_up_20_regular = \"\\ue0a2\";\n    public const string Ic_fluent_arrow_circle_up_24_regular = \"\\ue0a3\";\n    public const string Ic_fluent_arrow_circle_up_28_regular = \"\\ue0a4\";\n    public const string Ic_fluent_arrow_circle_up_32_regular = \"\\ue0a5\";\n    public const string Ic_fluent_arrow_circle_up_48_regular = \"\\ue0a6\";\n    public const string Ic_fluent_arrow_circle_up_left_20_regular = \"\\ue0a7\";\n    public const string Ic_fluent_arrow_circle_up_left_24_regular = \"\\ue0a8\";\n    public const string Ic_fluent_arrow_clockwise_12_regular = \"\\ue0a9\";\n    public const string Ic_fluent_arrow_clockwise_16_regular = \"\\ue0aa\";\n    public const string Ic_fluent_arrow_clockwise_20_regular = \"\\uf13d\";\n    public const string Ic_fluent_arrow_clockwise_24_regular = \"\\uf13e\";\n    public const string Ic_fluent_arrow_clockwise_28_regular = \"\\ue0ab\";\n    public const string Ic_fluent_arrow_clockwise_32_regular = \"\\ue0ac\";\n    public const string Ic_fluent_arrow_clockwise_48_regular = \"\\ue0ad\";\n    public const string Ic_fluent_arrow_clockwise_dashes_20_regular = \"\\ue0ae\";\n    public const string Ic_fluent_arrow_clockwise_dashes_24_regular = \"\\ue0af\";\n    public const string Ic_fluent_arrow_collapse_all_20_regular = \"\\ue0b0\";\n    public const string Ic_fluent_arrow_collapse_all_24_regular = \"\\ue0b1\";\n    public const string Ic_fluent_arrow_counterclockwise_12_regular = \"\\ue0b2\";\n    public const string Ic_fluent_arrow_counterclockwise_16_regular = \"\\ue0b3\";\n    public const string Ic_fluent_arrow_counterclockwise_20_regular = \"\\uf13f\";\n    public const string Ic_fluent_arrow_counterclockwise_24_regular = \"\\uf140\";\n    public const string Ic_fluent_arrow_counterclockwise_28_regular = \"\\uf8cf\";\n    public const string Ic_fluent_arrow_counterclockwise_32_regular = \"\\ue0b4\";\n    public const string Ic_fluent_arrow_counterclockwise_48_regular = \"\\ue0b5\";\n    public const string Ic_fluent_arrow_counterclockwise_dashes_20_regular = \"\\ue0b6\";\n    public const string Ic_fluent_arrow_counterclockwise_dashes_24_regular = \"\\ue0b7\";\n    public const string Ic_fluent_arrow_curve_down_left_16_regular = \"\\ue0b8\";\n    public const string Ic_fluent_arrow_curve_down_left_20_regular = \"\\uf141\";\n    public const string Ic_fluent_arrow_curve_down_left_24_regular = \"\\ue0b9\";\n    public const string Ic_fluent_arrow_curve_down_left_28_regular = \"\\ue0ba\";\n    public const string Ic_fluent_arrow_curve_down_right_20_regular = \"\\uf142\";\n    public const string Ic_fluent_arrow_curve_up_left_20_regular = \"\\uf145\";\n    public const string Ic_fluent_arrow_curve_up_right_20_regular = \"\\uf146\";\n    public const string Ic_fluent_arrow_down_12_regular = \"\\uf8d0\";\n    public const string Ic_fluent_arrow_down_16_regular = \"\\uf147\";\n    public const string Ic_fluent_arrow_down_20_regular = \"\\uf148\";\n    public const string Ic_fluent_arrow_down_24_regular = \"\\uf149\";\n    public const string Ic_fluent_arrow_down_28_regular = \"\\uf14a\";\n    public const string Ic_fluent_arrow_down_32_regular = \"\\uf14c\";\n    public const string Ic_fluent_arrow_down_48_regular = \"\\uf14d\";\n    public const string Ic_fluent_arrow_down_left_16_regular = \"\\uf8d1\";\n    public const string Ic_fluent_arrow_down_left_20_regular = \"\\ue0bb\";\n    public const string Ic_fluent_arrow_down_left_24_regular = \"\\uf14b\";\n    public const string Ic_fluent_arrow_down_left_32_regular = \"\\ue0bc\";\n    public const string Ic_fluent_arrow_down_left_48_regular = \"\\ue0bd\";\n    public const string Ic_fluent_arrow_download_16_regular = \"\\uf14f\";\n    public const string Ic_fluent_arrow_download_20_regular = \"\\uf150\";\n    public const string Ic_fluent_arrow_download_24_regular = \"\\uf151\";\n    public const string Ic_fluent_arrow_download_48_regular = \"\\uf152\";\n    public const string Ic_fluent_arrow_eject_20_regular = \"\\ue0be\";\n    public const string Ic_fluent_arrow_enter_20_regular = \"\\ue0bf\";\n    public const string Ic_fluent_arrow_enter_left_20_regular = \"\\ue0c0\";\n    public const string Ic_fluent_arrow_enter_left_24_regular = \"\\ue0c1\";\n    public const string Ic_fluent_arrow_enter_up_20_regular = \"\\ue0c2\";\n    public const string Ic_fluent_arrow_enter_up_24_regular = \"\\ue0c3\";\n    public const string Ic_fluent_arrow_exit_20_regular = \"\\ue0c4\";\n    public const string Ic_fluent_arrow_expand_20_regular = \"\\ue0c5\";\n    public const string Ic_fluent_arrow_expand_24_regular = \"\\uf154\";\n    public const string Ic_fluent_arrow_export_ltr_16_regular = \"\\ue0c6\";\n    public const string Ic_fluent_arrow_export_ltr_20_regular = \"\\ue0c7\";\n    public const string Ic_fluent_arrow_export_ltr_24_regular = \"\\ue0c8\";\n    public const string Ic_fluent_arrow_export_rtl_16_regular = \"\\ue0c9\";\n    public const string Ic_fluent_arrow_export_rtl_20_regular = \"\\uf8d2\";\n    public const string Ic_fluent_arrow_export_rtl_24_regular = \"\\ue0ca\";\n    public const string Ic_fluent_arrow_export_up_20_regular = \"\\ue0cb\";\n    public const string Ic_fluent_arrow_export_up_24_regular = \"\\ue0cc\";\n    public const string Ic_fluent_arrow_fit_16_regular = \"\\uf14e\";\n    public const string Ic_fluent_arrow_fit_20_regular = \"\\ue0cd\";\n    public const string Ic_fluent_arrow_fit_in_16_regular = \"\\ue0ce\";\n    public const string Ic_fluent_arrow_fit_in_20_regular = \"\\ue0cf\";\n    public const string Ic_fluent_arrow_forward_16_regular = \"\\uf156\";\n    public const string Ic_fluent_arrow_forward_20_regular = \"\\uf157\";\n    public const string Ic_fluent_arrow_forward_24_regular = \"\\uf158\";\n    public const string Ic_fluent_arrow_forward_28_regular = \"\\ue0d0\";\n    public const string Ic_fluent_arrow_forward_48_regular = \"\\ue0d1\";\n    public const string Ic_fluent_arrow_forward_down_lightning_20_regular = \"\\ue0d2\";\n    public const string Ic_fluent_arrow_forward_down_lightning_24_regular = \"\\ue0d3\";\n    public const string Ic_fluent_arrow_forward_down_person_20_regular = \"\\ue0d4\";\n    public const string Ic_fluent_arrow_forward_down_person_24_regular = \"\\ue0d5\";\n    public const string Ic_fluent_arrow_hook_down_left_16_regular = \"\\uf8d5\";\n    public const string Ic_fluent_arrow_hook_down_left_20_regular = \"\\uf8d6\";\n    public const string Ic_fluent_arrow_hook_down_left_24_regular = \"\\uf8d7\";\n    public const string Ic_fluent_arrow_hook_down_left_28_regular = \"\\uf8d8\";\n    public const string Ic_fluent_arrow_hook_down_right_16_regular = \"\\uf8d9\";\n    public const string Ic_fluent_arrow_hook_down_right_20_regular = \"\\uf8da\";\n    public const string Ic_fluent_arrow_hook_down_right_24_regular = \"\\uf8db\";\n    public const string Ic_fluent_arrow_hook_down_right_28_regular = \"\\uf8dc\";\n    public const string Ic_fluent_arrow_hook_up_left_16_regular = \"\\uf8dd\";\n    public const string Ic_fluent_arrow_hook_up_left_20_regular = \"\\uf8de\";\n    public const string Ic_fluent_arrow_hook_up_left_24_regular = \"\\uf8df\";\n    public const string Ic_fluent_arrow_hook_up_left_28_regular = \"\\uf8e0\";\n    public const string Ic_fluent_arrow_hook_up_right_16_regular = \"\\uf8e1\";\n    public const string Ic_fluent_arrow_hook_up_right_20_regular = \"\\uf8e2\";\n    public const string Ic_fluent_arrow_hook_up_right_24_regular = \"\\uf8e3\";\n    public const string Ic_fluent_arrow_hook_up_right_28_regular = \"\\uf8e4\";\n    public const string Ic_fluent_arrow_import_20_regular = \"\\uf159\";\n    public const string Ic_fluent_arrow_import_24_regular = \"\\uf15a\";\n    public const string Ic_fluent_arrow_join_20_regular = \"\\ue0d6\";\n    public const string Ic_fluent_arrow_left_12_regular = \"\\ue0d7\";\n    public const string Ic_fluent_arrow_left_16_regular = \"\\uf184\";\n    public const string Ic_fluent_arrow_left_20_regular = \"\\uf15b\";\n    public const string Ic_fluent_arrow_left_24_regular = \"\\uf15c\";\n    public const string Ic_fluent_arrow_left_28_regular = \"\\uf15d\";\n    public const string Ic_fluent_arrow_left_32_regular = \"\\uf189\";\n    public const string Ic_fluent_arrow_left_48_regular = \"\\uf19e\";\n    public const string Ic_fluent_arrow_maximize_16_regular = \"\\uf15e\";\n    public const string Ic_fluent_arrow_maximize_20_regular = \"\\uf15f\";\n    public const string Ic_fluent_arrow_maximize_24_regular = \"\\uf160\";\n    public const string Ic_fluent_arrow_maximize_28_regular = \"\\uf161\";\n    public const string Ic_fluent_arrow_maximize_32_regular = \"\\ue0d8\";\n    public const string Ic_fluent_arrow_maximize_48_regular = \"\\ue0d9\";\n    public const string Ic_fluent_arrow_maximize_vertical_20_regular = \"\\uf162\";\n    public const string Ic_fluent_arrow_maximize_vertical_24_regular = \"\\uf163\";\n    public const string Ic_fluent_arrow_maximize_vertical_48_regular = \"\\ue0da\";\n    public const string Ic_fluent_arrow_minimize_16_regular = \"\\uf164\";\n    public const string Ic_fluent_arrow_minimize_20_regular = \"\\uf165\";\n    public const string Ic_fluent_arrow_minimize_24_regular = \"\\uf166\";\n    public const string Ic_fluent_arrow_minimize_28_regular = \"\\uf167\";\n    public const string Ic_fluent_arrow_minimize_vertical_20_regular = \"\\ue0db\";\n    public const string Ic_fluent_arrow_minimize_vertical_24_regular = \"\\uf168\";\n    public const string Ic_fluent_arrow_move_20_regular = \"\\uf8e5\";\n    public const string Ic_fluent_arrow_move_24_regular = \"\\uf169\";\n    public const string Ic_fluent_arrow_move_inward_20_regular = \"\\ue0dc\";\n    public const string Ic_fluent_arrow_next_12_regular = \"\\ue0dd\";\n    public const string Ic_fluent_arrow_next_20_regular = \"\\uf16a\";\n    public const string Ic_fluent_arrow_next_24_regular = \"\\uf16b\";\n    public const string Ic_fluent_arrow_outline_up_right_20_regular = \"\\ue0de\";\n    public const string Ic_fluent_arrow_outline_up_right_24_regular = \"\\ue0df\";\n    public const string Ic_fluent_arrow_outline_up_right_32_regular = \"\\ue0e0\";\n    public const string Ic_fluent_arrow_outline_up_right_48_regular = \"\\ue0e1\";\n    public const string Ic_fluent_arrow_paragraph_20_regular = \"\\ue0e2\";\n    public const string Ic_fluent_arrow_previous_12_regular = \"\\ue0e3\";\n    public const string Ic_fluent_arrow_previous_20_regular = \"\\uf16c\";\n    public const string Ic_fluent_arrow_previous_24_regular = \"\\uf16d\";\n    public const string Ic_fluent_arrow_redo_16_regular = \"\\ue0e4\";\n    public const string Ic_fluent_arrow_redo_20_regular = \"\\uf16e\";\n    public const string Ic_fluent_arrow_redo_24_regular = \"\\uf16f\";\n    public const string Ic_fluent_arrow_redo_28_regular = \"\\ue0e5\";\n    public const string Ic_fluent_arrow_redo_32_regular = \"\\uf8e6\";\n    public const string Ic_fluent_arrow_redo_48_regular = \"\\uf8e7\";\n    public const string Ic_fluent_arrow_repeat_all_16_regular = \"\\uf170\";\n    public const string Ic_fluent_arrow_repeat_all_20_regular = \"\\uf171\";\n    public const string Ic_fluent_arrow_repeat_all_24_regular = \"\\uf172\";\n    public const string Ic_fluent_arrow_repeat_all_off_16_regular = \"\\uf173\";\n    public const string Ic_fluent_arrow_repeat_all_off_20_regular = \"\\uf174\";\n    public const string Ic_fluent_arrow_repeat_all_off_24_regular = \"\\uf175\";\n    public const string Ic_fluent_arrow_reply_16_regular = \"\\uf176\";\n    public const string Ic_fluent_arrow_reply_20_regular = \"\\uf177\";\n    public const string Ic_fluent_arrow_reply_24_regular = \"\\uf178\";\n    public const string Ic_fluent_arrow_reply_28_regular = \"\\ue0e6\";\n    public const string Ic_fluent_arrow_reply_48_regular = \"\\uf179\";\n    public const string Ic_fluent_arrow_reply_all_16_regular = \"\\uf17a\";\n    public const string Ic_fluent_arrow_reply_all_20_regular = \"\\uf17b\";\n    public const string Ic_fluent_arrow_reply_all_24_regular = \"\\uf17c\";\n    public const string Ic_fluent_arrow_reply_all_28_regular = \"\\ue0e7\";\n    public const string Ic_fluent_arrow_reply_all_48_regular = \"\\uf17d\";\n    public const string Ic_fluent_arrow_reply_down_16_regular = \"\\uf17e\";\n    public const string Ic_fluent_arrow_reply_down_20_regular = \"\\uf17f\";\n    public const string Ic_fluent_arrow_reply_down_24_regular = \"\\uf180\";\n    public const string Ic_fluent_arrow_reset_20_regular = \"\\uf19f\";\n    public const string Ic_fluent_arrow_reset_24_regular = \"\\uf1a0\";\n    public const string Ic_fluent_arrow_reset_32_regular = \"\\ue0e8\";\n    public const string Ic_fluent_arrow_reset_48_regular = \"\\ue0e9\";\n    public const string Ic_fluent_arrow_right_12_regular = \"\\ue0ea\";\n    public const string Ic_fluent_arrow_right_16_regular = \"\\ue0eb\";\n    public const string Ic_fluent_arrow_right_20_regular = \"\\uf181\";\n    public const string Ic_fluent_arrow_right_24_regular = \"\\uf182\";\n    public const string Ic_fluent_arrow_right_28_regular = \"\\uf183\";\n    public const string Ic_fluent_arrow_right_32_regular = \"\\uf1a2\";\n    public const string Ic_fluent_arrow_right_48_regular = \"\\uf1a7\";\n    public const string Ic_fluent_arrow_rotate_clockwise_16_regular = \"\\ue0ec\";\n    public const string Ic_fluent_arrow_rotate_clockwise_20_regular = \"\\uf185\";\n    public const string Ic_fluent_arrow_rotate_clockwise_24_regular = \"\\uf186\";\n    public const string Ic_fluent_arrow_rotate_counterclockwise_20_regular = \"\\uf187\";\n    public const string Ic_fluent_arrow_rotate_counterclockwise_24_regular = \"\\uf188\";\n    public const string Ic_fluent_arrow_routing_20_regular = \"\\ue0ed\";\n    public const string Ic_fluent_arrow_routing_24_regular = \"\\ue0ee\";\n    public const string Ic_fluent_arrow_routing_rectangle_multiple_20_regular = \"\\ue0ef\";\n    public const string Ic_fluent_arrow_routing_rectangle_multiple_24_regular = \"\\ue0f0\";\n    public const string Ic_fluent_arrow_sort_16_regular = \"\\uf1ab\";\n    public const string Ic_fluent_arrow_sort_20_regular = \"\\uf18a\";\n    public const string Ic_fluent_arrow_sort_24_regular = \"\\uf18b\";\n    public const string Ic_fluent_arrow_sort_28_regular = \"\\uf18c\";\n    public const string Ic_fluent_arrow_sort_down_16_regular = \"\\uf1ac\";\n    public const string Ic_fluent_arrow_sort_down_20_regular = \"\\uf805\";\n    public const string Ic_fluent_arrow_sort_down_24_regular = \"\\uf811\";\n    public const string Ic_fluent_arrow_sort_down_lines_16_regular = \"\\uf1ad\";\n    public const string Ic_fluent_arrow_sort_down_lines_20_regular = \"\\ue0f1\";\n    public const string Ic_fluent_arrow_sort_down_lines_24_regular = \"\\ue0f2\";\n    public const string Ic_fluent_arrow_sort_up_16_regular = \"\\uf1b3\";\n    public const string Ic_fluent_arrow_sort_up_20_regular = \"\\uf812\";\n    public const string Ic_fluent_arrow_sort_up_24_regular = \"\\uf821\";\n    public const string Ic_fluent_arrow_split_16_regular = \"\\ue0f3\";\n    public const string Ic_fluent_arrow_split_20_regular = \"\\ue0f4\";\n    public const string Ic_fluent_arrow_split_24_regular = \"\\ue0f5\";\n    public const string Ic_fluent_arrow_square_down_20_regular = \"\\ue0f6\";\n    public const string Ic_fluent_arrow_square_down_24_regular = \"\\ue0f7\";\n    public const string Ic_fluent_arrow_step_back_16_regular = \"\\ue0f8\";\n    public const string Ic_fluent_arrow_step_back_20_regular = \"\\ue0f9\";\n    public const string Ic_fluent_arrow_step_in_12_regular = \"\\ue0fa\";\n    public const string Ic_fluent_arrow_step_in_16_regular = \"\\ue0fb\";\n    public const string Ic_fluent_arrow_step_in_20_regular = \"\\ue0fc\";\n    public const string Ic_fluent_arrow_step_in_24_regular = \"\\ue0fd\";\n    public const string Ic_fluent_arrow_step_in_28_regular = \"\\ue0fe\";\n    public const string Ic_fluent_arrow_step_in_left_12_regular = \"\\ue0ff\";\n    public const string Ic_fluent_arrow_step_in_left_16_regular = \"\\ue100\";\n    public const string Ic_fluent_arrow_step_in_left_20_regular = \"\\ue101\";\n    public const string Ic_fluent_arrow_step_in_left_24_regular = \"\\ue102\";\n    public const string Ic_fluent_arrow_step_in_left_28_regular = \"\\ue103\";\n    public const string Ic_fluent_arrow_step_in_right_12_regular = \"\\ue104\";\n    public const string Ic_fluent_arrow_step_in_right_16_regular = \"\\ue105\";\n    public const string Ic_fluent_arrow_step_in_right_20_regular = \"\\ue106\";\n    public const string Ic_fluent_arrow_step_in_right_24_regular = \"\\ue107\";\n    public const string Ic_fluent_arrow_step_in_right_28_regular = \"\\ue108\";\n    public const string Ic_fluent_arrow_step_out_12_regular = \"\\ue109\";\n    public const string Ic_fluent_arrow_step_out_16_regular = \"\\ue10a\";\n    public const string Ic_fluent_arrow_step_out_20_regular = \"\\ue10b\";\n    public const string Ic_fluent_arrow_step_out_24_regular = \"\\ue10c\";\n    public const string Ic_fluent_arrow_step_out_28_regular = \"\\ue10d\";\n    public const string Ic_fluent_arrow_step_over_16_regular = \"\\ue10e\";\n    public const string Ic_fluent_arrow_step_over_20_regular = \"\\ue10f\";\n    public const string Ic_fluent_arrow_swap_20_regular = \"\\uf18d\";\n    public const string Ic_fluent_arrow_swap_24_regular = \"\\uf18e\";\n    public const string Ic_fluent_arrow_sync_12_regular = \"\\uf18f\";\n    public const string Ic_fluent_arrow_sync_16_regular = \"\\ue110\";\n    public const string Ic_fluent_arrow_sync_20_regular = \"\\uf190\";\n    public const string Ic_fluent_arrow_sync_24_regular = \"\\uf191\";\n    public const string Ic_fluent_arrow_sync_checkmark_20_regular = \"\\ue111\";\n    public const string Ic_fluent_arrow_sync_checkmark_24_regular = \"\\ue112\";\n    public const string Ic_fluent_arrow_sync_circle_16_regular = \"\\uf192\";\n    public const string Ic_fluent_arrow_sync_circle_20_regular = \"\\uf193\";\n    public const string Ic_fluent_arrow_sync_circle_24_regular = \"\\uf194\";\n    public const string Ic_fluent_arrow_sync_dismiss_20_regular = \"\\ue113\";\n    public const string Ic_fluent_arrow_sync_dismiss_24_regular = \"\\ue114\";\n    public const string Ic_fluent_arrow_sync_off_12_regular = \"\\uf195\";\n    public const string Ic_fluent_arrow_sync_off_16_regular = \"\\ue115\";\n    public const string Ic_fluent_arrow_sync_off_20_regular = \"\\ue116\";\n    public const string Ic_fluent_arrow_trending_16_regular = \"\\uf196\";\n    public const string Ic_fluent_arrow_trending_20_regular = \"\\uf197\";\n    public const string Ic_fluent_arrow_trending_24_regular = \"\\uf198\";\n    public const string Ic_fluent_arrow_trending_checkmark_20_regular = \"\\ue117\";\n    public const string Ic_fluent_arrow_trending_checkmark_24_regular = \"\\ue118\";\n    public const string Ic_fluent_arrow_trending_down_16_regular = \"\\ue119\";\n    public const string Ic_fluent_arrow_trending_down_20_regular = \"\\ue11a\";\n    public const string Ic_fluent_arrow_trending_down_24_regular = \"\\ue11b\";\n    public const string Ic_fluent_arrow_trending_lines_20_regular = \"\\ue11c\";\n    public const string Ic_fluent_arrow_trending_lines_24_regular = \"\\ue11d\";\n    public const string Ic_fluent_arrow_trending_settings_20_regular = \"\\ue11e\";\n    public const string Ic_fluent_arrow_trending_settings_24_regular = \"\\ue11f\";\n    public const string Ic_fluent_arrow_trending_text_20_regular = \"\\ue120\";\n    public const string Ic_fluent_arrow_trending_text_24_regular = \"\\ue121\";\n    public const string Ic_fluent_arrow_trending_wrench_20_regular = \"\\ue122\";\n    public const string Ic_fluent_arrow_trending_wrench_24_regular = \"\\ue123\";\n    public const string Ic_fluent_arrow_turn_bidirectional_down_right_20_regular = \"\\ue124\";\n    public const string Ic_fluent_arrow_turn_bidirectional_down_right_24_regular = \"\\uf822\";\n    public const string Ic_fluent_arrow_turn_right_20_regular = \"\\ue125\";\n    public const string Ic_fluent_arrow_turn_right_24_regular = \"\\uf839\";\n    public const string Ic_fluent_arrow_undo_16_regular = \"\\ue126\";\n    public const string Ic_fluent_arrow_undo_20_regular = \"\\uf199\";\n    public const string Ic_fluent_arrow_undo_24_regular = \"\\uf19a\";\n    public const string Ic_fluent_arrow_undo_28_regular = \"\\ue127\";\n    public const string Ic_fluent_arrow_undo_32_regular = \"\\ue128\";\n    public const string Ic_fluent_arrow_undo_48_regular = \"\\ue129\";\n    public const string Ic_fluent_arrow_up_12_regular = \"\\ue12a\";\n    public const string Ic_fluent_arrow_up_16_regular = \"\\uf1b4\";\n    public const string Ic_fluent_arrow_up_20_regular = \"\\uf19b\";\n    public const string Ic_fluent_arrow_up_24_regular = \"\\uf19c\";\n    public const string Ic_fluent_arrow_up_28_regular = \"\\uf19d\";\n    public const string Ic_fluent_arrow_up_32_regular = \"\\uf1b8\";\n    public const string Ic_fluent_arrow_up_48_regular = \"\\uf1b9\";\n    public const string Ic_fluent_arrow_up_left_16_regular = \"\\ue12b\";\n    public const string Ic_fluent_arrow_up_left_20_regular = \"\\ue12c\";\n    public const string Ic_fluent_arrow_up_left_24_regular = \"\\uf1a1\";\n    public const string Ic_fluent_arrow_up_left_48_regular = \"\\ue12d\";\n    public const string Ic_fluent_arrow_up_right_16_regular = \"\\uf8eb\";\n    public const string Ic_fluent_arrow_up_right_20_regular = \"\\ue12e\";\n    public const string Ic_fluent_arrow_up_right_24_regular = \"\\uf1a3\";\n    public const string Ic_fluent_arrow_up_right_32_regular = \"\\ue12f\";\n    public const string Ic_fluent_arrow_up_right_48_regular = \"\\ue130\";\n    public const string Ic_fluent_arrow_upload_16_regular = \"\\ue131\";\n    public const string Ic_fluent_arrow_upload_20_regular = \"\\uf1a4\";\n    public const string Ic_fluent_arrow_upload_24_regular = \"\\uf1a5\";\n    public const string Ic_fluent_arrow_wrap_20_regular = \"\\ue132\";\n    public const string Ic_fluent_arrow_wrap_off_20_regular = \"\\ue133\";\n    public const string Ic_fluent_arrows_bidirectional_20_regular = \"\\ue134\";\n    public const string Ic_fluent_arrows_bidirectional_24_regular = \"\\uf1a6\";\n    public const string Ic_fluent_attach_12_regular = \"\\ue135\";\n    public const string Ic_fluent_attach_16_regular = \"\\uf1a8\";\n    public const string Ic_fluent_attach_20_regular = \"\\uf1a9\";\n    public const string Ic_fluent_attach_24_regular = \"\\uf1aa\";\n    public const string Ic_fluent_attach_arrow_right_20_regular = \"\\uf8ec\";\n    public const string Ic_fluent_attach_arrow_right_24_regular = \"\\uf8ed\";\n    public const string Ic_fluent_attach_text_20_regular = \"\\ue136\";\n    public const string Ic_fluent_attach_text_24_regular = \"\\uf8ee\";\n    public const string Ic_fluent_auto_fit_height_20_regular = \"\\ue137\";\n    public const string Ic_fluent_auto_fit_height_24_regular = \"\\ue138\";\n    public const string Ic_fluent_auto_fit_width_20_regular = \"\\ue139\";\n    public const string Ic_fluent_auto_fit_width_24_regular = \"\\ue13a\";\n    public const string Ic_fluent_autocorrect_20_regular = \"\\ue13b\";\n    public const string Ic_fluent_autocorrect_24_regular = \"\\uf1ae\";\n    public const string Ic_fluent_autosum_20_regular = \"\\uf1af\";\n    public const string Ic_fluent_autosum_24_regular = \"\\uf1b0\";\n    public const string Ic_fluent_backpack_12_regular = \"\\uf8f0\";\n    public const string Ic_fluent_backpack_16_regular = \"\\uf8f1\";\n    public const string Ic_fluent_backpack_20_regular = \"\\uf8f2\";\n    public const string Ic_fluent_backpack_24_regular = \"\\uf8f3\";\n    public const string Ic_fluent_backpack_28_regular = \"\\uf8f4\";\n    public const string Ic_fluent_backpack_32_regular = \"\\ue13c\";\n    public const string Ic_fluent_backpack_48_regular = \"\\uf8f5\";\n    public const string Ic_fluent_backpack_add_20_regular = \"\\ue13d\";\n    public const string Ic_fluent_backpack_add_24_regular = \"\\ue13e\";\n    public const string Ic_fluent_backpack_add_28_regular = \"\\ue13f\";\n    public const string Ic_fluent_backpack_add_48_regular = \"\\ue140\";\n    public const string Ic_fluent_backspace_20_regular = \"\\uf1b1\";\n    public const string Ic_fluent_backspace_24_regular = \"\\uf1b2\";\n    public const string Ic_fluent_badge_20_regular = \"\\ue141\";\n    public const string Ic_fluent_badge_24_regular = \"\\uf1b5\";\n    public const string Ic_fluent_balloon_12_regular = \"\\ue142\";\n    public const string Ic_fluent_balloon_16_regular = \"\\uf8f6\";\n    public const string Ic_fluent_balloon_20_regular = \"\\uf1b6\";\n    public const string Ic_fluent_balloon_24_regular = \"\\uf1b7\";\n    public const string Ic_fluent_barcode_scanner_20_regular = \"\\uf1ba\";\n    public const string Ic_fluent_barcode_scanner_24_regular = \"\\uf1e4\";\n    public const string Ic_fluent_battery_0_20_regular = \"\\uf1bb\";\n    public const string Ic_fluent_battery_0_24_regular = \"\\uf1bc\";\n    public const string Ic_fluent_battery_1_20_regular = \"\\uf1bd\";\n    public const string Ic_fluent_battery_1_24_regular = \"\\uf1be\";\n    public const string Ic_fluent_battery_10_20_regular = \"\\ue143\";\n    public const string Ic_fluent_battery_10_24_regular = \"\\ue144\";\n    public const string Ic_fluent_battery_2_20_regular = \"\\uf1bf\";\n    public const string Ic_fluent_battery_2_24_regular = \"\\uf1c0\";\n    public const string Ic_fluent_battery_3_20_regular = \"\\uf1c1\";\n    public const string Ic_fluent_battery_3_24_regular = \"\\uf1c2\";\n    public const string Ic_fluent_battery_4_20_regular = \"\\uf1c3\";\n    public const string Ic_fluent_battery_4_24_regular = \"\\uf1c4\";\n    public const string Ic_fluent_battery_5_20_regular = \"\\uf1c5\";\n    public const string Ic_fluent_battery_5_24_regular = \"\\uf1c6\";\n    public const string Ic_fluent_battery_6_20_regular = \"\\uf1c7\";\n    public const string Ic_fluent_battery_6_24_regular = \"\\uf1c8\";\n    public const string Ic_fluent_battery_7_20_regular = \"\\uf1c9\";\n    public const string Ic_fluent_battery_7_24_regular = \"\\uf1ca\";\n    public const string Ic_fluent_battery_8_20_regular = \"\\uf1cb\";\n    public const string Ic_fluent_battery_8_24_regular = \"\\uf1cc\";\n    public const string Ic_fluent_battery_9_20_regular = \"\\uf1cd\";\n    public const string Ic_fluent_battery_9_24_regular = \"\\uf1ce\";\n    public const string Ic_fluent_battery_charge_20_regular = \"\\uf1cf\";\n    public const string Ic_fluent_battery_charge_24_regular = \"\\uf1d0\";\n    public const string Ic_fluent_battery_checkmark_20_regular = \"\\ue145\";\n    public const string Ic_fluent_battery_checkmark_24_regular = \"\\ue146\";\n    public const string Ic_fluent_battery_saver_20_regular = \"\\uf1d3\";\n    public const string Ic_fluent_battery_saver_24_regular = \"\\uf1d4\";\n    public const string Ic_fluent_battery_warning_20_regular = \"\\ue147\";\n    public const string Ic_fluent_battery_warning_24_regular = \"\\uf1d5\";\n    public const string Ic_fluent_beach_16_regular = \"\\ue148\";\n    public const string Ic_fluent_beach_20_regular = \"\\ue149\";\n    public const string Ic_fluent_beach_24_regular = \"\\ue14a\";\n    public const string Ic_fluent_beach_28_regular = \"\\ue14b\";\n    public const string Ic_fluent_beach_32_regular = \"\\ue14c\";\n    public const string Ic_fluent_beach_48_regular = \"\\ue14d\";\n    public const string Ic_fluent_beaker_16_regular = \"\\uf1d6\";\n    public const string Ic_fluent_beaker_20_regular = \"\\uf1d7\";\n    public const string Ic_fluent_beaker_24_regular = \"\\uf1d8\";\n    public const string Ic_fluent_beaker_edit_20_regular = \"\\uf1e5\";\n    public const string Ic_fluent_beaker_edit_24_regular = \"\\uf1e6\";\n    public const string Ic_fluent_bed_16_regular = \"\\uf8f7\";\n    public const string Ic_fluent_bed_20_regular = \"\\uf1d9\";\n    public const string Ic_fluent_bed_24_regular = \"\\uf1da\";\n    public const string Ic_fluent_bezier_curve_square_12_regular = \"\\ue14e\";\n    public const string Ic_fluent_bezier_curve_square_20_regular = \"\\ue14f\";\n    public const string Ic_fluent_bin_full_20_regular = \"\\ue150\";\n    public const string Ic_fluent_bin_full_24_regular = \"\\ue151\";\n    public const string Ic_fluent_bluetooth_20_regular = \"\\uf1de\";\n    public const string Ic_fluent_bluetooth_24_regular = \"\\uf1df\";\n    public const string Ic_fluent_bluetooth_28_regular = \"\\uf8f8\";\n    public const string Ic_fluent_bluetooth_connected_20_regular = \"\\ue152\";\n    public const string Ic_fluent_bluetooth_connected_24_regular = \"\\uf1e0\";\n    public const string Ic_fluent_bluetooth_disabled_20_regular = \"\\ue153\";\n    public const string Ic_fluent_bluetooth_disabled_24_regular = \"\\uf1e1\";\n    public const string Ic_fluent_bluetooth_searching_20_regular = \"\\ue154\";\n    public const string Ic_fluent_bluetooth_searching_24_regular = \"\\uf1e2\";\n    public const string Ic_fluent_blur_16_regular = \"\\uf8f9\";\n    public const string Ic_fluent_blur_20_regular = \"\\uf8fa\";\n    public const string Ic_fluent_blur_24_regular = \"\\uf8fb\";\n    public const string Ic_fluent_blur_28_regular = \"\\uf8fc\";\n    public const string Ic_fluent_board_16_regular = \"\\ue155\";\n    public const string Ic_fluent_board_20_regular = \"\\ue156\";\n    public const string Ic_fluent_board_24_regular = \"\\uf1e3\";\n    public const string Ic_fluent_board_28_regular = \"\\ue157\";\n    public const string Ic_fluent_board_games_20_regular = \"\\ue158\";\n    public const string Ic_fluent_board_heart_16_regular = \"\\ue159\";\n    public const string Ic_fluent_board_heart_20_regular = \"\\ue15a\";\n    public const string Ic_fluent_board_heart_24_regular = \"\\ue15b\";\n    public const string Ic_fluent_board_split_16_regular = \"\\ue15c\";\n    public const string Ic_fluent_board_split_20_regular = \"\\ue15d\";\n    public const string Ic_fluent_board_split_24_regular = \"\\ue15e\";\n    public const string Ic_fluent_board_split_28_regular = \"\\ue15f\";\n    public const string Ic_fluent_board_split_48_regular = \"\\ue160\";\n    public const string Ic_fluent_book_20_regular = \"\\uf8fd\";\n    public const string Ic_fluent_book_24_regular = \"\\uf8fe\";\n    public const string Ic_fluent_book_add_20_regular = \"\\uf8ff\";\n    public const string Ic_fluent_book_add_24_regular = \"\\ue161\";\n    public const string Ic_fluent_book_arrow_clockwise_20_regular = \"\\ue162\";\n    public const string Ic_fluent_book_arrow_clockwise_24_regular = \"\\ue163\";\n    public const string Ic_fluent_book_clock_20_regular = \"\\ue164\";\n    public const string Ic_fluent_book_clock_24_regular = \"\\ue165\";\n    public const string Ic_fluent_book_coins_20_regular = \"\\ue166\";\n    public const string Ic_fluent_book_coins_24_regular = \"\\ue167\";\n    public const string Ic_fluent_book_compass_20_regular = \"\\ue168\";\n    public const string Ic_fluent_book_compass_24_regular = \"\\ue169\";\n    public const string Ic_fluent_book_contacts_20_regular = \"\\ue16a\";\n    public const string Ic_fluent_book_contacts_24_regular = \"\\ue16b\";\n    public const string Ic_fluent_book_contacts_28_regular = \"\\ue16c\";\n    public const string Ic_fluent_book_contacts_32_regular = \"\\ue16d\";\n    public const string Ic_fluent_book_database_20_regular = \"\\ue16e\";\n    public const string Ic_fluent_book_database_24_regular = \"\\ue16f\";\n    public const string Ic_fluent_book_exclamation_mark_20_regular = \"\\ue170\";\n    public const string Ic_fluent_book_exclamation_mark_24_regular = \"\\ue171\";\n    public const string Ic_fluent_book_globe_20_regular = \"\\ue172\";\n    public const string Ic_fluent_book_globe_24_regular = \"\\uf1f0\";\n    public const string Ic_fluent_book_information_20_regular = \"\\ue173\";\n    public const string Ic_fluent_book_information_24_regular = \"\\ue174\";\n    public const string Ic_fluent_book_letter_20_regular = \"\\ue175\";\n    public const string Ic_fluent_book_letter_24_regular = \"\\ue176\";\n    public const string Ic_fluent_book_number_16_regular = \"\\uf1f1\";\n    public const string Ic_fluent_book_number_20_regular = \"\\uf1f2\";\n    public const string Ic_fluent_book_number_24_regular = \"\\uf1f3\";\n    public const string Ic_fluent_book_open_16_regular = \"\\ue177\";\n    public const string Ic_fluent_book_open_20_regular = \"\\ue178\";\n    public const string Ic_fluent_book_open_24_regular = \"\\ue179\";\n    public const string Ic_fluent_book_open_28_regular = \"\\ue17a\";\n    public const string Ic_fluent_book_open_32_regular = \"\\ue17b\";\n    public const string Ic_fluent_book_open_48_regular = \"\\ue17c\";\n    public const string Ic_fluent_book_open_globe_20_regular = \"\\ue17d\";\n    public const string Ic_fluent_book_open_globe_24_regular = \"\\ue17e\";\n    public const string Ic_fluent_book_open_microphone_20_regular = \"\\ue17f\";\n    public const string Ic_fluent_book_open_microphone_24_regular = \"\\ue180\";\n    public const string Ic_fluent_book_open_microphone_28_regular = \"\\ue181\";\n    public const string Ic_fluent_book_open_microphone_32_regular = \"\\ue182\";\n    public const string Ic_fluent_book_open_microphone_48_regular = \"\\ue183\";\n    public const string Ic_fluent_book_pulse_20_regular = \"\\ue184\";\n    public const string Ic_fluent_book_pulse_24_regular = \"\\ue185\";\n    public const string Ic_fluent_book_question_mark_20_regular = \"\\ue186\";\n    public const string Ic_fluent_book_question_mark_24_regular = \"\\ue187\";\n    public const string Ic_fluent_book_question_mark_rtl_20_regular = \"\\ue188\";\n    public const string Ic_fluent_book_question_mark_rtl_24_regular = \"\\uf83a\";\n    public const string Ic_fluent_book_search_20_regular = \"\\ue189\";\n    public const string Ic_fluent_book_search_24_regular = \"\\ue18a\";\n    public const string Ic_fluent_book_star_20_regular = \"\\ue18b\";\n    public const string Ic_fluent_book_star_24_regular = \"\\ue18c\";\n    public const string Ic_fluent_book_template_20_regular = \"\\ue18d\";\n    public const string Ic_fluent_book_theta_20_regular = \"\\ue18e\";\n    public const string Ic_fluent_book_theta_24_regular = \"\\ue18f\";\n    public const string Ic_fluent_book_toolbox_20_regular = \"\\uf1e7\";\n    public const string Ic_fluent_book_toolbox_24_regular = \"\\ue190\";\n    public const string Ic_fluent_bookmark_16_regular = \"\\uf1f4\";\n    public const string Ic_fluent_bookmark_20_regular = \"\\uf1f5\";\n    public const string Ic_fluent_bookmark_24_regular = \"\\uf1f6\";\n    public const string Ic_fluent_bookmark_28_regular = \"\\uf1f7\";\n    public const string Ic_fluent_bookmark_32_regular = \"\\ue191\";\n    public const string Ic_fluent_bookmark_add_20_regular = \"\\uf1e8\";\n    public const string Ic_fluent_bookmark_add_24_regular = \"\\uf1e9\";\n    public const string Ic_fluent_bookmark_multiple_16_regular = \"\\ue192\";\n    public const string Ic_fluent_bookmark_multiple_20_regular = \"\\ue193\";\n    public const string Ic_fluent_bookmark_multiple_24_regular = \"\\ue194\";\n    public const string Ic_fluent_bookmark_multiple_28_regular = \"\\ue195\";\n    public const string Ic_fluent_bookmark_multiple_32_regular = \"\\ue196\";\n    public const string Ic_fluent_bookmark_multiple_48_regular = \"\\ue197\";\n    public const string Ic_fluent_bookmark_off_20_regular = \"\\ue198\";\n    public const string Ic_fluent_bookmark_off_24_regular = \"\\uf1f8\";\n    public const string Ic_fluent_bookmark_search_20_regular = \"\\ue199\";\n    public const string Ic_fluent_bookmark_search_24_regular = \"\\ue19a\";\n    public const string Ic_fluent_border_all_16_regular = \"\\ue19b\";\n    public const string Ic_fluent_border_all_20_regular = \"\\ue19c\";\n    public const string Ic_fluent_border_all_24_regular = \"\\ue19d\";\n    public const string Ic_fluent_border_bottom_20_regular = \"\\ue19e\";\n    public const string Ic_fluent_border_bottom_24_regular = \"\\ue19f\";\n    public const string Ic_fluent_border_bottom_double_20_regular = \"\\ue1a0\";\n    public const string Ic_fluent_border_bottom_double_24_regular = \"\\ue1a1\";\n    public const string Ic_fluent_border_bottom_thick_20_regular = \"\\ue1a2\";\n    public const string Ic_fluent_border_bottom_thick_24_regular = \"\\ue1a3\";\n    public const string Ic_fluent_border_left_20_regular = \"\\ue1a4\";\n    public const string Ic_fluent_border_left_24_regular = \"\\ue1a5\";\n    public const string Ic_fluent_border_left_right_20_regular = \"\\ue1a6\";\n    public const string Ic_fluent_border_left_right_24_regular = \"\\ue1a7\";\n    public const string Ic_fluent_border_none_20_regular = \"\\ue1a8\";\n    public const string Ic_fluent_border_none_24_regular = \"\\ue1a9\";\n    public const string Ic_fluent_border_outside_20_regular = \"\\ue1aa\";\n    public const string Ic_fluent_border_outside_24_regular = \"\\ue1ab\";\n    public const string Ic_fluent_border_outside_thick_20_regular = \"\\ue1ac\";\n    public const string Ic_fluent_border_outside_thick_24_regular = \"\\ue1ad\";\n    public const string Ic_fluent_border_right_20_regular = \"\\ue1ae\";\n    public const string Ic_fluent_border_right_24_regular = \"\\ue1af\";\n    public const string Ic_fluent_border_top_20_regular = \"\\ue1b0\";\n    public const string Ic_fluent_border_top_24_regular = \"\\ue1b1\";\n    public const string Ic_fluent_border_top_bottom_20_regular = \"\\ue1b2\";\n    public const string Ic_fluent_border_top_bottom_24_regular = \"\\ue1b3\";\n    public const string Ic_fluent_border_top_bottom_double_20_regular = \"\\ue1b4\";\n    public const string Ic_fluent_border_top_bottom_double_24_regular = \"\\ue1b5\";\n    public const string Ic_fluent_border_top_bottom_thick_20_regular = \"\\ue1b6\";\n    public const string Ic_fluent_border_top_bottom_thick_24_regular = \"\\ue1b7\";\n    public const string Ic_fluent_bot_20_regular = \"\\ue1b8\";\n    public const string Ic_fluent_bot_24_regular = \"\\uf1f9\";\n    public const string Ic_fluent_bot_add_20_regular = \"\\ue1b9\";\n    public const string Ic_fluent_bot_add_24_regular = \"\\uf1fa\";\n    public const string Ic_fluent_bowl_chopsticks_16_regular = \"\\uf1ea\";\n    public const string Ic_fluent_bowl_chopsticks_20_regular = \"\\uf1eb\";\n    public const string Ic_fluent_bowl_chopsticks_24_regular = \"\\uf1ec\";\n    public const string Ic_fluent_bowl_chopsticks_28_regular = \"\\uf1ed\";\n    public const string Ic_fluent_box_16_regular = \"\\ue1ba\";\n    public const string Ic_fluent_box_20_regular = \"\\ue1bb\";\n    public const string Ic_fluent_box_24_regular = \"\\ue1bc\";\n    public const string Ic_fluent_box_arrow_left_20_regular = \"\\ue1bd\";\n    public const string Ic_fluent_box_arrow_left_24_regular = \"\\ue1be\";\n    public const string Ic_fluent_box_arrow_up_20_regular = \"\\ue1bf\";\n    public const string Ic_fluent_box_arrow_up_24_regular = \"\\ue1c0\";\n    public const string Ic_fluent_box_checkmark_20_regular = \"\\ue1c1\";\n    public const string Ic_fluent_box_checkmark_24_regular = \"\\ue1c2\";\n    public const string Ic_fluent_box_dismiss_20_regular = \"\\ue1c3\";\n    public const string Ic_fluent_box_dismiss_24_regular = \"\\ue1c4\";\n    public const string Ic_fluent_box_edit_20_regular = \"\\ue1c5\";\n    public const string Ic_fluent_box_edit_24_regular = \"\\ue1c6\";\n    public const string Ic_fluent_box_multiple_20_regular = \"\\ue1c7\";\n    public const string Ic_fluent_box_multiple_24_regular = \"\\ue1c8\";\n    public const string Ic_fluent_box_multiple_arrow_left_20_regular = \"\\ue1c9\";\n    public const string Ic_fluent_box_multiple_arrow_left_24_regular = \"\\ue1ca\";\n    public const string Ic_fluent_box_multiple_arrow_right_20_regular = \"\\ue1cb\";\n    public const string Ic_fluent_box_multiple_arrow_right_24_regular = \"\\ue1cc\";\n    public const string Ic_fluent_box_multiple_checkmark_20_regular = \"\\ue1cd\";\n    public const string Ic_fluent_box_multiple_checkmark_24_regular = \"\\ue1ce\";\n    public const string Ic_fluent_box_multiple_search_20_regular = \"\\ue1cf\";\n    public const string Ic_fluent_box_multiple_search_24_regular = \"\\ue1d0\";\n    public const string Ic_fluent_box_search_20_regular = \"\\ue1d1\";\n    public const string Ic_fluent_box_search_24_regular = \"\\ue1d2\";\n    public const string Ic_fluent_box_toolbox_20_regular = \"\\ue1d3\";\n    public const string Ic_fluent_box_toolbox_24_regular = \"\\ue1d4\";\n    public const string Ic_fluent_braces_16_regular = \"\\uee90\";\n    public const string Ic_fluent_braces_20_regular = \"\\ue1d5\";\n    public const string Ic_fluent_braces_24_regular = \"\\ue1d6\";\n    public const string Ic_fluent_braces_28_regular = \"\\uee91\";\n    public const string Ic_fluent_braces_32_regular = \"\\uee92\";\n    public const string Ic_fluent_braces_48_regular = \"\\uee93\";\n    public const string Ic_fluent_braces_variable_20_regular = \"\\ue1d7\";\n    public const string Ic_fluent_braces_variable_24_regular = \"\\ue1d8\";\n    public const string Ic_fluent_brain_circuit_20_regular = \"\\uf1ee\";\n    public const string Ic_fluent_brain_circuit_24_regular = \"\\uf83b\";\n    public const string Ic_fluent_branch_20_regular = \"\\ue1d9\";\n    public const string Ic_fluent_branch_24_regular = \"\\uf1fb\";\n    public const string Ic_fluent_branch_compare_16_regular = \"\\ue1da\";\n    public const string Ic_fluent_branch_compare_20_regular = \"\\ue1db\";\n    public const string Ic_fluent_branch_compare_24_regular = \"\\ue1dc\";\n    public const string Ic_fluent_branch_fork_16_regular = \"\\ue1dd\";\n    public const string Ic_fluent_branch_fork_20_regular = \"\\ue1de\";\n    public const string Ic_fluent_branch_fork_24_regular = \"\\ue1df\";\n    public const string Ic_fluent_branch_fork_32_regular = \"\\uee94\";\n    public const string Ic_fluent_branch_fork_hint_20_regular = \"\\ue1e0\";\n    public const string Ic_fluent_branch_fork_hint_24_regular = \"\\ue1e1\";\n    public const string Ic_fluent_branch_fork_link_20_regular = \"\\ue1e2\";\n    public const string Ic_fluent_branch_fork_link_24_regular = \"\\ue1e3\";\n    public const string Ic_fluent_branch_request_20_regular = \"\\ue1e4\";\n    public const string Ic_fluent_breakout_room_20_regular = \"\\ue1e5\";\n    public const string Ic_fluent_breakout_room_24_regular = \"\\ue1e6\";\n    public const string Ic_fluent_breakout_room_28_regular = \"\\ue1e7\";\n    public const string Ic_fluent_briefcase_12_regular = \"\\ue1e8\";\n    public const string Ic_fluent_briefcase_16_regular = \"\\ue1e9\";\n    public const string Ic_fluent_briefcase_20_regular = \"\\uf1fc\";\n    public const string Ic_fluent_briefcase_24_regular = \"\\uf1fd\";\n    public const string Ic_fluent_briefcase_28_regular = \"\\ue1ea\";\n    public const string Ic_fluent_briefcase_32_regular = \"\\ue1eb\";\n    public const string Ic_fluent_briefcase_48_regular = \"\\ue1ec\";\n    public const string Ic_fluent_briefcase_medical_16_regular = \"\\ue1ed\";\n    public const string Ic_fluent_briefcase_medical_20_regular = \"\\uf1ef\";\n    public const string Ic_fluent_briefcase_medical_24_regular = \"\\ue1ee\";\n    public const string Ic_fluent_briefcase_medical_32_regular = \"\\ue1ef\";\n    public const string Ic_fluent_briefcase_off_16_regular = \"\\ue1f0\";\n    public const string Ic_fluent_briefcase_off_20_regular = \"\\ue1f1\";\n    public const string Ic_fluent_briefcase_off_24_regular = \"\\ue1f2\";\n    public const string Ic_fluent_briefcase_off_28_regular = \"\\ue1f3\";\n    public const string Ic_fluent_briefcase_off_32_regular = \"\\ue1f4\";\n    public const string Ic_fluent_briefcase_off_48_regular = \"\\ue1f5\";\n    public const string Ic_fluent_brightness_high_16_regular = \"\\ue1f6\";\n    public const string Ic_fluent_brightness_high_20_regular = \"\\ue1f7\";\n    public const string Ic_fluent_brightness_high_24_regular = \"\\ue1f8\";\n    public const string Ic_fluent_brightness_high_28_regular = \"\\ue1f9\";\n    public const string Ic_fluent_brightness_high_32_regular = \"\\ue1fa\";\n    public const string Ic_fluent_brightness_high_48_regular = \"\\ue1fb\";\n    public const string Ic_fluent_brightness_low_16_regular = \"\\ue1fc\";\n    public const string Ic_fluent_brightness_low_20_regular = \"\\ue1fd\";\n    public const string Ic_fluent_brightness_low_24_regular = \"\\ue1fe\";\n    public const string Ic_fluent_brightness_low_28_regular = \"\\ue1ff\";\n    public const string Ic_fluent_brightness_low_32_regular = \"\\ue200\";\n    public const string Ic_fluent_brightness_low_48_regular = \"\\ue201\";\n    public const string Ic_fluent_broad_activity_feed_16_regular = \"\\ue202\";\n    public const string Ic_fluent_broad_activity_feed_20_regular = \"\\ue203\";\n    public const string Ic_fluent_broad_activity_feed_24_regular = \"\\uf200\";\n    public const string Ic_fluent_broom_16_regular = \"\\uf1fe\";\n    public const string Ic_fluent_broom_20_regular = \"\\uf201\";\n    public const string Ic_fluent_broom_24_regular = \"\\uf202\";\n    public const string Ic_fluent_broom_28_regular = \"\\ue204\";\n    public const string Ic_fluent_bug_16_regular = \"\\ue205\";\n    public const string Ic_fluent_bug_20_regular = \"\\ue206\";\n    public const string Ic_fluent_bug_24_regular = \"\\ue207\";\n    public const string Ic_fluent_bug_arrow_counterclockwise_20_regular = \"\\ue208\";\n    public const string Ic_fluent_bug_prohibited_20_regular = \"\\ue209\";\n    public const string Ic_fluent_building_16_regular = \"\\ue20a\";\n    public const string Ic_fluent_building_20_regular = \"\\ue20b\";\n    public const string Ic_fluent_building_24_regular = \"\\uf205\";\n    public const string Ic_fluent_building_bank_16_regular = \"\\ue20c\";\n    public const string Ic_fluent_building_bank_20_regular = \"\\ue20d\";\n    public const string Ic_fluent_building_bank_24_regular = \"\\ue20e\";\n    public const string Ic_fluent_building_bank_28_regular = \"\\ue20f\";\n    public const string Ic_fluent_building_bank_48_regular = \"\\ue210\";\n    public const string Ic_fluent_building_bank_link_16_regular = \"\\ue211\";\n    public const string Ic_fluent_building_bank_link_20_regular = \"\\ue212\";\n    public const string Ic_fluent_building_bank_link_24_regular = \"\\ue213\";\n    public const string Ic_fluent_building_bank_link_28_regular = \"\\ue214\";\n    public const string Ic_fluent_building_bank_link_48_regular = \"\\ue215\";\n    public const string Ic_fluent_building_bank_toolbox_20_regular = \"\\uf1ff\";\n    public const string Ic_fluent_building_bank_toolbox_24_regular = \"\\uf83c\";\n    public const string Ic_fluent_building_factory_16_regular = \"\\ue216\";\n    public const string Ic_fluent_building_factory_20_regular = \"\\ue217\";\n    public const string Ic_fluent_building_factory_24_regular = \"\\ue218\";\n    public const string Ic_fluent_building_factory_28_regular = \"\\ue219\";\n    public const string Ic_fluent_building_factory_32_regular = \"\\ue21a\";\n    public const string Ic_fluent_building_factory_48_regular = \"\\ue21b\";\n    public const string Ic_fluent_building_government_20_regular = \"\\ue21c\";\n    public const string Ic_fluent_building_government_24_regular = \"\\ue21d\";\n    public const string Ic_fluent_building_government_32_regular = \"\\ue21e\";\n    public const string Ic_fluent_building_home_16_regular = \"\\ue21f\";\n    public const string Ic_fluent_building_home_20_regular = \"\\ue220\";\n    public const string Ic_fluent_building_home_24_regular = \"\\ue221\";\n    public const string Ic_fluent_building_lighthouse_20_regular = \"\\ue222\";\n    public const string Ic_fluent_building_multiple_20_regular = \"\\ue223\";\n    public const string Ic_fluent_building_multiple_24_regular = \"\\ue224\";\n    public const string Ic_fluent_building_retail_20_regular = \"\\ue225\";\n    public const string Ic_fluent_building_retail_24_regular = \"\\uf209\";\n    public const string Ic_fluent_building_retail_money_20_regular = \"\\ue226\";\n    public const string Ic_fluent_building_retail_money_24_regular = \"\\ue227\";\n    public const string Ic_fluent_building_retail_more_20_regular = \"\\ue228\";\n    public const string Ic_fluent_building_retail_shield_20_regular = \"\\ue229\";\n    public const string Ic_fluent_building_retail_shield_24_regular = \"\\ue22a\";\n    public const string Ic_fluent_building_retail_toolbox_20_regular = \"\\ue22b\";\n    public const string Ic_fluent_building_retail_toolbox_24_regular = \"\\ue22c\";\n    public const string Ic_fluent_building_shop_16_regular = \"\\ue22d\";\n    public const string Ic_fluent_building_shop_20_regular = \"\\ue22e\";\n    public const string Ic_fluent_building_shop_24_regular = \"\\ue22f\";\n    public const string Ic_fluent_building_skyscraper_16_regular = \"\\ue230\";\n    public const string Ic_fluent_building_skyscraper_20_regular = \"\\ue231\";\n    public const string Ic_fluent_building_skyscraper_24_regular = \"\\ue232\";\n    public const string Ic_fluent_calculator_20_regular = \"\\uf20a\";\n    public const string Ic_fluent_calculator_24_regular = \"\\ue233\";\n    public const string Ic_fluent_calculator_arrow_clockwise_20_regular = \"\\ue234\";\n    public const string Ic_fluent_calculator_arrow_clockwise_24_regular = \"\\ue235\";\n    public const string Ic_fluent_calculator_multiple_20_regular = \"\\ue236\";\n    public const string Ic_fluent_calculator_multiple_24_regular = \"\\ue237\";\n    public const string Ic_fluent_calendar_3_day_16_regular = \"\\ue238\";\n    public const string Ic_fluent_calendar_3_day_20_regular = \"\\uf20e\";\n    public const string Ic_fluent_calendar_3_day_24_regular = \"\\uf20f\";\n    public const string Ic_fluent_calendar_3_day_28_regular = \"\\uf210\";\n    public const string Ic_fluent_calendar_add_16_regular = \"\\ue239\";\n    public const string Ic_fluent_calendar_add_20_regular = \"\\uf211\";\n    public const string Ic_fluent_calendar_add_24_regular = \"\\uf212\";\n    public const string Ic_fluent_calendar_add_28_regular = \"\\ue23a\";\n    public const string Ic_fluent_calendar_agenda_20_regular = \"\\uf213\";\n    public const string Ic_fluent_calendar_agenda_24_regular = \"\\uf214\";\n    public const string Ic_fluent_calendar_agenda_28_regular = \"\\uf215\";\n    public const string Ic_fluent_calendar_arrow_down_20_regular = \"\\ue23b\";\n    public const string Ic_fluent_calendar_arrow_down_24_regular = \"\\ue23c\";\n    public const string Ic_fluent_calendar_arrow_right_16_regular = \"\\ue23d\";\n    public const string Ic_fluent_calendar_arrow_right_20_regular = \"\\uf216\";\n    public const string Ic_fluent_calendar_arrow_right_24_regular = \"\\ue23e\";\n    public const string Ic_fluent_calendar_assistant_16_regular = \"\\ue23f\";\n    public const string Ic_fluent_calendar_assistant_20_regular = \"\\uf217\";\n    public const string Ic_fluent_calendar_assistant_24_regular = \"\\uf218\";\n    public const string Ic_fluent_calendar_cancel_16_regular = \"\\ue240\";\n    public const string Ic_fluent_calendar_cancel_20_regular = \"\\uf219\";\n    public const string Ic_fluent_calendar_cancel_24_regular = \"\\uf21a\";\n    public const string Ic_fluent_calendar_chat_20_regular = \"\\ue241\";\n    public const string Ic_fluent_calendar_chat_24_regular = \"\\ue242\";\n    public const string Ic_fluent_calendar_checkmark_16_regular = \"\\uf21b\";\n    public const string Ic_fluent_calendar_checkmark_20_regular = \"\\uf21c\";\n    public const string Ic_fluent_calendar_checkmark_24_regular = \"\\uf8c9\";\n    public const string Ic_fluent_calendar_checkmark_28_regular = \"\\uf85f\";\n    public const string Ic_fluent_calendar_clock_16_regular = \"\\ue243\";\n    public const string Ic_fluent_calendar_clock_20_regular = \"\\uf21d\";\n    public const string Ic_fluent_calendar_clock_24_regular = \"\\uf21e\";\n    public const string Ic_fluent_calendar_data_bar_16_regular = \"\\uee95\";\n    public const string Ic_fluent_calendar_data_bar_20_regular = \"\\uee96\";\n    public const string Ic_fluent_calendar_data_bar_24_regular = \"\\uee97\";\n    public const string Ic_fluent_calendar_data_bar_28_regular = \"\\uee98\";\n    public const string Ic_fluent_calendar_day_16_regular = \"\\ue244\";\n    public const string Ic_fluent_calendar_day_20_regular = \"\\uf222\";\n    public const string Ic_fluent_calendar_day_24_regular = \"\\uf223\";\n    public const string Ic_fluent_calendar_day_28_regular = \"\\uf224\";\n    public const string Ic_fluent_calendar_edit_16_regular = \"\\ue245\";\n    public const string Ic_fluent_calendar_edit_20_regular = \"\\ue246\";\n    public const string Ic_fluent_calendar_edit_24_regular = \"\\ue247\";\n    public const string Ic_fluent_calendar_empty_16_regular = \"\\uf225\";\n    public const string Ic_fluent_calendar_empty_20_regular = \"\\uf226\";\n    public const string Ic_fluent_calendar_empty_24_regular = \"\\uf227\";\n    public const string Ic_fluent_calendar_empty_28_regular = \"\\uf228\";\n    public const string Ic_fluent_calendar_empty_32_regular = \"\\ue248\";\n    public const string Ic_fluent_calendar_error_20_regular = \"\\ue249\";\n    public const string Ic_fluent_calendar_error_24_regular = \"\\ue24a\";\n    public const string Ic_fluent_calendar_info_16_regular = \"\\uf203\";\n    public const string Ic_fluent_calendar_info_20_regular = \"\\ue24b\";\n    public const string Ic_fluent_calendar_ltr_12_regular = \"\\ue24c\";\n    public const string Ic_fluent_calendar_ltr_16_regular = \"\\ue24d\";\n    public const string Ic_fluent_calendar_ltr_20_regular = \"\\ue24e\";\n    public const string Ic_fluent_calendar_ltr_24_regular = \"\\ue24f\";\n    public const string Ic_fluent_calendar_ltr_28_regular = \"\\ue250\";\n    public const string Ic_fluent_calendar_ltr_32_regular = \"\\ue251\";\n    public const string Ic_fluent_calendar_ltr_48_regular = \"\\ue252\";\n    public const string Ic_fluent_calendar_mail_16_regular = \"\\ue253\";\n    public const string Ic_fluent_calendar_mail_20_regular = \"\\ue254\";\n    public const string Ic_fluent_calendar_mention_20_regular = \"\\ue255\";\n    public const string Ic_fluent_calendar_month_20_regular = \"\\uf22a\";\n    public const string Ic_fluent_calendar_month_24_regular = \"\\uf22b\";\n    public const string Ic_fluent_calendar_month_28_regular = \"\\uf22c\";\n    public const string Ic_fluent_calendar_multiple_16_regular = \"\\uf204\";\n    public const string Ic_fluent_calendar_multiple_20_regular = \"\\uf22d\";\n    public const string Ic_fluent_calendar_multiple_24_regular = \"\\uf22e\";\n    public const string Ic_fluent_calendar_multiple_28_regular = \"\\ue256\";\n    public const string Ic_fluent_calendar_multiple_32_regular = \"\\ue257\";\n    public const string Ic_fluent_calendar_pattern_16_regular = \"\\ue258\";\n    public const string Ic_fluent_calendar_pattern_20_regular = \"\\ue259\";\n    public const string Ic_fluent_calendar_person_16_regular = \"\\ue25a\";\n    public const string Ic_fluent_calendar_person_20_regular = \"\\uf230\";\n    public const string Ic_fluent_calendar_person_24_regular = \"\\ue25b\";\n    public const string Ic_fluent_calendar_phone_16_regular = \"\\ue25c\";\n    public const string Ic_fluent_calendar_phone_20_regular = \"\\ue25d\";\n    public const string Ic_fluent_calendar_question_mark_16_regular = \"\\ue25e\";\n    public const string Ic_fluent_calendar_question_mark_20_regular = \"\\ue25f\";\n    public const string Ic_fluent_calendar_question_mark_24_regular = \"\\ue260\";\n    public const string Ic_fluent_calendar_reply_16_regular = \"\\uf231\";\n    public const string Ic_fluent_calendar_reply_20_regular = \"\\uf232\";\n    public const string Ic_fluent_calendar_reply_24_regular = \"\\uf233\";\n    public const string Ic_fluent_calendar_reply_28_regular = \"\\uf234\";\n    public const string Ic_fluent_calendar_rtl_12_regular = \"\\ue261\";\n    public const string Ic_fluent_calendar_rtl_16_regular = \"\\ue262\";\n    public const string Ic_fluent_calendar_rtl_20_regular = \"\\ue263\";\n    public const string Ic_fluent_calendar_rtl_24_regular = \"\\ue264\";\n    public const string Ic_fluent_calendar_rtl_28_regular = \"\\ue265\";\n    public const string Ic_fluent_calendar_rtl_32_regular = \"\\ue266\";\n    public const string Ic_fluent_calendar_rtl_48_regular = \"\\ue267\";\n    public const string Ic_fluent_calendar_search_16_regular = \"\\uf860\";\n    public const string Ic_fluent_calendar_search_20_regular = \"\\ue268\";\n    public const string Ic_fluent_calendar_settings_16_regular = \"\\ue269\";\n    public const string Ic_fluent_calendar_settings_20_regular = \"\\uf235\";\n    public const string Ic_fluent_calendar_star_16_regular = \"\\ue26a\";\n    public const string Ic_fluent_calendar_star_20_regular = \"\\uf236\";\n    public const string Ic_fluent_calendar_star_24_regular = \"\\uf237\";\n    public const string Ic_fluent_calendar_sync_16_regular = \"\\uf238\";\n    public const string Ic_fluent_calendar_sync_20_regular = \"\\uf239\";\n    public const string Ic_fluent_calendar_sync_24_regular = \"\\uf23a\";\n    public const string Ic_fluent_calendar_today_16_regular = \"\\uf23b\";\n    public const string Ic_fluent_calendar_today_20_regular = \"\\uf23c\";\n    public const string Ic_fluent_calendar_today_24_regular = \"\\uf23d\";\n    public const string Ic_fluent_calendar_today_28_regular = \"\\uf23e\";\n    public const string Ic_fluent_calendar_toolbox_20_regular = \"\\ue26b\";\n    public const string Ic_fluent_calendar_toolbox_24_regular = \"\\ue26c\";\n    public const string Ic_fluent_calendar_week_numbers_20_regular = \"\\ue26d\";\n    public const string Ic_fluent_calendar_week_numbers_24_regular = \"\\uf23f\";\n    public const string Ic_fluent_calendar_week_start_20_regular = \"\\uf240\";\n    public const string Ic_fluent_calendar_week_start_24_regular = \"\\uf241\";\n    public const string Ic_fluent_calendar_week_start_28_regular = \"\\uf242\";\n    public const string Ic_fluent_calendar_work_week_16_regular = \"\\uf243\";\n    public const string Ic_fluent_calendar_work_week_20_regular = \"\\uf244\";\n    public const string Ic_fluent_calendar_work_week_24_regular = \"\\uf245\";\n    public const string Ic_fluent_calendar_work_week_28_regular = \"\\ue26e\";\n    public const string Ic_fluent_call_16_regular = \"\\ue26f\";\n    public const string Ic_fluent_call_20_regular = \"\\ue270\";\n    public const string Ic_fluent_call_24_regular = \"\\ue271\";\n    public const string Ic_fluent_call_28_regular = \"\\ue272\";\n    public const string Ic_fluent_call_32_regular = \"\\ue273\";\n    public const string Ic_fluent_call_48_regular = \"\\ue274\";\n    public const string Ic_fluent_call_add_16_regular = \"\\ue275\";\n    public const string Ic_fluent_call_add_20_regular = \"\\ue276\";\n    public const string Ic_fluent_call_add_24_regular = \"\\uf246\";\n    public const string Ic_fluent_call_checkmark_20_regular = \"\\uf207\";\n    public const string Ic_fluent_call_checkmark_24_regular = \"\\ue277\";\n    public const string Ic_fluent_call_connecting_20_regular = \"\\ue278\";\n    public const string Ic_fluent_call_dismiss_16_regular = \"\\ue279\";\n    public const string Ic_fluent_call_dismiss_20_regular = \"\\uf208\";\n    public const string Ic_fluent_call_dismiss_24_regular = \"\\uf20b\";\n    public const string Ic_fluent_call_end_16_regular = \"\\ue27a\";\n    public const string Ic_fluent_call_end_20_regular = \"\\uf247\";\n    public const string Ic_fluent_call_end_24_regular = \"\\uf248\";\n    public const string Ic_fluent_call_end_28_regular = \"\\uf249\";\n    public const string Ic_fluent_call_exclamation_20_regular = \"\\ue27b\";\n    public const string Ic_fluent_call_forward_16_regular = \"\\ue27c\";\n    public const string Ic_fluent_call_forward_20_regular = \"\\ue27d\";\n    public const string Ic_fluent_call_forward_24_regular = \"\\uf24a\";\n    public const string Ic_fluent_call_forward_28_regular = \"\\ue27e\";\n    public const string Ic_fluent_call_forward_48_regular = \"\\ue27f\";\n    public const string Ic_fluent_call_inbound_16_regular = \"\\uf24b\";\n    public const string Ic_fluent_call_inbound_20_regular = \"\\ue280\";\n    public const string Ic_fluent_call_inbound_24_regular = \"\\uf24c\";\n    public const string Ic_fluent_call_inbound_28_regular = \"\\ue281\";\n    public const string Ic_fluent_call_inbound_48_regular = \"\\ue282\";\n    public const string Ic_fluent_call_missed_16_regular = \"\\uf24d\";\n    public const string Ic_fluent_call_missed_20_regular = \"\\ue283\";\n    public const string Ic_fluent_call_missed_24_regular = \"\\uf24e\";\n    public const string Ic_fluent_call_missed_28_regular = \"\\ue284\";\n    public const string Ic_fluent_call_missed_48_regular = \"\\ue285\";\n    public const string Ic_fluent_call_outbound_16_regular = \"\\uf24f\";\n    public const string Ic_fluent_call_outbound_20_regular = \"\\ue286\";\n    public const string Ic_fluent_call_outbound_24_regular = \"\\uf250\";\n    public const string Ic_fluent_call_outbound_28_regular = \"\\ue287\";\n    public const string Ic_fluent_call_outbound_48_regular = \"\\ue288\";\n    public const string Ic_fluent_call_park_16_regular = \"\\ue289\";\n    public const string Ic_fluent_call_park_20_regular = \"\\ue28a\";\n    public const string Ic_fluent_call_park_24_regular = \"\\uf251\";\n    public const string Ic_fluent_call_park_28_regular = \"\\ue28b\";\n    public const string Ic_fluent_call_park_32_regular = \"\\uf861\";\n    public const string Ic_fluent_call_park_48_regular = \"\\ue28c\";\n    public const string Ic_fluent_call_pause_20_regular = \"\\uf20c\";\n    public const string Ic_fluent_call_pause_24_regular = \"\\uf20d\";\n    public const string Ic_fluent_call_prohibited_16_regular = \"\\ue28d\";\n    public const string Ic_fluent_call_prohibited_20_regular = \"\\ue28e\";\n    public const string Ic_fluent_call_prohibited_24_regular = \"\\ue28f\";\n    public const string Ic_fluent_call_prohibited_28_regular = \"\\ue290\";\n    public const string Ic_fluent_call_prohibited_48_regular = \"\\ue291\";\n    public const string Ic_fluent_call_transfer_16_regular = \"\\ue292\";\n    public const string Ic_fluent_call_transfer_20_regular = \"\\ue293\";\n    public const string Ic_fluent_call_warning_16_regular = \"\\ue294\";\n    public const string Ic_fluent_call_warning_20_regular = \"\\ue295\";\n    public const string Ic_fluent_calligraphy_pen_20_regular = \"\\uf252\";\n    public const string Ic_fluent_calligraphy_pen_24_regular = \"\\uf253\";\n    public const string Ic_fluent_calligraphy_pen_checkmark_20_regular = \"\\ue296\";\n    public const string Ic_fluent_calligraphy_pen_error_20_regular = \"\\ue297\";\n    public const string Ic_fluent_calligraphy_pen_question_mark_20_regular = \"\\ue298\";\n    public const string Ic_fluent_camera_16_regular = \"\\ue299\";\n    public const string Ic_fluent_camera_20_regular = \"\\uf254\";\n    public const string Ic_fluent_camera_24_regular = \"\\uf255\";\n    public const string Ic_fluent_camera_28_regular = \"\\uf256\";\n    public const string Ic_fluent_camera_add_20_regular = \"\\uf257\";\n    public const string Ic_fluent_camera_add_24_regular = \"\\uf258\";\n    public const string Ic_fluent_camera_add_48_regular = \"\\uf259\";\n    public const string Ic_fluent_camera_dome_16_regular = \"\\ue29a\";\n    public const string Ic_fluent_camera_dome_20_regular = \"\\ue29b\";\n    public const string Ic_fluent_camera_dome_24_regular = \"\\ue29c\";\n    public const string Ic_fluent_camera_dome_28_regular = \"\\ue29d\";\n    public const string Ic_fluent_camera_dome_48_regular = \"\\ue29e\";\n    public const string Ic_fluent_camera_edit_20_regular = \"\\ue29f\";\n    public const string Ic_fluent_camera_off_20_regular = \"\\ue2a0\";\n    public const string Ic_fluent_camera_off_24_regular = \"\\ue2a1\";\n    public const string Ic_fluent_camera_switch_20_regular = \"\\ue2a2\";\n    public const string Ic_fluent_camera_switch_24_regular = \"\\uf25a\";\n    public const string Ic_fluent_caret_down_12_regular = \"\\uf25f\";\n    public const string Ic_fluent_caret_down_16_regular = \"\\uf260\";\n    public const string Ic_fluent_caret_down_20_regular = \"\\uf261\";\n    public const string Ic_fluent_caret_down_24_regular = \"\\uf262\";\n    public const string Ic_fluent_caret_down_right_12_regular = \"\\ue2a3\";\n    public const string Ic_fluent_caret_down_right_16_regular = \"\\ue2a4\";\n    public const string Ic_fluent_caret_down_right_20_regular = \"\\ue2a5\";\n    public const string Ic_fluent_caret_down_right_24_regular = \"\\ue2a6\";\n    public const string Ic_fluent_caret_left_12_regular = \"\\uf263\";\n    public const string Ic_fluent_caret_left_16_regular = \"\\uf264\";\n    public const string Ic_fluent_caret_left_20_regular = \"\\uf265\";\n    public const string Ic_fluent_caret_left_24_regular = \"\\uf266\";\n    public const string Ic_fluent_caret_right_12_regular = \"\\uf267\";\n    public const string Ic_fluent_caret_right_16_regular = \"\\uf268\";\n    public const string Ic_fluent_caret_right_20_regular = \"\\uf269\";\n    public const string Ic_fluent_caret_right_24_regular = \"\\uf26a\";\n    public const string Ic_fluent_caret_up_12_regular = \"\\ue2a7\";\n    public const string Ic_fluent_caret_up_16_regular = \"\\ue2a8\";\n    public const string Ic_fluent_caret_up_20_regular = \"\\ue2a9\";\n    public const string Ic_fluent_caret_up_24_regular = \"\\ue2aa\";\n    public const string Ic_fluent_cart_16_regular = \"\\ue2ab\";\n    public const string Ic_fluent_cart_20_regular = \"\\ue2ac\";\n    public const string Ic_fluent_cart_24_regular = \"\\uf26b\";\n    public const string Ic_fluent_cast_20_regular = \"\\uf26c\";\n    public const string Ic_fluent_cast_24_regular = \"\\uf26d\";\n    public const string Ic_fluent_cast_28_regular = \"\\uf26e\";\n    public const string Ic_fluent_catch_up_16_regular = \"\\ue2ad\";\n    public const string Ic_fluent_catch_up_20_regular = \"\\ue2ae\";\n    public const string Ic_fluent_catch_up_24_regular = \"\\ue2af\";\n    public const string Ic_fluent_cellular_3g_20_regular = \"\\ue2b0\";\n    public const string Ic_fluent_cellular_3g_24_regular = \"\\uf26f\";\n    public const string Ic_fluent_cellular_4g_20_regular = \"\\ue2b1\";\n    public const string Ic_fluent_cellular_4g_24_regular = \"\\uf270\";\n    public const string Ic_fluent_cellular_5g_20_regular = \"\\ue2b2\";\n    public const string Ic_fluent_cellular_5g_24_regular = \"\\ue2b3\";\n    public const string Ic_fluent_cellular_data_1_20_regular = \"\\uf271\";\n    public const string Ic_fluent_cellular_data_1_24_regular = \"\\uf272\";\n    public const string Ic_fluent_cellular_data_2_20_regular = \"\\uf273\";\n    public const string Ic_fluent_cellular_data_2_24_regular = \"\\uf274\";\n    public const string Ic_fluent_cellular_data_3_20_regular = \"\\uf275\";\n    public const string Ic_fluent_cellular_data_3_24_regular = \"\\uf276\";\n    public const string Ic_fluent_cellular_data_4_20_regular = \"\\uf277\";\n    public const string Ic_fluent_cellular_data_4_24_regular = \"\\uf278\";\n    public const string Ic_fluent_cellular_data_5_20_regular = \"\\uf279\";\n    public const string Ic_fluent_cellular_data_5_24_regular = \"\\uf27a\";\n    public const string Ic_fluent_cellular_off_20_regular = \"\\ue2b4\";\n    public const string Ic_fluent_cellular_off_24_regular = \"\\ue2b5\";\n    public const string Ic_fluent_cellular_warning_20_regular = \"\\ue2b6\";\n    public const string Ic_fluent_cellular_warning_24_regular = \"\\ue2b7\";\n    public const string Ic_fluent_center_horizontal_20_regular = \"\\ue2b8\";\n    public const string Ic_fluent_center_horizontal_24_regular = \"\\ue2b9\";\n    public const string Ic_fluent_center_vertical_20_regular = \"\\ue2ba\";\n    public const string Ic_fluent_center_vertical_24_regular = \"\\ue2bb\";\n    public const string Ic_fluent_certificate_20_regular = \"\\uf27e\";\n    public const string Ic_fluent_certificate_24_regular = \"\\uf27f\";\n    public const string Ic_fluent_channel_16_regular = \"\\uf280\";\n    public const string Ic_fluent_channel_20_regular = \"\\uf281\";\n    public const string Ic_fluent_channel_24_regular = \"\\uf282\";\n    public const string Ic_fluent_channel_28_regular = \"\\ue2bc\";\n    public const string Ic_fluent_channel_48_regular = \"\\ue2bd\";\n    public const string Ic_fluent_channel_add_16_regular = \"\\ue2be\";\n    public const string Ic_fluent_channel_add_20_regular = \"\\ue2bf\";\n    public const string Ic_fluent_channel_add_24_regular = \"\\ue2c0\";\n    public const string Ic_fluent_channel_add_28_regular = \"\\ue2c1\";\n    public const string Ic_fluent_channel_add_48_regular = \"\\ue2c2\";\n    public const string Ic_fluent_channel_alert_16_regular = \"\\ue2c3\";\n    public const string Ic_fluent_channel_alert_20_regular = \"\\ue2c4\";\n    public const string Ic_fluent_channel_alert_24_regular = \"\\ue2c5\";\n    public const string Ic_fluent_channel_alert_28_regular = \"\\ue2c6\";\n    public const string Ic_fluent_channel_alert_48_regular = \"\\ue2c7\";\n    public const string Ic_fluent_channel_arrow_left_16_regular = \"\\ue2c8\";\n    public const string Ic_fluent_channel_arrow_left_20_regular = \"\\ue2c9\";\n    public const string Ic_fluent_channel_arrow_left_24_regular = \"\\ue2ca\";\n    public const string Ic_fluent_channel_arrow_left_28_regular = \"\\ue2cb\";\n    public const string Ic_fluent_channel_arrow_left_48_regular = \"\\ue2cc\";\n    public const string Ic_fluent_channel_dismiss_16_regular = \"\\ue2cd\";\n    public const string Ic_fluent_channel_dismiss_20_regular = \"\\ue2ce\";\n    public const string Ic_fluent_channel_dismiss_24_regular = \"\\ue2cf\";\n    public const string Ic_fluent_channel_dismiss_28_regular = \"\\ue2d0\";\n    public const string Ic_fluent_channel_dismiss_48_regular = \"\\ue2d1\";\n    public const string Ic_fluent_channel_share_12_regular = \"\\ue2d2\";\n    public const string Ic_fluent_channel_share_16_regular = \"\\ue2d3\";\n    public const string Ic_fluent_channel_share_20_regular = \"\\ue2d4\";\n    public const string Ic_fluent_channel_share_24_regular = \"\\ue2d5\";\n    public const string Ic_fluent_channel_share_28_regular = \"\\ue2d6\";\n    public const string Ic_fluent_channel_share_48_regular = \"\\ue2d7\";\n    public const string Ic_fluent_channel_subtract_16_regular = \"\\ue2d8\";\n    public const string Ic_fluent_channel_subtract_20_regular = \"\\ue2d9\";\n    public const string Ic_fluent_channel_subtract_24_regular = \"\\ue2da\";\n    public const string Ic_fluent_channel_subtract_28_regular = \"\\ue2db\";\n    public const string Ic_fluent_channel_subtract_48_regular = \"\\ue2dc\";\n    public const string Ic_fluent_chart_multiple_20_regular = \"\\ue2dd\";\n    public const string Ic_fluent_chart_multiple_24_regular = \"\\ue2de\";\n    public const string Ic_fluent_chart_person_20_regular = \"\\ue2df\";\n    public const string Ic_fluent_chart_person_24_regular = \"\\ue2e0\";\n    public const string Ic_fluent_chart_person_28_regular = \"\\ue2e1\";\n    public const string Ic_fluent_chart_person_48_regular = \"\\ue2e2\";\n    public const string Ic_fluent_chat_12_regular = \"\\ue2e3\";\n    public const string Ic_fluent_chat_16_regular = \"\\ue2e4\";\n    public const string Ic_fluent_chat_20_regular = \"\\uf286\";\n    public const string Ic_fluent_chat_24_regular = \"\\uf287\";\n    public const string Ic_fluent_chat_28_regular = \"\\uf288\";\n    public const string Ic_fluent_chat_32_regular = \"\\ue2e5\";\n    public const string Ic_fluent_chat_48_regular = \"\\ue2e6\";\n    public const string Ic_fluent_chat_arrow_back_16_regular = \"\\ue2e7\";\n    public const string Ic_fluent_chat_arrow_back_20_regular = \"\\ue2e8\";\n    public const string Ic_fluent_chat_arrow_double_back_16_regular = \"\\ue2e9\";\n    public const string Ic_fluent_chat_arrow_double_back_20_regular = \"\\ue2ea\";\n    public const string Ic_fluent_chat_bubbles_question_16_regular = \"\\uf8a8\";\n    public const string Ic_fluent_chat_bubbles_question_20_regular = \"\\ue2eb\";\n    public const string Ic_fluent_chat_bubbles_question_24_regular = \"\\uf289\";\n    public const string Ic_fluent_chat_dismiss_16_regular = \"\\ue2ec\";\n    public const string Ic_fluent_chat_dismiss_20_regular = \"\\ue2ed\";\n    public const string Ic_fluent_chat_dismiss_24_regular = \"\\ue2ee\";\n    public const string Ic_fluent_chat_help_20_regular = \"\\uf220\";\n    public const string Ic_fluent_chat_help_24_regular = \"\\uf28a\";\n    public const string Ic_fluent_chat_mail_20_regular = \"\\ue2ef\";\n    public const string Ic_fluent_chat_multiple_16_regular = \"\\uf8a9\";\n    public const string Ic_fluent_chat_multiple_20_regular = \"\\uf8c8\";\n    public const string Ic_fluent_chat_multiple_24_regular = \"\\uf8d3\";\n    public const string Ic_fluent_chat_off_20_regular = \"\\ue2f0\";\n    public const string Ic_fluent_chat_off_24_regular = \"\\uf28b\";\n    public const string Ic_fluent_chat_settings_20_regular = \"\\uf221\";\n    public const string Ic_fluent_chat_settings_24_regular = \"\\uf229\";\n    public const string Ic_fluent_chat_video_20_regular = \"\\ue2f1\";\n    public const string Ic_fluent_chat_video_24_regular = \"\\ue2f2\";\n    public const string Ic_fluent_chat_warning_16_regular = \"\\ue2f3\";\n    public const string Ic_fluent_chat_warning_20_regular = \"\\ue2f4\";\n    public const string Ic_fluent_chat_warning_24_regular = \"\\uf28c\";\n    public const string Ic_fluent_check_20_regular = \"\\uf27b\";\n    public const string Ic_fluent_check_24_regular = \"\\ue2f5\";\n    public const string Ic_fluent_checkbox_1_20_regular = \"\\ue2f6\";\n    public const string Ic_fluent_checkbox_1_24_regular = \"\\ue2f7\";\n    public const string Ic_fluent_checkbox_2_20_regular = \"\\ue2f8\";\n    public const string Ic_fluent_checkbox_2_24_regular = \"\\ue2f9\";\n    public const string Ic_fluent_checkbox_arrow_right_20_regular = \"\\ue2fa\";\n    public const string Ic_fluent_checkbox_arrow_right_24_regular = \"\\ue2fb\";\n    public const string Ic_fluent_checkbox_checked_16_regular = \"\\uf27c\";\n    public const string Ic_fluent_checkbox_checked_20_regular = \"\\uf28d\";\n    public const string Ic_fluent_checkbox_checked_24_regular = \"\\uf28e\";\n    public const string Ic_fluent_checkbox_checked_sync_16_regular = \"\\uf27d\";\n    public const string Ic_fluent_checkbox_checked_sync_20_regular = \"\\ue2fc\";\n    public const string Ic_fluent_checkbox_indeterminate_16_regular = \"\\ue2fd\";\n    public const string Ic_fluent_checkbox_indeterminate_20_regular = \"\\ue2fe\";\n    public const string Ic_fluent_checkbox_indeterminate_24_regular = \"\\ue2ff\";\n    public const string Ic_fluent_checkbox_person_16_regular = \"\\ue300\";\n    public const string Ic_fluent_checkbox_person_20_regular = \"\\ue301\";\n    public const string Ic_fluent_checkbox_person_24_regular = \"\\ue302\";\n    public const string Ic_fluent_checkbox_unchecked_12_regular = \"\\ueb73\";\n    public const string Ic_fluent_checkbox_unchecked_16_regular = \"\\ueb74\";\n    public const string Ic_fluent_checkbox_unchecked_24_regular = \"\\ueb76\";\n    public const string Ic_fluent_checkbox_warning_20_regular = \"\\ue303\";\n    public const string Ic_fluent_checkbox_warning_24_regular = \"\\ue304\";\n    public const string Ic_fluent_checkmark_12_regular = \"\\uf293\";\n    public const string Ic_fluent_checkmark_16_regular = \"\\ue305\";\n    public const string Ic_fluent_checkmark_20_regular = \"\\uf294\";\n    public const string Ic_fluent_checkmark_24_regular = \"\\uf295\";\n    public const string Ic_fluent_checkmark_28_regular = \"\\uf296\";\n    public const string Ic_fluent_checkmark_32_regular = \"\\uf8d4\";\n    public const string Ic_fluent_checkmark_48_regular = \"\\ue306\";\n    public const string Ic_fluent_checkmark_circle_12_regular = \"\\ue307\";\n    public const string Ic_fluent_checkmark_circle_16_regular = \"\\uf297\";\n    public const string Ic_fluent_checkmark_circle_20_regular = \"\\uf298\";\n    public const string Ic_fluent_checkmark_circle_24_regular = \"\\uf299\";\n    public const string Ic_fluent_checkmark_circle_32_regular = \"\\uf8e8\";\n    public const string Ic_fluent_checkmark_circle_48_regular = \"\\uf29a\";\n    public const string Ic_fluent_checkmark_lock_16_regular = \"\\uf29b\";\n    public const string Ic_fluent_checkmark_lock_20_regular = \"\\uf29c\";\n    public const string Ic_fluent_checkmark_lock_24_regular = \"\\uf29d\";\n    public const string Ic_fluent_checkmark_note_20_regular = \"\\ue308\";\n    public const string Ic_fluent_checkmark_square_20_regular = \"\\ue309\";\n    public const string Ic_fluent_checkmark_square_24_regular = \"\\uf29e\";\n    public const string Ic_fluent_checkmark_starburst_16_regular = \"\\uf283\";\n    public const string Ic_fluent_checkmark_starburst_20_regular = \"\\ue30a\";\n    public const string Ic_fluent_checkmark_starburst_24_regular = \"\\ue30b\";\n    public const string Ic_fluent_checkmark_underline_circle_16_regular = \"\\uf29f\";\n    public const string Ic_fluent_checkmark_underline_circle_20_regular = \"\\uf2a0\";\n    public const string Ic_fluent_chess_20_regular = \"\\ue30c\";\n    public const string Ic_fluent_chevron_circle_down_12_regular = \"\\ue30d\";\n    public const string Ic_fluent_chevron_circle_down_16_regular = \"\\ue30e\";\n    public const string Ic_fluent_chevron_circle_down_20_regular = \"\\ue30f\";\n    public const string Ic_fluent_chevron_circle_down_24_regular = \"\\ue310\";\n    public const string Ic_fluent_chevron_circle_down_28_regular = \"\\ue311\";\n    public const string Ic_fluent_chevron_circle_down_32_regular = \"\\ue312\";\n    public const string Ic_fluent_chevron_circle_down_48_regular = \"\\ue313\";\n    public const string Ic_fluent_chevron_circle_left_12_regular = \"\\ue314\";\n    public const string Ic_fluent_chevron_circle_left_16_regular = \"\\ue315\";\n    public const string Ic_fluent_chevron_circle_left_20_regular = \"\\ue316\";\n    public const string Ic_fluent_chevron_circle_left_24_regular = \"\\ue317\";\n    public const string Ic_fluent_chevron_circle_left_28_regular = \"\\ue318\";\n    public const string Ic_fluent_chevron_circle_left_32_regular = \"\\ue319\";\n    public const string Ic_fluent_chevron_circle_left_48_regular = \"\\ue31a\";\n    public const string Ic_fluent_chevron_circle_right_12_regular = \"\\ue31b\";\n    public const string Ic_fluent_chevron_circle_right_16_regular = \"\\ue31c\";\n    public const string Ic_fluent_chevron_circle_right_20_regular = \"\\ue31d\";\n    public const string Ic_fluent_chevron_circle_right_24_regular = \"\\ue31e\";\n    public const string Ic_fluent_chevron_circle_right_28_regular = \"\\ue31f\";\n    public const string Ic_fluent_chevron_circle_right_32_regular = \"\\ue320\";\n    public const string Ic_fluent_chevron_circle_right_48_regular = \"\\ue321\";\n    public const string Ic_fluent_chevron_circle_up_12_regular = \"\\ue322\";\n    public const string Ic_fluent_chevron_circle_up_16_regular = \"\\ue323\";\n    public const string Ic_fluent_chevron_circle_up_20_regular = \"\\ue324\";\n    public const string Ic_fluent_chevron_circle_up_24_regular = \"\\ue325\";\n    public const string Ic_fluent_chevron_circle_up_28_regular = \"\\ue326\";\n    public const string Ic_fluent_chevron_circle_up_32_regular = \"\\ue327\";\n    public const string Ic_fluent_chevron_circle_up_48_regular = \"\\ue328\";\n    public const string Ic_fluent_chevron_double_down_16_regular = \"\\uf284\";\n    public const string Ic_fluent_chevron_double_down_20_regular = \"\\ue329\";\n    public const string Ic_fluent_chevron_double_left_16_regular = \"\\uf285\";\n    public const string Ic_fluent_chevron_double_left_20_regular = \"\\ue32a\";\n    public const string Ic_fluent_chevron_double_right_16_regular = \"\\uf2a7\";\n    public const string Ic_fluent_chevron_double_right_20_regular = \"\\ue32b\";\n    public const string Ic_fluent_chevron_double_up_16_regular = \"\\ue32c\";\n    public const string Ic_fluent_chevron_double_up_20_regular = \"\\ue32d\";\n    public const string Ic_fluent_chevron_down_12_regular = \"\\uf2a1\";\n    public const string Ic_fluent_chevron_down_16_regular = \"\\uf2a2\";\n    public const string Ic_fluent_chevron_down_20_regular = \"\\uf2a3\";\n    public const string Ic_fluent_chevron_down_24_regular = \"\\uf2a4\";\n    public const string Ic_fluent_chevron_down_28_regular = \"\\uf2a5\";\n    public const string Ic_fluent_chevron_down_48_regular = \"\\uf2a6\";\n    public const string Ic_fluent_chevron_left_12_regular = \"\\uf2a8\";\n    public const string Ic_fluent_chevron_left_16_regular = \"\\uf2a9\";\n    public const string Ic_fluent_chevron_left_20_regular = \"\\uf2aa\";\n    public const string Ic_fluent_chevron_left_24_regular = \"\\uf2ab\";\n    public const string Ic_fluent_chevron_left_28_regular = \"\\uf2ac\";\n    public const string Ic_fluent_chevron_left_48_regular = \"\\uf2ad\";\n    public const string Ic_fluent_chevron_right_12_regular = \"\\uf2ae\";\n    public const string Ic_fluent_chevron_right_16_regular = \"\\uf2af\";\n    public const string Ic_fluent_chevron_right_20_regular = \"\\uf2b0\";\n    public const string Ic_fluent_chevron_right_24_regular = \"\\uf2b1\";\n    public const string Ic_fluent_chevron_right_28_regular = \"\\uf2b2\";\n    public const string Ic_fluent_chevron_right_48_regular = \"\\uf2b3\";\n    public const string Ic_fluent_chevron_up_12_regular = \"\\uf2b4\";\n    public const string Ic_fluent_chevron_up_16_regular = \"\\uf2b5\";\n    public const string Ic_fluent_chevron_up_20_regular = \"\\uf2b6\";\n    public const string Ic_fluent_chevron_up_24_regular = \"\\uf2b7\";\n    public const string Ic_fluent_chevron_up_28_regular = \"\\uf2b8\";\n    public const string Ic_fluent_chevron_up_48_regular = \"\\uf2b9\";\n    public const string Ic_fluent_chevron_up_down_16_regular = \"\\ue32e\";\n    public const string Ic_fluent_chevron_up_down_20_regular = \"\\ue32f\";\n    public const string Ic_fluent_chevron_up_down_24_regular = \"\\ue330\";\n    public const string Ic_fluent_circle_12_regular = \"\\ue331\";\n    public const string Ic_fluent_circle_16_regular = \"\\uf2ba\";\n    public const string Ic_fluent_circle_20_regular = \"\\uf2bb\";\n    public const string Ic_fluent_circle_24_regular = \"\\uf2bc\";\n    public const string Ic_fluent_circle_32_regular = \"\\ue332\";\n    public const string Ic_fluent_circle_48_regular = \"\\ue333\";\n    public const string Ic_fluent_circle_edit_20_regular = \"\\ue334\";\n    public const string Ic_fluent_circle_edit_24_regular = \"\\ue335\";\n    public const string Ic_fluent_circle_eraser_20_regular = \"\\ue336\";\n    public const string Ic_fluent_circle_half_fill_12_regular = \"\\ue337\";\n    public const string Ic_fluent_circle_half_fill_16_regular = \"\\uf30a\";\n    public const string Ic_fluent_circle_half_fill_20_regular = \"\\uf2bd\";\n    public const string Ic_fluent_circle_half_fill_24_regular = \"\\uf2be\";\n    public const string Ic_fluent_circle_image_20_regular = \"\\ue338\";\n    public const string Ic_fluent_circle_line_12_regular = \"\\ue339\";\n    public const string Ic_fluent_circle_line_20_regular = \"\\ue33a\";\n    public const string Ic_fluent_circle_line_24_regular = \"\\uf2bf\";\n    public const string Ic_fluent_circle_multiple_subtract_checkmark_20_regular = \"\\ue33b\";\n    public const string Ic_fluent_circle_off_16_regular = \"\\ue33c\";\n    public const string Ic_fluent_circle_off_20_regular = \"\\ue33d\";\n    public const string Ic_fluent_circle_small_20_regular = \"\\ue33e\";\n    public const string Ic_fluent_circle_small_24_regular = \"\\uf2c0\";\n    public const string Ic_fluent_city_16_regular = \"\\uf2c1\";\n    public const string Ic_fluent_city_20_regular = \"\\uf2c2\";\n    public const string Ic_fluent_city_24_regular = \"\\uf2c3\";\n    public const string Ic_fluent_class_20_regular = \"\\ue33f\";\n    public const string Ic_fluent_class_24_regular = \"\\uf2c4\";\n    public const string Ic_fluent_classification_16_regular = \"\\uf2c5\";\n    public const string Ic_fluent_classification_20_regular = \"\\uf2c6\";\n    public const string Ic_fluent_classification_24_regular = \"\\uf2c7\";\n    public const string Ic_fluent_clear_formatting_16_regular = \"\\ue340\";\n    public const string Ic_fluent_clear_formatting_20_regular = \"\\ue341\";\n    public const string Ic_fluent_clear_formatting_24_regular = \"\\uf2c8\";\n    public const string Ic_fluent_clipboard_16_regular = \"\\ue342\";\n    public const string Ic_fluent_clipboard_20_regular = \"\\uf2c9\";\n    public const string Ic_fluent_clipboard_24_regular = \"\\uf2ca\";\n    public const string Ic_fluent_clipboard_3_day_16_regular = \"\\uee99\";\n    public const string Ic_fluent_clipboard_3_day_20_regular = \"\\uee9a\";\n    public const string Ic_fluent_clipboard_3_day_24_regular = \"\\uee9b\";\n    public const string Ic_fluent_clipboard_32_regular = \"\\ue343\";\n    public const string Ic_fluent_clipboard_arrow_right_16_regular = \"\\ue344\";\n    public const string Ic_fluent_clipboard_arrow_right_20_regular = \"\\ue345\";\n    public const string Ic_fluent_clipboard_arrow_right_24_regular = \"\\ue346\";\n    public const string Ic_fluent_clipboard_bullet_list_ltr_16_regular = \"\\ue347\";\n    public const string Ic_fluent_clipboard_bullet_list_ltr_20_regular = \"\\ue348\";\n    public const string Ic_fluent_clipboard_bullet_list_rtl_16_regular = \"\\ue349\";\n    public const string Ic_fluent_clipboard_bullet_list_rtl_20_regular = \"\\ue34a\";\n    public const string Ic_fluent_clipboard_checkmark_20_regular = \"\\ue34b\";\n    public const string Ic_fluent_clipboard_checkmark_24_regular = \"\\ue34c\";\n    public const string Ic_fluent_clipboard_clock_20_regular = \"\\ue34d\";\n    public const string Ic_fluent_clipboard_clock_24_regular = \"\\ue34e\";\n    public const string Ic_fluent_clipboard_code_16_regular = \"\\uf2cb\";\n    public const string Ic_fluent_clipboard_code_20_regular = \"\\uf2cc\";\n    public const string Ic_fluent_clipboard_code_24_regular = \"\\uf2cd\";\n    public const string Ic_fluent_clipboard_data_bar_20_regular = \"\\ue34f\";\n    public const string Ic_fluent_clipboard_data_bar_24_regular = \"\\ue350\";\n    public const string Ic_fluent_clipboard_data_bar_32_regular = \"\\ue351\";\n    public const string Ic_fluent_clipboard_day_16_regular = \"\\uee9c\";\n    public const string Ic_fluent_clipboard_day_20_regular = \"\\uee9d\";\n    public const string Ic_fluent_clipboard_day_24_regular = \"\\uee9e\";\n    public const string Ic_fluent_clipboard_edit_20_regular = \"\\ue352\";\n    public const string Ic_fluent_clipboard_error_20_regular = \"\\ue353\";\n    public const string Ic_fluent_clipboard_error_24_regular = \"\\ue354\";\n    public const string Ic_fluent_clipboard_heart_20_regular = \"\\uf30b\";\n    public const string Ic_fluent_clipboard_heart_24_regular = \"\\ue355\";\n    public const string Ic_fluent_clipboard_image_20_regular = \"\\ue356\";\n    public const string Ic_fluent_clipboard_image_24_regular = \"\\ue357\";\n    public const string Ic_fluent_clipboard_letter_16_regular = \"\\uf2ce\";\n    public const string Ic_fluent_clipboard_letter_20_regular = \"\\uf2cf\";\n    public const string Ic_fluent_clipboard_letter_24_regular = \"\\uf2d0\";\n    public const string Ic_fluent_clipboard_link_16_regular = \"\\uf2d1\";\n    public const string Ic_fluent_clipboard_link_20_regular = \"\\uf2d2\";\n    public const string Ic_fluent_clipboard_link_24_regular = \"\\uf2d3\";\n    public const string Ic_fluent_clipboard_month_16_regular = \"\\uee9f\";\n    public const string Ic_fluent_clipboard_month_20_regular = \"\\ueea0\";\n    public const string Ic_fluent_clipboard_month_24_regular = \"\\ueea1\";\n    public const string Ic_fluent_clipboard_more_20_regular = \"\\ue358\";\n    public const string Ic_fluent_clipboard_more_24_regular = \"\\uf2d4\";\n    public const string Ic_fluent_clipboard_note_20_regular = \"\\ue359\";\n    public const string Ic_fluent_clipboard_paste_16_regular = \"\\ue35a\";\n    public const string Ic_fluent_clipboard_paste_20_regular = \"\\uf2d5\";\n    public const string Ic_fluent_clipboard_paste_24_regular = \"\\uf2d6\";\n    public const string Ic_fluent_clipboard_pulse_20_regular = \"\\uf322\";\n    public const string Ic_fluent_clipboard_pulse_24_regular = \"\\ue35b\";\n    public const string Ic_fluent_clipboard_search_20_regular = \"\\uf2d7\";\n    public const string Ic_fluent_clipboard_search_24_regular = \"\\uf2d8\";\n    public const string Ic_fluent_clipboard_settings_20_regular = \"\\uf32d\";\n    public const string Ic_fluent_clipboard_settings_24_regular = \"\\ue35c\";\n    public const string Ic_fluent_clipboard_task_20_regular = \"\\ue35d\";\n    public const string Ic_fluent_clipboard_task_24_regular = \"\\ue35e\";\n    public const string Ic_fluent_clipboard_task_add_20_regular = \"\\ue35f\";\n    public const string Ic_fluent_clipboard_task_add_24_regular = \"\\ue360\";\n    public const string Ic_fluent_clipboard_task_list_ltr_20_regular = \"\\ue361\";\n    public const string Ic_fluent_clipboard_task_list_ltr_24_regular = \"\\ue362\";\n    public const string Ic_fluent_clipboard_task_list_rtl_20_regular = \"\\ue363\";\n    public const string Ic_fluent_clipboard_task_list_rtl_24_regular = \"\\ue364\";\n    public const string Ic_fluent_clipboard_text_32_regular = \"\\ue365\";\n    public const string Ic_fluent_clipboard_text_edit_20_regular = \"\\ue366\";\n    public const string Ic_fluent_clipboard_text_edit_24_regular = \"\\ue367\";\n    public const string Ic_fluent_clipboard_text_edit_32_regular = \"\\ue368\";\n    public const string Ic_fluent_clipboard_text_ltr_20_regular = \"\\ue369\";\n    public const string Ic_fluent_clipboard_text_ltr_24_regular = \"\\ue36a\";\n    public const string Ic_fluent_clipboard_text_rtl_20_regular = \"\\ue36c\";\n    public const string Ic_fluent_clipboard_text_rtl_24_regular = \"\\ue36d\";\n    public const string Ic_fluent_clock_12_regular = \"\\uf2db\";\n    public const string Ic_fluent_clock_16_regular = \"\\uf2dc\";\n    public const string Ic_fluent_clock_20_regular = \"\\uf2dd\";\n    public const string Ic_fluent_clock_24_regular = \"\\uf2de\";\n    public const string Ic_fluent_clock_28_regular = \"\\uf2df\";\n    public const string Ic_fluent_clock_32_regular = \"\\ue36e\";\n    public const string Ic_fluent_clock_48_regular = \"\\uf2e0\";\n    public const string Ic_fluent_clock_alarm_16_regular = \"\\ue36f\";\n    public const string Ic_fluent_clock_alarm_20_regular = \"\\uf2e1\";\n    public const string Ic_fluent_clock_alarm_24_regular = \"\\uf2e2\";\n    public const string Ic_fluent_clock_alarm_32_regular = \"\\ue370\";\n    public const string Ic_fluent_clock_arrow_download_20_regular = \"\\uf32e\";\n    public const string Ic_fluent_clock_arrow_download_24_regular = \"\\ue371\";\n    public const string Ic_fluent_clock_dismiss_20_regular = \"\\ue372\";\n    public const string Ic_fluent_clock_dismiss_24_regular = \"\\ue373\";\n    public const string Ic_fluent_clock_pause_20_regular = \"\\ue374\";\n    public const string Ic_fluent_clock_pause_24_regular = \"\\ue375\";\n    public const string Ic_fluent_clock_toolbox_20_regular = \"\\ue376\";\n    public const string Ic_fluent_clock_toolbox_24_regular = \"\\ue377\";\n    public const string Ic_fluent_closed_caption_16_regular = \"\\ue378\";\n    public const string Ic_fluent_closed_caption_20_regular = \"\\ue379\";\n    public const string Ic_fluent_closed_caption_24_regular = \"\\uf2e3\";\n    public const string Ic_fluent_closed_caption_28_regular = \"\\ue37a\";\n    public const string Ic_fluent_closed_caption_32_regular = \"\\ue37b\";\n    public const string Ic_fluent_closed_caption_48_regular = \"\\ue37c\";\n    public const string Ic_fluent_closed_caption_off_16_regular = \"\\ue37d\";\n    public const string Ic_fluent_closed_caption_off_20_regular = \"\\ue37e\";\n    public const string Ic_fluent_closed_caption_off_24_regular = \"\\ue37f\";\n    public const string Ic_fluent_closed_caption_off_28_regular = \"\\ue380\";\n    public const string Ic_fluent_closed_caption_off_48_regular = \"\\ue381\";\n    public const string Ic_fluent_cloud_16_regular = \"\\ue382\";\n    public const string Ic_fluent_cloud_20_regular = \"\\uf2e4\";\n    public const string Ic_fluent_cloud_24_regular = \"\\uf2e5\";\n    public const string Ic_fluent_cloud_28_regular = \"\\ue383\";\n    public const string Ic_fluent_cloud_32_regular = \"\\ue384\";\n    public const string Ic_fluent_cloud_48_regular = \"\\uf2e6\";\n    public const string Ic_fluent_cloud_add_16_regular = \"\\uf32f\";\n    public const string Ic_fluent_cloud_add_20_regular = \"\\ue385\";\n    public const string Ic_fluent_cloud_archive_16_regular = \"\\ue386\";\n    public const string Ic_fluent_cloud_archive_20_regular = \"\\ue387\";\n    public const string Ic_fluent_cloud_archive_24_regular = \"\\ue388\";\n    public const string Ic_fluent_cloud_archive_28_regular = \"\\ue389\";\n    public const string Ic_fluent_cloud_archive_32_regular = \"\\ue38a\";\n    public const string Ic_fluent_cloud_archive_48_regular = \"\\ue38b\";\n    public const string Ic_fluent_cloud_arrow_down_16_regular = \"\\ue38c\";\n    public const string Ic_fluent_cloud_arrow_down_20_regular = \"\\ue38d\";\n    public const string Ic_fluent_cloud_arrow_down_24_regular = \"\\ue38e\";\n    public const string Ic_fluent_cloud_arrow_down_28_regular = \"\\ue38f\";\n    public const string Ic_fluent_cloud_arrow_down_32_regular = \"\\ue390\";\n    public const string Ic_fluent_cloud_arrow_down_48_regular = \"\\ue391\";\n    public const string Ic_fluent_cloud_arrow_up_16_regular = \"\\ue392\";\n    public const string Ic_fluent_cloud_arrow_up_20_regular = \"\\ue393\";\n    public const string Ic_fluent_cloud_arrow_up_24_regular = \"\\ue394\";\n    public const string Ic_fluent_cloud_arrow_up_28_regular = \"\\ue395\";\n    public const string Ic_fluent_cloud_arrow_up_32_regular = \"\\ue396\";\n    public const string Ic_fluent_cloud_arrow_up_48_regular = \"\\ue397\";\n    public const string Ic_fluent_cloud_checkmark_16_regular = \"\\ue398\";\n    public const string Ic_fluent_cloud_checkmark_20_regular = \"\\ue399\";\n    public const string Ic_fluent_cloud_checkmark_24_regular = \"\\ue39a\";\n    public const string Ic_fluent_cloud_checkmark_28_regular = \"\\ue39b\";\n    public const string Ic_fluent_cloud_checkmark_32_regular = \"\\ue39c\";\n    public const string Ic_fluent_cloud_checkmark_48_regular = \"\\ue39d\";\n    public const string Ic_fluent_cloud_dismiss_16_regular = \"\\ue39e\";\n    public const string Ic_fluent_cloud_dismiss_20_regular = \"\\ue39f\";\n    public const string Ic_fluent_cloud_dismiss_24_regular = \"\\ue3a0\";\n    public const string Ic_fluent_cloud_dismiss_28_regular = \"\\ue3a1\";\n    public const string Ic_fluent_cloud_dismiss_32_regular = \"\\ue3a2\";\n    public const string Ic_fluent_cloud_dismiss_48_regular = \"\\ue3a3\";\n    public const string Ic_fluent_cloud_edit_16_regular = \"\\uf330\";\n    public const string Ic_fluent_cloud_edit_20_regular = \"\\ue3a4\";\n    public const string Ic_fluent_cloud_flow_20_regular = \"\\uf337\";\n    public const string Ic_fluent_cloud_flow_24_regular = \"\\ue3a5\";\n    public const string Ic_fluent_cloud_link_16_regular = \"\\uf338\";\n    public const string Ic_fluent_cloud_link_20_regular = \"\\ue3a6\";\n    public const string Ic_fluent_cloud_off_16_regular = \"\\ue3a7\";\n    public const string Ic_fluent_cloud_off_20_regular = \"\\ue3a8\";\n    public const string Ic_fluent_cloud_off_24_regular = \"\\uf2ea\";\n    public const string Ic_fluent_cloud_off_28_regular = \"\\ue3a9\";\n    public const string Ic_fluent_cloud_off_32_regular = \"\\ue3aa\";\n    public const string Ic_fluent_cloud_off_48_regular = \"\\uf2eb\";\n    public const string Ic_fluent_cloud_swap_20_regular = \"\\ue3ab\";\n    public const string Ic_fluent_cloud_swap_24_regular = \"\\ue3ac\";\n    public const string Ic_fluent_cloud_sync_16_regular = \"\\ue3ad\";\n    public const string Ic_fluent_cloud_sync_20_regular = \"\\ue3ae\";\n    public const string Ic_fluent_cloud_sync_24_regular = \"\\ue3af\";\n    public const string Ic_fluent_cloud_sync_28_regular = \"\\ue3b0\";\n    public const string Ic_fluent_cloud_sync_32_regular = \"\\ue3b1\";\n    public const string Ic_fluent_cloud_sync_48_regular = \"\\ue3b2\";\n    public const string Ic_fluent_cloud_words_16_regular = \"\\ue3b3\";\n    public const string Ic_fluent_cloud_words_20_regular = \"\\ue3b4\";\n    public const string Ic_fluent_cloud_words_24_regular = \"\\ue3b5\";\n    public const string Ic_fluent_cloud_words_28_regular = \"\\ue3b6\";\n    public const string Ic_fluent_cloud_words_32_regular = \"\\ue3b7\";\n    public const string Ic_fluent_cloud_words_48_regular = \"\\ue3b8\";\n    public const string Ic_fluent_code_16_regular = \"\\uf339\";\n    public const string Ic_fluent_code_20_regular = \"\\uf2ef\";\n    public const string Ic_fluent_code_24_regular = \"\\uf2f0\";\n    public const string Ic_fluent_code_circle_20_regular = \"\\ue3b9\";\n    public const string Ic_fluent_code_text_20_regular = \"\\ue3ba\";\n    public const string Ic_fluent_code_text_edit_20_regular = \"\\ue3bb\";\n    public const string Ic_fluent_collections_20_regular = \"\\uf2f1\";\n    public const string Ic_fluent_collections_24_regular = \"\\uf2f2\";\n    public const string Ic_fluent_collections_add_20_regular = \"\\uf2f3\";\n    public const string Ic_fluent_collections_add_24_regular = \"\\uf2f4\";\n    public const string Ic_fluent_color_16_regular = \"\\ue3bc\";\n    public const string Ic_fluent_color_20_regular = \"\\uf2f5\";\n    public const string Ic_fluent_color_24_regular = \"\\uf2f6\";\n    public const string Ic_fluent_color_background_20_regular = \"\\uf2f7\";\n    public const string Ic_fluent_color_background_24_regular = \"\\uf2f8\";\n    public const string Ic_fluent_color_background_accent_20_regular = \"\\ue3bd\";\n    public const string Ic_fluent_color_background_accent_24_regular = \"\\ue3be\";\n    public const string Ic_fluent_color_fill_16_regular = \"\\ue3bf\";\n    public const string Ic_fluent_color_fill_20_regular = \"\\uf2f9\";\n    public const string Ic_fluent_color_fill_24_regular = \"\\uf2fa\";\n    public const string Ic_fluent_color_fill_28_regular = \"\\ue3c0\";\n    public const string Ic_fluent_color_fill_accent_16_regular = \"\\ue3c1\";\n    public const string Ic_fluent_color_fill_accent_20_regular = \"\\ue3c2\";\n    public const string Ic_fluent_color_fill_accent_24_regular = \"\\ue3c3\";\n    public const string Ic_fluent_color_fill_accent_28_regular = \"\\ue3c4\";\n    public const string Ic_fluent_color_line_16_regular = \"\\ue3c5\";\n    public const string Ic_fluent_color_line_20_regular = \"\\uf2fb\";\n    public const string Ic_fluent_color_line_24_regular = \"\\uf2fc\";\n    public const string Ic_fluent_color_line_accent_16_regular = \"\\ue3c6\";\n    public const string Ic_fluent_color_line_accent_20_regular = \"\\ue3c7\";\n    public const string Ic_fluent_color_line_accent_24_regular = \"\\ue3c8\";\n    public const string Ic_fluent_column_20_regular = \"\\ue3c9\";\n    public const string Ic_fluent_column_arrow_right_20_regular = \"\\ue3ca\";\n    public const string Ic_fluent_column_double_compare_20_regular = \"\\ue3cb\";\n    public const string Ic_fluent_column_edit_20_regular = \"\\ue3cc\";\n    public const string Ic_fluent_column_edit_24_regular = \"\\ue3cd\";\n    public const string Ic_fluent_column_triple_20_regular = \"\\ue3ce\";\n    public const string Ic_fluent_column_triple_24_regular = \"\\uf2fd\";\n    public const string Ic_fluent_column_triple_edit_20_regular = \"\\ue3cf\";\n    public const string Ic_fluent_column_triple_edit_24_regular = \"\\ue3d0\";\n    public const string Ic_fluent_comma_20_regular = \"\\ue3d1\";\n    public const string Ic_fluent_comma_24_regular = \"\\ue3d2\";\n    public const string Ic_fluent_comment_12_regular = \"\\ue3d3\";\n    public const string Ic_fluent_comment_16_regular = \"\\uf2fe\";\n    public const string Ic_fluent_comment_20_regular = \"\\uf2ff\";\n    public const string Ic_fluent_comment_24_regular = \"\\uf300\";\n    public const string Ic_fluent_comment_28_regular = \"\\ue3d4\";\n    public const string Ic_fluent_comment_48_regular = \"\\ue3d5\";\n    public const string Ic_fluent_comment_add_12_regular = \"\\ue3d6\";\n    public const string Ic_fluent_comment_add_16_regular = \"\\ue3d7\";\n    public const string Ic_fluent_comment_add_20_regular = \"\\ue3d8\";\n    public const string Ic_fluent_comment_add_24_regular = \"\\uf301\";\n    public const string Ic_fluent_comment_add_28_regular = \"\\ue3d9\";\n    public const string Ic_fluent_comment_add_48_regular = \"\\ue3da\";\n    public const string Ic_fluent_comment_arrow_left_12_regular = \"\\ue3db\";\n    public const string Ic_fluent_comment_arrow_left_16_regular = \"\\ue3dc\";\n    public const string Ic_fluent_comment_arrow_left_20_regular = \"\\ue3dd\";\n    public const string Ic_fluent_comment_arrow_left_24_regular = \"\\ue3de\";\n    public const string Ic_fluent_comment_arrow_left_28_regular = \"\\ue3df\";\n    public const string Ic_fluent_comment_arrow_left_48_regular = \"\\ue3e0\";\n    public const string Ic_fluent_comment_arrow_right_12_regular = \"\\ue3e1\";\n    public const string Ic_fluent_comment_arrow_right_16_regular = \"\\ue3e2\";\n    public const string Ic_fluent_comment_arrow_right_20_regular = \"\\ue3e3\";\n    public const string Ic_fluent_comment_arrow_right_24_regular = \"\\ue3e4\";\n    public const string Ic_fluent_comment_arrow_right_28_regular = \"\\ue3e5\";\n    public const string Ic_fluent_comment_arrow_right_48_regular = \"\\ue3e6\";\n    public const string Ic_fluent_comment_checkmark_12_regular = \"\\ue3e7\";\n    public const string Ic_fluent_comment_checkmark_16_regular = \"\\ue3e8\";\n    public const string Ic_fluent_comment_checkmark_20_regular = \"\\ue3e9\";\n    public const string Ic_fluent_comment_checkmark_24_regular = \"\\ue3ea\";\n    public const string Ic_fluent_comment_checkmark_28_regular = \"\\ue3eb\";\n    public const string Ic_fluent_comment_checkmark_48_regular = \"\\ue3ec\";\n    public const string Ic_fluent_comment_dismiss_20_regular = \"\\ue3ed\";\n    public const string Ic_fluent_comment_dismiss_24_regular = \"\\ue3ee\";\n    public const string Ic_fluent_comment_edit_20_regular = \"\\ue3ef\";\n    public const string Ic_fluent_comment_edit_24_regular = \"\\ue3f0\";\n    public const string Ic_fluent_comment_error_16_regular = \"\\uf350\";\n    public const string Ic_fluent_comment_error_20_regular = \"\\ue3f1\";\n    public const string Ic_fluent_comment_error_24_regular = \"\\ue3f2\";\n    public const string Ic_fluent_comment_lightning_20_regular = \"\\uf351\";\n    public const string Ic_fluent_comment_lightning_24_regular = \"\\uf361\";\n    public const string Ic_fluent_comment_mention_16_regular = \"\\uf303\";\n    public const string Ic_fluent_comment_mention_20_regular = \"\\uf304\";\n    public const string Ic_fluent_comment_mention_24_regular = \"\\uf305\";\n    public const string Ic_fluent_comment_multiple_16_regular = \"\\uf306\";\n    public const string Ic_fluent_comment_multiple_20_regular = \"\\uf307\";\n    public const string Ic_fluent_comment_multiple_24_regular = \"\\uf308\";\n    public const string Ic_fluent_comment_multiple_28_regular = \"\\ue3f3\";\n    public const string Ic_fluent_comment_multiple_32_regular = \"\\ue3f4\";\n    public const string Ic_fluent_comment_multiple_checkmark_16_regular = \"\\ue3f5\";\n    public const string Ic_fluent_comment_multiple_checkmark_20_regular = \"\\ue3f6\";\n    public const string Ic_fluent_comment_multiple_checkmark_24_regular = \"\\ue3f7\";\n    public const string Ic_fluent_comment_multiple_checkmark_28_regular = \"\\ue3f8\";\n    public const string Ic_fluent_comment_multiple_link_16_regular = \"\\ue3f9\";\n    public const string Ic_fluent_comment_multiple_link_20_regular = \"\\ue3fa\";\n    public const string Ic_fluent_comment_multiple_link_24_regular = \"\\ue3fb\";\n    public const string Ic_fluent_comment_multiple_link_28_regular = \"\\ue3fc\";\n    public const string Ic_fluent_comment_multiple_link_32_regular = \"\\ue3fd\";\n    public const string Ic_fluent_comment_note_20_regular = \"\\ue3fe\";\n    public const string Ic_fluent_comment_note_24_regular = \"\\ue3ff\";\n    public const string Ic_fluent_comment_off_16_regular = \"\\ue400\";\n    public const string Ic_fluent_comment_off_20_regular = \"\\ue401\";\n    public const string Ic_fluent_comment_off_24_regular = \"\\ue402\";\n    public const string Ic_fluent_comment_off_28_regular = \"\\ue403\";\n    public const string Ic_fluent_comment_off_48_regular = \"\\ue404\";\n    public const string Ic_fluent_communication_16_regular = \"\\uf30c\";\n    public const string Ic_fluent_communication_20_regular = \"\\uf30d\";\n    public const string Ic_fluent_communication_24_regular = \"\\uf30e\";\n    public const string Ic_fluent_communication_person_20_regular = \"\\ue405\";\n    public const string Ic_fluent_communication_person_24_regular = \"\\ue406\";\n    public const string Ic_fluent_compass_northwest_16_regular = \"\\uf30f\";\n    public const string Ic_fluent_compass_northwest_20_regular = \"\\uf310\";\n    public const string Ic_fluent_compass_northwest_24_regular = \"\\uf311\";\n    public const string Ic_fluent_compass_northwest_28_regular = \"\\uf312\";\n    public const string Ic_fluent_component_2_double_tap_swipe_down_24_regular = \"\\ue407\";\n    public const string Ic_fluent_component_2_double_tap_swipe_up_24_regular = \"\\ue408\";\n    public const string Ic_fluent_compose_16_regular = \"\\uf313\";\n    public const string Ic_fluent_compose_20_regular = \"\\uf314\";\n    public const string Ic_fluent_compose_24_regular = \"\\uf315\";\n    public const string Ic_fluent_compose_28_regular = \"\\uf316\";\n    public const string Ic_fluent_conference_room_16_regular = \"\\uf317\";\n    public const string Ic_fluent_conference_room_20_regular = \"\\uf318\";\n    public const string Ic_fluent_conference_room_24_regular = \"\\uf319\";\n    public const string Ic_fluent_conference_room_28_regular = \"\\uf31a\";\n    public const string Ic_fluent_conference_room_48_regular = \"\\uf31b\";\n    public const string Ic_fluent_connector_16_regular = \"\\uf31c\";\n    public const string Ic_fluent_connector_20_regular = \"\\uf31d\";\n    public const string Ic_fluent_connector_24_regular = \"\\uf31e\";\n    public const string Ic_fluent_contact_card_16_regular = \"\\uf362\";\n    public const string Ic_fluent_contact_card_20_regular = \"\\uf31f\";\n    public const string Ic_fluent_contact_card_24_regular = \"\\uf320\";\n    public const string Ic_fluent_contact_card_28_regular = \"\\ue409\";\n    public const string Ic_fluent_contact_card_32_regular = \"\\ue40a\";\n    public const string Ic_fluent_contact_card_48_regular = \"\\ue40b\";\n    public const string Ic_fluent_contact_card_group_16_regular = \"\\ue40c\";\n    public const string Ic_fluent_contact_card_group_20_regular = \"\\ue40d\";\n    public const string Ic_fluent_contact_card_group_24_regular = \"\\uf321\";\n    public const string Ic_fluent_contact_card_group_28_regular = \"\\ue40e\";\n    public const string Ic_fluent_contact_card_group_48_regular = \"\\ue40f\";\n    public const string Ic_fluent_contact_card_link_16_regular = \"\\uf363\";\n    public const string Ic_fluent_contact_card_link_20_regular = \"\\ue410\";\n    public const string Ic_fluent_contact_card_ribbon_16_regular = \"\\ue411\";\n    public const string Ic_fluent_contact_card_ribbon_20_regular = \"\\ue412\";\n    public const string Ic_fluent_contact_card_ribbon_24_regular = \"\\ue413\";\n    public const string Ic_fluent_contact_card_ribbon_28_regular = \"\\ue414\";\n    public const string Ic_fluent_contact_card_ribbon_32_regular = \"\\ue415\";\n    public const string Ic_fluent_contact_card_ribbon_48_regular = \"\\ue416\";\n    public const string Ic_fluent_content_settings_16_regular = \"\\uf323\";\n    public const string Ic_fluent_content_settings_20_regular = \"\\uf324\";\n    public const string Ic_fluent_content_settings_24_regular = \"\\uf325\";\n    public const string Ic_fluent_content_settings_32_regular = \"\\ue417\";\n    public const string Ic_fluent_content_view_20_regular = \"\\ue418\";\n    public const string Ic_fluent_content_view_32_regular = \"\\ue419\";\n    public const string Ic_fluent_content_view_gallery_20_regular = \"\\ue41a\";\n    public const string Ic_fluent_content_view_gallery_24_regular = \"\\ueea2\";\n    public const string Ic_fluent_content_view_gallery_28_regular = \"\\ueea3\";\n    public const string Ic_fluent_contract_down_left_16_regular = \"\\uf364\";\n    public const string Ic_fluent_contract_down_left_20_regular = \"\\uf373\";\n    public const string Ic_fluent_contract_down_left_24_regular = \"\\uf374\";\n    public const string Ic_fluent_contract_down_left_28_regular = \"\\uf375\";\n    public const string Ic_fluent_contract_down_left_32_regular = \"\\uf37b\";\n    public const string Ic_fluent_contract_down_left_48_regular = \"\\uf397\";\n    public const string Ic_fluent_control_button_20_regular = \"\\ue41b\";\n    public const string Ic_fluent_control_button_24_regular = \"\\ue41c\";\n    public const string Ic_fluent_convert_range_20_regular = \"\\ue41d\";\n    public const string Ic_fluent_convert_range_24_regular = \"\\ue41e\";\n    public const string Ic_fluent_cookies_20_regular = \"\\uf328\";\n    public const string Ic_fluent_cookies_24_regular = \"\\uf329\";\n    public const string Ic_fluent_copy_16_regular = \"\\uf32a\";\n    public const string Ic_fluent_copy_20_regular = \"\\uf32b\";\n    public const string Ic_fluent_copy_24_regular = \"\\uf32c\";\n    public const string Ic_fluent_copy_add_20_regular = \"\\ue41f\";\n    public const string Ic_fluent_copy_add_24_regular = \"\\ue420\";\n    public const string Ic_fluent_copy_arrow_right_16_regular = \"\\ue421\";\n    public const string Ic_fluent_copy_arrow_right_20_regular = \"\\ue422\";\n    public const string Ic_fluent_copy_arrow_right_24_regular = \"\\ue423\";\n    public const string Ic_fluent_copy_select_20_regular = \"\\ue424\";\n    public const string Ic_fluent_couch_12_regular = \"\\ue425\";\n    public const string Ic_fluent_couch_20_regular = \"\\ue426\";\n    public const string Ic_fluent_couch_24_regular = \"\\ue427\";\n    public const string Ic_fluent_credit_card_person_20_regular = \"\\ue428\";\n    public const string Ic_fluent_credit_card_person_24_regular = \"\\ue429\";\n    public const string Ic_fluent_credit_card_toolbox_20_regular = \"\\uf398\";\n    public const string Ic_fluent_credit_card_toolbox_24_regular = \"\\ue42a\";\n    public const string Ic_fluent_crop_20_regular = \"\\ue42b\";\n    public const string Ic_fluent_crop_24_regular = \"\\uf331\";\n    public const string Ic_fluent_crop_interim_20_regular = \"\\ue42c\";\n    public const string Ic_fluent_crop_interim_24_regular = \"\\uf332\";\n    public const string Ic_fluent_crop_interim_off_20_regular = \"\\ue42d\";\n    public const string Ic_fluent_crop_interim_off_24_regular = \"\\uf333\";\n    public const string Ic_fluent_cube_12_regular = \"\\ue42e\";\n    public const string Ic_fluent_cube_16_regular = \"\\uf334\";\n    public const string Ic_fluent_cube_20_regular = \"\\uf335\";\n    public const string Ic_fluent_cube_24_regular = \"\\uf336\";\n    public const string Ic_fluent_cube_add_20_regular = \"\\ue42f\";\n    public const string Ic_fluent_cube_arrow_curve_down_20_regular = \"\\ue430\";\n    public const string Ic_fluent_cube_link_20_regular = \"\\ue431\";\n    public const string Ic_fluent_cube_multiple_20_regular = \"\\ue432\";\n    public const string Ic_fluent_cube_multiple_24_regular = \"\\ue433\";\n    public const string Ic_fluent_cube_quick_16_regular = \"\\ue434\";\n    public const string Ic_fluent_cube_quick_20_regular = \"\\ue435\";\n    public const string Ic_fluent_cube_quick_24_regular = \"\\ue436\";\n    public const string Ic_fluent_cube_quick_28_regular = \"\\ue437\";\n    public const string Ic_fluent_cube_rotate_20_regular = \"\\ue438\";\n    public const string Ic_fluent_cube_sync_20_regular = \"\\ue439\";\n    public const string Ic_fluent_cube_sync_24_regular = \"\\ue43a\";\n    public const string Ic_fluent_cube_tree_20_regular = \"\\ue43b\";\n    public const string Ic_fluent_cube_tree_24_regular = \"\\ue43c\";\n    public const string Ic_fluent_currency_dollar_euro_16_regular = \"\\ue43d\";\n    public const string Ic_fluent_currency_dollar_euro_20_regular = \"\\ue43e\";\n    public const string Ic_fluent_currency_dollar_euro_24_regular = \"\\ue43f\";\n    public const string Ic_fluent_currency_dollar_rupee_16_regular = \"\\ue440\";\n    public const string Ic_fluent_currency_dollar_rupee_20_regular = \"\\ue441\";\n    public const string Ic_fluent_currency_dollar_rupee_24_regular = \"\\ue442\";\n    public const string Ic_fluent_cursor_20_regular = \"\\ue443\";\n    public const string Ic_fluent_cursor_24_regular = \"\\ue444\";\n    public const string Ic_fluent_cursor_click_20_regular = \"\\ue445\";\n    public const string Ic_fluent_cursor_click_24_regular = \"\\ue446\";\n    public const string Ic_fluent_cursor_hover_16_regular = \"\\ue447\";\n    public const string Ic_fluent_cursor_hover_20_regular = \"\\ue448\";\n    public const string Ic_fluent_cursor_hover_24_regular = \"\\ue449\";\n    public const string Ic_fluent_cursor_hover_28_regular = \"\\ue44a\";\n    public const string Ic_fluent_cursor_hover_32_regular = \"\\ue44b\";\n    public const string Ic_fluent_cursor_hover_48_regular = \"\\ue44c\";\n    public const string Ic_fluent_cursor_hover_off_16_regular = \"\\ue44d\";\n    public const string Ic_fluent_cursor_hover_off_20_regular = \"\\ue44e\";\n    public const string Ic_fluent_cursor_hover_off_24_regular = \"\\ue44f\";\n    public const string Ic_fluent_cursor_hover_off_28_regular = \"\\ue450\";\n    public const string Ic_fluent_cursor_hover_off_48_regular = \"\\ue451\";\n    public const string Ic_fluent_cut_20_regular = \"\\uf33a\";\n    public const string Ic_fluent_cut_24_regular = \"\\uf33b\";\n    public const string Ic_fluent_dark_theme_20_regular = \"\\ue452\";\n    public const string Ic_fluent_dark_theme_24_regular = \"\\uf33c\";\n    public const string Ic_fluent_data_area_20_regular = \"\\ue453\";\n    public const string Ic_fluent_data_area_24_regular = \"\\uf33d\";\n    public const string Ic_fluent_data_bar_horizontal_20_regular = \"\\uf39b\";\n    public const string Ic_fluent_data_bar_horizontal_24_regular = \"\\uf33e\";\n    public const string Ic_fluent_data_bar_vertical_16_regular = \"\\ueea4\";\n    public const string Ic_fluent_data_bar_vertical_20_regular = \"\\uf33f\";\n    public const string Ic_fluent_data_bar_vertical_24_regular = \"\\uf340\";\n    public const string Ic_fluent_data_bar_vertical_add_20_regular = \"\\ue454\";\n    public const string Ic_fluent_data_bar_vertical_add_24_regular = \"\\ue455\";\n    public const string Ic_fluent_data_funnel_20_regular = \"\\ue456\";\n    public const string Ic_fluent_data_funnel_24_regular = \"\\uf341\";\n    public const string Ic_fluent_data_histogram_20_regular = \"\\ue457\";\n    public const string Ic_fluent_data_histogram_24_regular = \"\\uf342\";\n    public const string Ic_fluent_data_line_20_regular = \"\\ue458\";\n    public const string Ic_fluent_data_line_24_regular = \"\\uf343\";\n    public const string Ic_fluent_data_pie_20_regular = \"\\uf344\";\n    public const string Ic_fluent_data_pie_24_regular = \"\\uf345\";\n    public const string Ic_fluent_data_scatter_20_regular = \"\\ue459\";\n    public const string Ic_fluent_data_scatter_24_regular = \"\\uf346\";\n    public const string Ic_fluent_data_sunburst_20_regular = \"\\ue45a\";\n    public const string Ic_fluent_data_sunburst_24_regular = \"\\uf347\";\n    public const string Ic_fluent_data_treemap_20_regular = \"\\ue45b\";\n    public const string Ic_fluent_data_treemap_24_regular = \"\\uf348\";\n    public const string Ic_fluent_data_trending_16_regular = \"\\ue45c\";\n    public const string Ic_fluent_data_trending_20_regular = \"\\ue45d\";\n    public const string Ic_fluent_data_trending_24_regular = \"\\ue45e\";\n    public const string Ic_fluent_data_usage_20_regular = \"\\ue45f\";\n    public const string Ic_fluent_data_usage_24_regular = \"\\uf349\";\n    public const string Ic_fluent_data_usage_edit_20_regular = \"\\uf3b2\";\n    public const string Ic_fluent_data_usage_edit_24_regular = \"\\ue460\";\n    public const string Ic_fluent_data_usage_settings_20_regular = \"\\ue461\";\n    public const string Ic_fluent_data_usage_toolbox_20_regular = \"\\ue462\";\n    public const string Ic_fluent_data_usage_toolbox_24_regular = \"\\ue463\";\n    public const string Ic_fluent_data_waterfall_20_regular = \"\\ue464\";\n    public const string Ic_fluent_data_waterfall_24_regular = \"\\uf34a\";\n    public const string Ic_fluent_data_whisker_20_regular = \"\\ue465\";\n    public const string Ic_fluent_data_whisker_24_regular = \"\\uf34b\";\n    public const string Ic_fluent_database_20_regular = \"\\ue466\";\n    public const string Ic_fluent_database_24_regular = \"\\ue467\";\n    public const string Ic_fluent_database_arrow_down_20_regular = \"\\ue468\";\n    public const string Ic_fluent_database_arrow_right_20_regular = \"\\ue469\";\n    public const string Ic_fluent_database_arrow_up_20_regular = \"\\ue46a\";\n    public const string Ic_fluent_database_lightning_20_regular = \"\\ue46b\";\n    public const string Ic_fluent_database_link_20_regular = \"\\ue46c\";\n    public const string Ic_fluent_database_link_24_regular = \"\\ue46d\";\n    public const string Ic_fluent_database_multiple_20_regular = \"\\ue46e\";\n    public const string Ic_fluent_database_person_20_regular = \"\\ue46f\";\n    public const string Ic_fluent_database_person_24_regular = \"\\ue470\";\n    public const string Ic_fluent_database_plug_connected_20_regular = \"\\ue471\";\n    public const string Ic_fluent_database_search_20_regular = \"\\ue472\";\n    public const string Ic_fluent_database_search_24_regular = \"\\ue473\";\n    public const string Ic_fluent_database_switch_20_regular = \"\\ue474\";\n    public const string Ic_fluent_database_warning_20_regular = \"\\ue475\";\n    public const string Ic_fluent_database_window_20_regular = \"\\ue476\";\n    public const string Ic_fluent_decimal_arrow_left_20_regular = \"\\ue477\";\n    public const string Ic_fluent_decimal_arrow_left_24_regular = \"\\ue478\";\n    public const string Ic_fluent_decimal_arrow_right_20_regular = \"\\ue479\";\n    public const string Ic_fluent_decimal_arrow_right_24_regular = \"\\ue47a\";\n    public const string Ic_fluent_delete_12_regular = \"\\ueea5\";\n    public const string Ic_fluent_delete_16_regular = \"\\ue47b\";\n    public const string Ic_fluent_delete_20_regular = \"\\uf34c\";\n    public const string Ic_fluent_delete_24_regular = \"\\uf34d\";\n    public const string Ic_fluent_delete_28_regular = \"\\uf34e\";\n    public const string Ic_fluent_delete_32_regular = \"\\ueea6\";\n    public const string Ic_fluent_delete_48_regular = \"\\uf34f\";\n    public const string Ic_fluent_delete_arrow_back_16_regular = \"\\ue47c\";\n    public const string Ic_fluent_delete_arrow_back_20_regular = \"\\ue47d\";\n    public const string Ic_fluent_delete_dismiss_20_regular = \"\\ue47e\";\n    public const string Ic_fluent_delete_dismiss_24_regular = \"\\ue47f\";\n    public const string Ic_fluent_delete_dismiss_28_regular = \"\\ue480\";\n    public const string Ic_fluent_delete_lines_20_regular = \"\\ue481\";\n    public const string Ic_fluent_delete_off_20_regular = \"\\uf352\";\n    public const string Ic_fluent_delete_off_24_regular = \"\\uf353\";\n    public const string Ic_fluent_dentist_12_regular = \"\\ue482\";\n    public const string Ic_fluent_dentist_16_regular = \"\\ue483\";\n    public const string Ic_fluent_dentist_20_regular = \"\\ue484\";\n    public const string Ic_fluent_dentist_24_regular = \"\\uf354\";\n    public const string Ic_fluent_dentist_28_regular = \"\\ue485\";\n    public const string Ic_fluent_dentist_48_regular = \"\\ue486\";\n    public const string Ic_fluent_design_ideas_16_regular = \"\\uf355\";\n    public const string Ic_fluent_design_ideas_20_regular = \"\\uf356\";\n    public const string Ic_fluent_design_ideas_24_regular = \"\\uf357\";\n    public const string Ic_fluent_desktop_16_regular = \"\\uf358\";\n    public const string Ic_fluent_desktop_20_regular = \"\\uf359\";\n    public const string Ic_fluent_desktop_24_regular = \"\\uf35a\";\n    public const string Ic_fluent_desktop_28_regular = \"\\uf35b\";\n    public const string Ic_fluent_desktop_32_regular = \"\\ue487\";\n    public const string Ic_fluent_desktop_arrow_right_16_regular = \"\\ue488\";\n    public const string Ic_fluent_desktop_arrow_right_20_regular = \"\\ue489\";\n    public const string Ic_fluent_desktop_arrow_right_24_regular = \"\\ue48a\";\n    public const string Ic_fluent_desktop_cursor_16_regular = \"\\ue48b\";\n    public const string Ic_fluent_desktop_cursor_20_regular = \"\\ue48c\";\n    public const string Ic_fluent_desktop_cursor_24_regular = \"\\ue48d\";\n    public const string Ic_fluent_desktop_cursor_28_regular = \"\\ue48e\";\n    public const string Ic_fluent_desktop_edit_16_regular = \"\\ue48f\";\n    public const string Ic_fluent_desktop_edit_20_regular = \"\\ue490\";\n    public const string Ic_fluent_desktop_edit_24_regular = \"\\ue491\";\n    public const string Ic_fluent_desktop_flow_20_regular = \"\\ue492\";\n    public const string Ic_fluent_desktop_flow_24_regular = \"\\ue493\";\n    public const string Ic_fluent_desktop_keyboard_16_regular = \"\\ue494\";\n    public const string Ic_fluent_desktop_keyboard_20_regular = \"\\ue495\";\n    public const string Ic_fluent_desktop_keyboard_24_regular = \"\\ue496\";\n    public const string Ic_fluent_desktop_keyboard_28_regular = \"\\ue497\";\n    public const string Ic_fluent_desktop_mac_16_regular = \"\\ue498\";\n    public const string Ic_fluent_desktop_mac_20_regular = \"\\ue499\";\n    public const string Ic_fluent_desktop_mac_24_regular = \"\\ue49a\";\n    public const string Ic_fluent_desktop_mac_32_regular = \"\\ue49b\";\n    public const string Ic_fluent_desktop_pulse_16_regular = \"\\ue49c\";\n    public const string Ic_fluent_desktop_pulse_20_regular = \"\\ue49d\";\n    public const string Ic_fluent_desktop_pulse_24_regular = \"\\ue49e\";\n    public const string Ic_fluent_desktop_pulse_28_regular = \"\\ue49f\";\n    public const string Ic_fluent_desktop_pulse_32_regular = \"\\ue4a0\";\n    public const string Ic_fluent_desktop_pulse_48_regular = \"\\ue4a1\";\n    public const string Ic_fluent_desktop_signal_20_regular = \"\\ue4a2\";\n    public const string Ic_fluent_desktop_signal_24_regular = \"\\ue4a3\";\n    public const string Ic_fluent_desktop_speaker_20_regular = \"\\ue4a4\";\n    public const string Ic_fluent_desktop_speaker_24_regular = \"\\ue4a5\";\n    public const string Ic_fluent_desktop_speaker_off_20_regular = \"\\ue4a6\";\n    public const string Ic_fluent_desktop_speaker_off_24_regular = \"\\ue4a7\";\n    public const string Ic_fluent_desktop_sync_16_regular = \"\\uf3b3\";\n    public const string Ic_fluent_desktop_sync_20_regular = \"\\ue4a8\";\n    public const string Ic_fluent_desktop_sync_24_regular = \"\\ue4a9\";\n    public const string Ic_fluent_desktop_toolbox_20_regular = \"\\ue4aa\";\n    public const string Ic_fluent_desktop_toolbox_24_regular = \"\\ue4ab\";\n    public const string Ic_fluent_developer_board_20_regular = \"\\ue4ac\";\n    public const string Ic_fluent_developer_board_24_regular = \"\\uf35c\";\n    public const string Ic_fluent_developer_board_lightning_20_regular = \"\\ue4ad\";\n    public const string Ic_fluent_developer_board_lightning_toolbox_20_regular = \"\\ue4ae\";\n    public const string Ic_fluent_developer_board_search_20_regular = \"\\ue4af\";\n    public const string Ic_fluent_developer_board_search_24_regular = \"\\ue4b0\";\n    public const string Ic_fluent_device_eq_20_regular = \"\\ue4b1\";\n    public const string Ic_fluent_device_eq_24_regular = \"\\uf35d\";\n    public const string Ic_fluent_device_meeting_room_16_regular = \"\\uf3b4\";\n    public const string Ic_fluent_device_meeting_room_20_regular = \"\\ue4b2\";\n    public const string Ic_fluent_device_meeting_room_24_regular = \"\\uf3b5\";\n    public const string Ic_fluent_device_meeting_room_28_regular = \"\\uf3b6\";\n    public const string Ic_fluent_device_meeting_room_32_regular = \"\\uf3b7\";\n    public const string Ic_fluent_device_meeting_room_48_regular = \"\\uf3bc\";\n    public const string Ic_fluent_device_meeting_room_remote_16_regular = \"\\uf3bd\";\n    public const string Ic_fluent_device_meeting_room_remote_20_regular = \"\\ue4b3\";\n    public const string Ic_fluent_device_meeting_room_remote_24_regular = \"\\uf3c2\";\n    public const string Ic_fluent_device_meeting_room_remote_28_regular = \"\\uf3cd\";\n    public const string Ic_fluent_device_meeting_room_remote_32_regular = \"\\uf3ed\";\n    public const string Ic_fluent_device_meeting_room_remote_48_regular = \"\\uf3ee\";\n    public const string Ic_fluent_diagram_20_regular = \"\\ue4b4\";\n    public const string Ic_fluent_diagram_24_regular = \"\\ue4b5\";\n    public const string Ic_fluent_dialpad_20_regular = \"\\uf35e\";\n    public const string Ic_fluent_dialpad_24_regular = \"\\uf35f\";\n    public const string Ic_fluent_dialpad_28_regular = \"\\ue4b6\";\n    public const string Ic_fluent_dialpad_32_regular = \"\\ue4b7\";\n    public const string Ic_fluent_dialpad_48_regular = \"\\ue4b8\";\n    public const string Ic_fluent_dialpad_off_20_regular = \"\\ue4b9\";\n    public const string Ic_fluent_dialpad_off_24_regular = \"\\uf360\";\n    public const string Ic_fluent_diamond_16_regular = \"\\ue4ba\";\n    public const string Ic_fluent_diamond_20_regular = \"\\ue4bb\";\n    public const string Ic_fluent_diamond_24_regular = \"\\ue4bc\";\n    public const string Ic_fluent_diamond_28_regular = \"\\ue4bd\";\n    public const string Ic_fluent_diamond_32_regular = \"\\ue4be\";\n    public const string Ic_fluent_diamond_48_regular = \"\\ue4bf\";\n    public const string Ic_fluent_directions_16_regular = \"\\ue4c0\";\n    public const string Ic_fluent_directions_20_regular = \"\\uf365\";\n    public const string Ic_fluent_directions_24_regular = \"\\uf366\";\n    public const string Ic_fluent_dismiss_12_regular = \"\\uf367\";\n    public const string Ic_fluent_dismiss_16_regular = \"\\uf368\";\n    public const string Ic_fluent_dismiss_20_regular = \"\\uf369\";\n    public const string Ic_fluent_dismiss_24_regular = \"\\uf36a\";\n    public const string Ic_fluent_dismiss_28_regular = \"\\uf36b\";\n    public const string Ic_fluent_dismiss_32_regular = \"\\uf3f3\";\n    public const string Ic_fluent_dismiss_48_regular = \"\\uf400\";\n    public const string Ic_fluent_dismiss_circle_12_regular = \"\\ue4c1\";\n    public const string Ic_fluent_dismiss_circle_16_regular = \"\\uf36c\";\n    public const string Ic_fluent_dismiss_circle_20_regular = \"\\uf36d\";\n    public const string Ic_fluent_dismiss_circle_24_regular = \"\\uf36e\";\n    public const string Ic_fluent_dismiss_circle_28_regular = \"\\ue4c2\";\n    public const string Ic_fluent_dismiss_circle_32_regular = \"\\ue4c3\";\n    public const string Ic_fluent_dismiss_circle_48_regular = \"\\uf36f\";\n    public const string Ic_fluent_dismiss_square_20_regular = \"\\ue4c4\";\n    public const string Ic_fluent_dismiss_square_24_regular = \"\\ue4c5\";\n    public const string Ic_fluent_dismiss_square_multiple_16_regular = \"\\ue4c6\";\n    public const string Ic_fluent_dismiss_square_multiple_20_regular = \"\\ue4c7\";\n    public const string Ic_fluent_diversity_20_regular = \"\\ue4c8\";\n    public const string Ic_fluent_diversity_24_regular = \"\\ue4c9\";\n    public const string Ic_fluent_diversity_28_regular = \"\\ue4ca\";\n    public const string Ic_fluent_diversity_48_regular = \"\\ue4cb\";\n    public const string Ic_fluent_divider_short_16_regular = \"\\ue4cc\";\n    public const string Ic_fluent_divider_short_20_regular = \"\\ue4cd\";\n    public const string Ic_fluent_divider_short_24_regular = \"\\uf370\";\n    public const string Ic_fluent_divider_tall_16_regular = \"\\ue4ce\";\n    public const string Ic_fluent_divider_tall_20_regular = \"\\ue4cf\";\n    public const string Ic_fluent_divider_tall_24_regular = \"\\uf371\";\n    public const string Ic_fluent_dock_20_regular = \"\\ue4d0\";\n    public const string Ic_fluent_dock_24_regular = \"\\uf372\";\n    public const string Ic_fluent_dock_row_20_regular = \"\\ue4d1\";\n    public const string Ic_fluent_dock_row_24_regular = \"\\uf376\";\n    public const string Ic_fluent_doctor_12_regular = \"\\ue4d2\";\n    public const string Ic_fluent_doctor_16_regular = \"\\ue4d3\";\n    public const string Ic_fluent_doctor_20_regular = \"\\ue4d4\";\n    public const string Ic_fluent_doctor_24_regular = \"\\uf377\";\n    public const string Ic_fluent_doctor_28_regular = \"\\ue4d5\";\n    public const string Ic_fluent_doctor_48_regular = \"\\ue4d6\";\n    public const string Ic_fluent_document_16_regular = \"\\ue4d7\";\n    public const string Ic_fluent_document_20_regular = \"\\uf378\";\n    public const string Ic_fluent_document_24_regular = \"\\uf379\";\n    public const string Ic_fluent_document_28_regular = \"\\uf37a\";\n    public const string Ic_fluent_document_32_regular = \"\\ue4d8\";\n    public const string Ic_fluent_document_48_regular = \"\\ue4d9\";\n    public const string Ic_fluent_document_add_16_regular = \"\\ue4da\";\n    public const string Ic_fluent_document_add_20_regular = \"\\ue4db\";\n    public const string Ic_fluent_document_add_24_regular = \"\\ue4dc\";\n    public const string Ic_fluent_document_add_28_regular = \"\\ue4dd\";\n    public const string Ic_fluent_document_add_48_regular = \"\\ue4de\";\n    public const string Ic_fluent_document_arrow_down_16_regular = \"\\ue4df\";\n    public const string Ic_fluent_document_arrow_down_20_regular = \"\\ue4e0\";\n    public const string Ic_fluent_document_arrow_left_16_regular = \"\\ue4e1\";\n    public const string Ic_fluent_document_arrow_left_20_regular = \"\\ue4e2\";\n    public const string Ic_fluent_document_arrow_left_24_regular = \"\\ue4e3\";\n    public const string Ic_fluent_document_arrow_left_28_regular = \"\\ue4e4\";\n    public const string Ic_fluent_document_arrow_left_48_regular = \"\\ue4e5\";\n    public const string Ic_fluent_document_arrow_right_20_regular = \"\\ue4e6\";\n    public const string Ic_fluent_document_arrow_right_24_regular = \"\\ue4e7\";\n    public const string Ic_fluent_document_arrow_up_16_regular = \"\\uf401\";\n    public const string Ic_fluent_document_arrow_up_20_regular = \"\\ue4e8\";\n    public const string Ic_fluent_document_briefcase_20_regular = \"\\uf37c\";\n    public const string Ic_fluent_document_briefcase_24_regular = \"\\uf37d\";\n    public const string Ic_fluent_document_bullet_list_20_regular = \"\\uf402\";\n    public const string Ic_fluent_document_bullet_list_24_regular = \"\\uf403\";\n    public const string Ic_fluent_document_bullet_list_clock_20_regular = \"\\ue4e9\";\n    public const string Ic_fluent_document_bullet_list_clock_24_regular = \"\\ue4ea\";\n    public const string Ic_fluent_document_bullet_list_multiple_20_regular = \"\\ue4eb\";\n    public const string Ic_fluent_document_bullet_list_multiple_24_regular = \"\\ue4ec\";\n    public const string Ic_fluent_document_bullet_list_off_20_regular = \"\\ue4ed\";\n    public const string Ic_fluent_document_bullet_list_off_24_regular = \"\\ue4ee\";\n    public const string Ic_fluent_document_catch_up_16_regular = \"\\ue4ef\";\n    public const string Ic_fluent_document_catch_up_20_regular = \"\\ue4f0\";\n    public const string Ic_fluent_document_catch_up_24_regular = \"\\uf37e\";\n    public const string Ic_fluent_document_checkmark_20_regular = \"\\ue4f1\";\n    public const string Ic_fluent_document_checkmark_24_regular = \"\\ue4f2\";\n    public const string Ic_fluent_document_chevron_double_20_regular = \"\\ue4f3\";\n    public const string Ic_fluent_document_chevron_double_24_regular = \"\\ue4f4\";\n    public const string Ic_fluent_document_copy_16_regular = \"\\uf37f\";\n    public const string Ic_fluent_document_copy_20_regular = \"\\uf380\";\n    public const string Ic_fluent_document_copy_24_regular = \"\\uf381\";\n    public const string Ic_fluent_document_copy_48_regular = \"\\uf382\";\n    public const string Ic_fluent_document_css_20_regular = \"\\ue4f5\";\n    public const string Ic_fluent_document_css_24_regular = \"\\ue4f6\";\n    public const string Ic_fluent_document_data_20_regular = \"\\ue4f7\";\n    public const string Ic_fluent_document_data_24_regular = \"\\ue4f8\";\n    public const string Ic_fluent_document_dismiss_16_regular = \"\\ue4f9\";\n    public const string Ic_fluent_document_dismiss_20_regular = \"\\uf383\";\n    public const string Ic_fluent_document_dismiss_24_regular = \"\\uf384\";\n    public const string Ic_fluent_document_edit_16_regular = \"\\uf385\";\n    public const string Ic_fluent_document_edit_20_regular = \"\\uf386\";\n    public const string Ic_fluent_document_edit_24_regular = \"\\uf387\";\n    public const string Ic_fluent_document_endnote_20_regular = \"\\uf388\";\n    public const string Ic_fluent_document_endnote_24_regular = \"\\uf389\";\n    public const string Ic_fluent_document_error_16_regular = \"\\uf38a\";\n    public const string Ic_fluent_document_error_20_regular = \"\\uf38b\";\n    public const string Ic_fluent_document_error_24_regular = \"\\uf38c\";\n    public const string Ic_fluent_document_flowchart_20_regular = \"\\ue4fa\";\n    public const string Ic_fluent_document_flowchart_24_regular = \"\\ue4fb\";\n    public const string Ic_fluent_document_footer_16_regular = \"\\ue4fc\";\n    public const string Ic_fluent_document_footer_20_regular = \"\\ue4fd\";\n    public const string Ic_fluent_document_footer_24_regular = \"\\uf38d\";\n    public const string Ic_fluent_document_footer_dismiss_20_regular = \"\\ue4fe\";\n    public const string Ic_fluent_document_footer_dismiss_24_regular = \"\\ue4ff\";\n    public const string Ic_fluent_document_header_16_regular = \"\\ue500\";\n    public const string Ic_fluent_document_header_20_regular = \"\\ue501\";\n    public const string Ic_fluent_document_header_24_regular = \"\\uf38f\";\n    public const string Ic_fluent_document_header_arrow_down_16_regular = \"\\ue502\";\n    public const string Ic_fluent_document_header_arrow_down_20_regular = \"\\ue503\";\n    public const string Ic_fluent_document_header_arrow_down_24_regular = \"\\ue504\";\n    public const string Ic_fluent_document_header_dismiss_20_regular = \"\\ue505\";\n    public const string Ic_fluent_document_header_dismiss_24_regular = \"\\ue506\";\n    public const string Ic_fluent_document_header_footer_16_regular = \"\\ue507\";\n    public const string Ic_fluent_document_header_footer_20_regular = \"\\uf390\";\n    public const string Ic_fluent_document_header_footer_24_regular = \"\\uf391\";\n    public const string Ic_fluent_document_heart_20_regular = \"\\ue508\";\n    public const string Ic_fluent_document_heart_24_regular = \"\\ue509\";\n    public const string Ic_fluent_document_heart_pulse_20_regular = \"\\ue50a\";\n    public const string Ic_fluent_document_heart_pulse_24_regular = \"\\ue50b\";\n    public const string Ic_fluent_document_javascript_20_regular = \"\\ue50c\";\n    public const string Ic_fluent_document_javascript_24_regular = \"\\ue50d\";\n    public const string Ic_fluent_document_landscape_20_regular = \"\\uf393\";\n    public const string Ic_fluent_document_landscape_24_regular = \"\\uf394\";\n    public const string Ic_fluent_document_landscape_data_20_regular = \"\\ue50e\";\n    public const string Ic_fluent_document_landscape_data_24_regular = \"\\ue50f\";\n    public const string Ic_fluent_document_landscape_split_20_regular = \"\\ue510\";\n    public const string Ic_fluent_document_landscape_split_24_regular = \"\\ue511\";\n    public const string Ic_fluent_document_landscape_split_hint_20_regular = \"\\ue512\";\n    public const string Ic_fluent_document_link_16_regular = \"\\ue513\";\n    public const string Ic_fluent_document_link_20_regular = \"\\uf404\";\n    public const string Ic_fluent_document_link_24_regular = \"\\uf405\";\n    public const string Ic_fluent_document_lock_16_regular = \"\\ue514\";\n    public const string Ic_fluent_document_lock_20_regular = \"\\ue515\";\n    public const string Ic_fluent_document_lock_24_regular = \"\\ue516\";\n    public const string Ic_fluent_document_lock_28_regular = \"\\ue517\";\n    public const string Ic_fluent_document_lock_32_regular = \"\\ue518\";\n    public const string Ic_fluent_document_lock_48_regular = \"\\ue519\";\n    public const string Ic_fluent_document_margins_20_regular = \"\\uf395\";\n    public const string Ic_fluent_document_margins_24_regular = \"\\uf396\";\n    public const string Ic_fluent_document_mention_16_regular = \"\\ue51a\";\n    public const string Ic_fluent_document_mention_20_regular = \"\\ue51b\";\n    public const string Ic_fluent_document_mention_24_regular = \"\\ue51c\";\n    public const string Ic_fluent_document_mention_28_regular = \"\\ue51d\";\n    public const string Ic_fluent_document_mention_48_regular = \"\\ue51e\";\n    public const string Ic_fluent_document_multiple_16_regular = \"\\ue51f\";\n    public const string Ic_fluent_document_multiple_20_regular = \"\\ue520\";\n    public const string Ic_fluent_document_multiple_24_regular = \"\\ue521\";\n    public const string Ic_fluent_document_multiple_percent_20_regular = \"\\ue522\";\n    public const string Ic_fluent_document_multiple_percent_24_regular = \"\\ue523\";\n    public const string Ic_fluent_document_multiple_prohibited_20_regular = \"\\ue524\";\n    public const string Ic_fluent_document_multiple_prohibited_24_regular = \"\\ue525\";\n    public const string Ic_fluent_document_multiple_sync_20_regular = \"\\ue526\";\n    public const string Ic_fluent_document_one_page_20_regular = \"\\uf399\";\n    public const string Ic_fluent_document_one_page_24_regular = \"\\uf39a\";\n    public const string Ic_fluent_document_page_bottom_center_20_regular = \"\\uf39c\";\n    public const string Ic_fluent_document_page_bottom_center_24_regular = \"\\uf39d\";\n    public const string Ic_fluent_document_page_bottom_left_20_regular = \"\\uf39e\";\n    public const string Ic_fluent_document_page_bottom_left_24_regular = \"\\uf39f\";\n    public const string Ic_fluent_document_page_bottom_right_20_regular = \"\\uf3a0\";\n    public const string Ic_fluent_document_page_bottom_right_24_regular = \"\\uf3a1\";\n    public const string Ic_fluent_document_page_break_20_regular = \"\\ue527\";\n    public const string Ic_fluent_document_page_break_24_regular = \"\\uf3a2\";\n    public const string Ic_fluent_document_page_number_20_regular = \"\\uf3a3\";\n    public const string Ic_fluent_document_page_number_24_regular = \"\\uf3a4\";\n    public const string Ic_fluent_document_page_top_center_20_regular = \"\\uf3a5\";\n    public const string Ic_fluent_document_page_top_center_24_regular = \"\\uf3a6\";\n    public const string Ic_fluent_document_page_top_left_20_regular = \"\\uf3a7\";\n    public const string Ic_fluent_document_page_top_left_24_regular = \"\\uf3a8\";\n    public const string Ic_fluent_document_page_top_right_20_regular = \"\\uf3a9\";\n    public const string Ic_fluent_document_page_top_right_24_regular = \"\\uf3aa\";\n    public const string Ic_fluent_document_pdf_16_regular = \"\\uf3ab\";\n    public const string Ic_fluent_document_pdf_20_regular = \"\\uf3ac\";\n    public const string Ic_fluent_document_pdf_24_regular = \"\\uf3ad\";\n    public const string Ic_fluent_document_pdf_32_regular = \"\\ue528\";\n    public const string Ic_fluent_document_percent_20_regular = \"\\ue529\";\n    public const string Ic_fluent_document_percent_24_regular = \"\\ue52a\";\n    public const string Ic_fluent_document_person_16_regular = \"\\uf421\";\n    public const string Ic_fluent_document_person_20_regular = \"\\ue52b\";\n    public const string Ic_fluent_document_pill_20_regular = \"\\ue52c\";\n    public const string Ic_fluent_document_pill_24_regular = \"\\ue52d\";\n    public const string Ic_fluent_document_prohibited_20_regular = \"\\ue52e\";\n    public const string Ic_fluent_document_prohibited_24_regular = \"\\ue52f\";\n    public const string Ic_fluent_document_question_mark_16_regular = \"\\ue530\";\n    public const string Ic_fluent_document_question_mark_20_regular = \"\\ue531\";\n    public const string Ic_fluent_document_question_mark_24_regular = \"\\ue532\";\n    public const string Ic_fluent_document_queue_20_regular = \"\\ue533\";\n    public const string Ic_fluent_document_queue_24_regular = \"\\ue534\";\n    public const string Ic_fluent_document_queue_add_20_regular = \"\\ue535\";\n    public const string Ic_fluent_document_queue_add_24_regular = \"\\ue536\";\n    public const string Ic_fluent_document_queue_multiple_20_regular = \"\\ue537\";\n    public const string Ic_fluent_document_queue_multiple_24_regular = \"\\ue538\";\n    public const string Ic_fluent_document_ribbon_16_regular = \"\\ue539\";\n    public const string Ic_fluent_document_ribbon_20_regular = \"\\ue53a\";\n    public const string Ic_fluent_document_ribbon_24_regular = \"\\ue53b\";\n    public const string Ic_fluent_document_ribbon_28_regular = \"\\ue53c\";\n    public const string Ic_fluent_document_ribbon_32_regular = \"\\ue53d\";\n    public const string Ic_fluent_document_ribbon_48_regular = \"\\ue53e\";\n    public const string Ic_fluent_document_save_20_regular = \"\\ue53f\";\n    public const string Ic_fluent_document_save_24_regular = \"\\ue540\";\n    public const string Ic_fluent_document_search_16_regular = \"\\ue541\";\n    public const string Ic_fluent_document_search_20_regular = \"\\uf3ae\";\n    public const string Ic_fluent_document_search_24_regular = \"\\uf3af\";\n    public const string Ic_fluent_document_settings_16_regular = \"\\uf422\";\n    public const string Ic_fluent_document_settings_20_regular = \"\\ue542\";\n    public const string Ic_fluent_document_split_hint_16_regular = \"\\ue543\";\n    public const string Ic_fluent_document_split_hint_20_regular = \"\\ue544\";\n    public const string Ic_fluent_document_split_hint_24_regular = \"\\uf423\";\n    public const string Ic_fluent_document_split_hint_off_16_regular = \"\\ue545\";\n    public const string Ic_fluent_document_split_hint_off_20_regular = \"\\ue546\";\n    public const string Ic_fluent_document_split_hint_off_24_regular = \"\\uf424\";\n    public const string Ic_fluent_document_sync_16_regular = \"\\ue547\";\n    public const string Ic_fluent_document_sync_20_regular = \"\\ue548\";\n    public const string Ic_fluent_document_sync_24_regular = \"\\ue549\";\n    public const string Ic_fluent_document_table_16_regular = \"\\ue54a\";\n    public const string Ic_fluent_document_table_20_regular = \"\\ue54b\";\n    public const string Ic_fluent_document_table_24_regular = \"\\ue54c\";\n    public const string Ic_fluent_document_table_arrow_right_20_regular = \"\\ue54d\";\n    public const string Ic_fluent_document_table_arrow_right_24_regular = \"\\ue54e\";\n    public const string Ic_fluent_document_table_checkmark_20_regular = \"\\ue54f\";\n    public const string Ic_fluent_document_table_checkmark_24_regular = \"\\ue550\";\n    public const string Ic_fluent_document_table_cube_20_regular = \"\\ue551\";\n    public const string Ic_fluent_document_table_cube_24_regular = \"\\ue552\";\n    public const string Ic_fluent_document_table_search_20_regular = \"\\ue553\";\n    public const string Ic_fluent_document_table_search_24_regular = \"\\ue554\";\n    public const string Ic_fluent_document_table_truck_20_regular = \"\\ue555\";\n    public const string Ic_fluent_document_table_truck_24_regular = \"\\ue556\";\n    public const string Ic_fluent_document_text_20_regular = \"\\ue557\";\n    public const string Ic_fluent_document_text_24_regular = \"\\ue558\";\n    public const string Ic_fluent_document_text_clock_20_regular = \"\\ue559\";\n    public const string Ic_fluent_document_text_clock_24_regular = \"\\ue55a\";\n    public const string Ic_fluent_document_text_extract_20_regular = \"\\ue55b\";\n    public const string Ic_fluent_document_text_extract_24_regular = \"\\ue55c\";\n    public const string Ic_fluent_document_text_link_20_regular = \"\\ue55d\";\n    public const string Ic_fluent_document_text_link_24_regular = \"\\ue55e\";\n    public const string Ic_fluent_document_text_toolbox_20_regular = \"\\ue55f\";\n    public const string Ic_fluent_document_text_toolbox_24_regular = \"\\ue560\";\n    public const string Ic_fluent_document_toolbox_20_regular = \"\\uf3b0\";\n    public const string Ic_fluent_document_toolbox_24_regular = \"\\uf3b1\";\n    public const string Ic_fluent_document_width_20_regular = \"\\uf3b8\";\n    public const string Ic_fluent_document_width_24_regular = \"\\uf3b9\";\n    public const string Ic_fluent_door_16_regular = \"\\ue561\";\n    public const string Ic_fluent_door_20_regular = \"\\ue562\";\n    public const string Ic_fluent_door_28_regular = \"\\ue563\";\n    public const string Ic_fluent_door_arrow_left_16_regular = \"\\ue564\";\n    public const string Ic_fluent_door_arrow_left_20_regular = \"\\ue565\";\n    public const string Ic_fluent_door_arrow_left_24_regular = \"\\ue566\";\n    public const string Ic_fluent_door_arrow_right_16_regular = \"\\ue567\";\n    public const string Ic_fluent_door_arrow_right_20_regular = \"\\ue568\";\n    public const string Ic_fluent_door_arrow_right_28_regular = \"\\ue569\";\n    public const string Ic_fluent_door_tag_20_regular = \"\\ue56a\";\n    public const string Ic_fluent_door_tag_24_regular = \"\\ue56b\";\n    public const string Ic_fluent_double_swipe_down_20_regular = \"\\ue56c\";\n    public const string Ic_fluent_double_swipe_down_24_regular = \"\\uf3ba\";\n    public const string Ic_fluent_double_swipe_up_20_regular = \"\\ue56d\";\n    public const string Ic_fluent_double_swipe_up_24_regular = \"\\uf3bb\";\n    public const string Ic_fluent_double_tap_swipe_down_20_regular = \"\\ue56e\";\n    public const string Ic_fluent_double_tap_swipe_down_24_regular = \"\\ue56f\";\n    public const string Ic_fluent_double_tap_swipe_up_20_regular = \"\\ue570\";\n    public const string Ic_fluent_double_tap_swipe_up_24_regular = \"\\ue571\";\n    public const string Ic_fluent_drafts_16_regular = \"\\uf3be\";\n    public const string Ic_fluent_drafts_20_regular = \"\\uf3bf\";\n    public const string Ic_fluent_drafts_24_regular = \"\\uf3c0\";\n    public const string Ic_fluent_drag_20_regular = \"\\ue572\";\n    public const string Ic_fluent_drag_24_regular = \"\\uf3c1\";\n    public const string Ic_fluent_draw_image_20_regular = \"\\ue573\";\n    public const string Ic_fluent_draw_image_24_regular = \"\\ue574\";\n    public const string Ic_fluent_draw_shape_20_regular = \"\\ue575\";\n    public const string Ic_fluent_draw_shape_24_regular = \"\\ue576\";\n    public const string Ic_fluent_draw_text_20_regular = \"\\ue577\";\n    public const string Ic_fluent_draw_text_24_regular = \"\\ue578\";\n    public const string Ic_fluent_drawer_add_20_regular = \"\\ue579\";\n    public const string Ic_fluent_drawer_add_24_regular = \"\\ue57a\";\n    public const string Ic_fluent_drawer_arrow_download_20_regular = \"\\ue57b\";\n    public const string Ic_fluent_drawer_arrow_download_24_regular = \"\\ue57c\";\n    public const string Ic_fluent_drawer_dismiss_20_regular = \"\\ue57d\";\n    public const string Ic_fluent_drawer_dismiss_24_regular = \"\\ue57e\";\n    public const string Ic_fluent_drawer_play_20_regular = \"\\ue57f\";\n    public const string Ic_fluent_drawer_play_24_regular = \"\\ue580\";\n    public const string Ic_fluent_drawer_subtract_20_regular = \"\\ue581\";\n    public const string Ic_fluent_drawer_subtract_24_regular = \"\\ue582\";\n    public const string Ic_fluent_drink_beer_16_regular = \"\\ue583\";\n    public const string Ic_fluent_drink_beer_20_regular = \"\\ue584\";\n    public const string Ic_fluent_drink_beer_24_regular = \"\\uf3c3\";\n    public const string Ic_fluent_drink_coffee_16_regular = \"\\ue585\";\n    public const string Ic_fluent_drink_coffee_20_regular = \"\\uf3c4\";\n    public const string Ic_fluent_drink_coffee_24_regular = \"\\uf3c5\";\n    public const string Ic_fluent_drink_margarita_16_regular = \"\\ue586\";\n    public const string Ic_fluent_drink_margarita_20_regular = \"\\ue587\";\n    public const string Ic_fluent_drink_margarita_24_regular = \"\\uf3c6\";\n    public const string Ic_fluent_drink_to_go_20_regular = \"\\ue588\";\n    public const string Ic_fluent_drink_to_go_24_regular = \"\\ue589\";\n    public const string Ic_fluent_drink_wine_16_regular = \"\\ue58a\";\n    public const string Ic_fluent_drink_wine_20_regular = \"\\ue58b\";\n    public const string Ic_fluent_drink_wine_24_regular = \"\\uf3c7\";\n    public const string Ic_fluent_drive_train_20_regular = \"\\ue58c\";\n    public const string Ic_fluent_drive_train_24_regular = \"\\ue58d\";\n    public const string Ic_fluent_drop_12_regular = \"\\ue58e\";\n    public const string Ic_fluent_drop_16_regular = \"\\ue58f\";\n    public const string Ic_fluent_drop_20_regular = \"\\ue590\";\n    public const string Ic_fluent_drop_24_regular = \"\\ue591\";\n    public const string Ic_fluent_drop_28_regular = \"\\ue592\";\n    public const string Ic_fluent_drop_48_regular = \"\\ue593\";\n    public const string Ic_fluent_dual_screen_20_regular = \"\\ue594\";\n    public const string Ic_fluent_dual_screen_24_regular = \"\\uf3c8\";\n    public const string Ic_fluent_dual_screen_add_20_regular = \"\\ue595\";\n    public const string Ic_fluent_dual_screen_add_24_regular = \"\\uf3c9\";\n    public const string Ic_fluent_dual_screen_arrow_right_20_regular = \"\\ue596\";\n    public const string Ic_fluent_dual_screen_arrow_right_24_regular = \"\\uf3ca\";\n    public const string Ic_fluent_dual_screen_arrow_up_20_regular = \"\\ue597\";\n    public const string Ic_fluent_dual_screen_arrow_up_24_regular = \"\\ue598\";\n    public const string Ic_fluent_dual_screen_clock_20_regular = \"\\ue599\";\n    public const string Ic_fluent_dual_screen_clock_24_regular = \"\\uf3cb\";\n    public const string Ic_fluent_dual_screen_closed_alert_20_regular = \"\\ue59a\";\n    public const string Ic_fluent_dual_screen_closed_alert_24_regular = \"\\ue59b\";\n    public const string Ic_fluent_dual_screen_desktop_20_regular = \"\\ue59c\";\n    public const string Ic_fluent_dual_screen_desktop_24_regular = \"\\uf3cc\";\n    public const string Ic_fluent_dual_screen_dismiss_20_regular = \"\\ue59d\";\n    public const string Ic_fluent_dual_screen_dismiss_24_regular = \"\\ue59e\";\n    public const string Ic_fluent_dual_screen_group_20_regular = \"\\ue59f\";\n    public const string Ic_fluent_dual_screen_group_24_regular = \"\\uf3ce\";\n    public const string Ic_fluent_dual_screen_header_20_regular = \"\\ue5a0\";\n    public const string Ic_fluent_dual_screen_header_24_regular = \"\\uf3cf\";\n    public const string Ic_fluent_dual_screen_lock_20_regular = \"\\ue5a1\";\n    public const string Ic_fluent_dual_screen_lock_24_regular = \"\\uf3d0\";\n    public const string Ic_fluent_dual_screen_mirror_20_regular = \"\\ue5a2\";\n    public const string Ic_fluent_dual_screen_mirror_24_regular = \"\\uf3d1\";\n    public const string Ic_fluent_dual_screen_pagination_20_regular = \"\\ue5a3\";\n    public const string Ic_fluent_dual_screen_pagination_24_regular = \"\\uf3d2\";\n    public const string Ic_fluent_dual_screen_settings_20_regular = \"\\ue5a4\";\n    public const string Ic_fluent_dual_screen_settings_24_regular = \"\\uf3d3\";\n    public const string Ic_fluent_dual_screen_span_20_regular = \"\\ue5a5\";\n    public const string Ic_fluent_dual_screen_span_24_regular = \"\\ue5a6\";\n    public const string Ic_fluent_dual_screen_speaker_20_regular = \"\\ue5a7\";\n    public const string Ic_fluent_dual_screen_speaker_24_regular = \"\\ue5a8\";\n    public const string Ic_fluent_dual_screen_status_bar_20_regular = \"\\ue5a9\";\n    public const string Ic_fluent_dual_screen_status_bar_24_regular = \"\\uf3d4\";\n    public const string Ic_fluent_dual_screen_tablet_20_regular = \"\\ue5aa\";\n    public const string Ic_fluent_dual_screen_tablet_24_regular = \"\\uf3d5\";\n    public const string Ic_fluent_dual_screen_update_20_regular = \"\\ue5ab\";\n    public const string Ic_fluent_dual_screen_update_24_regular = \"\\uf3d6\";\n    public const string Ic_fluent_dual_screen_vertical_scroll_20_regular = \"\\ue5ac\";\n    public const string Ic_fluent_dual_screen_vertical_scroll_24_regular = \"\\uf3d7\";\n    public const string Ic_fluent_dual_screen_vibrate_20_regular = \"\\ue5ad\";\n    public const string Ic_fluent_dual_screen_vibrate_24_regular = \"\\uf3d8\";\n    public const string Ic_fluent_dumbbell_16_regular = \"\\ue5ae\";\n    public const string Ic_fluent_dumbbell_20_regular = \"\\ue5af\";\n    public const string Ic_fluent_dumbbell_24_regular = \"\\ue5b0\";\n    public const string Ic_fluent_dumbbell_28_regular = \"\\ue5b1\";\n    public const string Ic_fluent_earth_16_regular = \"\\uf3d9\";\n    public const string Ic_fluent_earth_20_regular = \"\\uf3da\";\n    public const string Ic_fluent_earth_24_regular = \"\\uf3db\";\n    public const string Ic_fluent_edit_16_regular = \"\\uf3dc\";\n    public const string Ic_fluent_edit_20_regular = \"\\uf3dd\";\n    public const string Ic_fluent_edit_24_regular = \"\\uf3de\";\n    public const string Ic_fluent_edit_28_regular = \"\\ue5b2\";\n    public const string Ic_fluent_edit_32_regular = \"\\ue5b3\";\n    public const string Ic_fluent_edit_48_regular = \"\\ue5b4\";\n    public const string Ic_fluent_edit_arrow_back_16_regular = \"\\uf429\";\n    public const string Ic_fluent_edit_arrow_back_20_regular = \"\\ue5b5\";\n    public const string Ic_fluent_edit_off_16_regular = \"\\ue5b6\";\n    public const string Ic_fluent_edit_off_20_regular = \"\\ue5b7\";\n    public const string Ic_fluent_edit_off_24_regular = \"\\ue5b8\";\n    public const string Ic_fluent_edit_off_28_regular = \"\\ue5b9\";\n    public const string Ic_fluent_edit_off_32_regular = \"\\ue5ba\";\n    public const string Ic_fluent_edit_off_48_regular = \"\\ue5bb\";\n    public const string Ic_fluent_edit_prohibited_16_regular = \"\\ue5bc\";\n    public const string Ic_fluent_edit_prohibited_20_regular = \"\\ue5bd\";\n    public const string Ic_fluent_edit_prohibited_24_regular = \"\\ue5be\";\n    public const string Ic_fluent_edit_prohibited_28_regular = \"\\ue5bf\";\n    public const string Ic_fluent_edit_prohibited_32_regular = \"\\ue5c0\";\n    public const string Ic_fluent_edit_prohibited_48_regular = \"\\ue5c1\";\n    public const string Ic_fluent_edit_settings_20_regular = \"\\ue5c2\";\n    public const string Ic_fluent_edit_settings_24_regular = \"\\ue5c3\";\n    public const string Ic_fluent_emoji_16_regular = \"\\uf3df\";\n    public const string Ic_fluent_emoji_20_regular = \"\\uf3e0\";\n    public const string Ic_fluent_emoji_24_regular = \"\\uf3e1\";\n    public const string Ic_fluent_emoji_28_regular = \"\\ue5c4\";\n    public const string Ic_fluent_emoji_32_regular = \"\\ue5c5\";\n    public const string Ic_fluent_emoji_48_regular = \"\\ue5c6\";\n    public const string Ic_fluent_emoji_add_16_regular = \"\\ue5c7\";\n    public const string Ic_fluent_emoji_add_20_regular = \"\\ue5c8\";\n    public const string Ic_fluent_emoji_add_24_regular = \"\\uf3e2\";\n    public const string Ic_fluent_emoji_angry_20_regular = \"\\uf3e3\";\n    public const string Ic_fluent_emoji_angry_24_regular = \"\\uf3e4\";\n    public const string Ic_fluent_emoji_edit_16_regular = \"\\ue5c9\";\n    public const string Ic_fluent_emoji_edit_20_regular = \"\\ue5ca\";\n    public const string Ic_fluent_emoji_edit_24_regular = \"\\ue5cb\";\n    public const string Ic_fluent_emoji_edit_28_regular = \"\\ue5cc\";\n    public const string Ic_fluent_emoji_edit_48_regular = \"\\ue5cd\";\n    public const string Ic_fluent_emoji_hand_20_regular = \"\\ue5ce\";\n    public const string Ic_fluent_emoji_hand_24_regular = \"\\ue5cf\";\n    public const string Ic_fluent_emoji_hand_28_regular = \"\\ue5d0\";\n    public const string Ic_fluent_emoji_laugh_16_regular = \"\\ue5d1\";\n    public const string Ic_fluent_emoji_laugh_20_regular = \"\\uf3e5\";\n    public const string Ic_fluent_emoji_laugh_24_regular = \"\\uf3e6\";\n    public const string Ic_fluent_emoji_meh_20_regular = \"\\uf3e7\";\n    public const string Ic_fluent_emoji_meh_24_regular = \"\\uf3e8\";\n    public const string Ic_fluent_emoji_multiple_20_regular = \"\\ue5d2\";\n    public const string Ic_fluent_emoji_multiple_24_regular = \"\\ue5d3\";\n    public const string Ic_fluent_emoji_sad_16_regular = \"\\ue5d4\";\n    public const string Ic_fluent_emoji_sad_20_regular = \"\\uf3e9\";\n    public const string Ic_fluent_emoji_sad_24_regular = \"\\uf3ea\";\n    public const string Ic_fluent_emoji_sad_slight_20_regular = \"\\ue5d5\";\n    public const string Ic_fluent_emoji_sad_slight_24_regular = \"\\ue5d6\";\n    public const string Ic_fluent_emoji_smile_slight_20_regular = \"\\ue5d7\";\n    public const string Ic_fluent_emoji_smile_slight_24_regular = \"\\ue5d8\";\n    public const string Ic_fluent_emoji_sparkle_16_regular = \"\\ue5d9\";\n    public const string Ic_fluent_emoji_sparkle_20_regular = \"\\ue5da\";\n    public const string Ic_fluent_emoji_sparkle_24_regular = \"\\ue5db\";\n    public const string Ic_fluent_emoji_sparkle_28_regular = \"\\ue5dc\";\n    public const string Ic_fluent_emoji_sparkle_32_regular = \"\\ue5dd\";\n    public const string Ic_fluent_emoji_sparkle_48_regular = \"\\ue5de\";\n    public const string Ic_fluent_emoji_surprise_20_regular = \"\\uf3eb\";\n    public const string Ic_fluent_emoji_surprise_24_regular = \"\\uf3ec\";\n    public const string Ic_fluent_engine_20_regular = \"\\ue5df\";\n    public const string Ic_fluent_engine_24_regular = \"\\ue5e0\";\n    public const string Ic_fluent_equal_circle_20_regular = \"\\ue5e1\";\n    public const string Ic_fluent_equal_circle_24_regular = \"\\ue5e2\";\n    public const string Ic_fluent_equal_off_20_regular = \"\\uf42a\";\n    public const string Ic_fluent_equal_off_24_regular = \"\\ue5e3\";\n    public const string Ic_fluent_eraser_20_regular = \"\\ue5e4\";\n    public const string Ic_fluent_eraser_24_regular = \"\\ue5e5\";\n    public const string Ic_fluent_eraser_medium_20_regular = \"\\ue5e6\";\n    public const string Ic_fluent_eraser_medium_24_regular = \"\\ue5e7\";\n    public const string Ic_fluent_eraser_segment_20_regular = \"\\ue5e8\";\n    public const string Ic_fluent_eraser_segment_24_regular = \"\\ue5e9\";\n    public const string Ic_fluent_eraser_small_20_regular = \"\\ue5ea\";\n    public const string Ic_fluent_eraser_small_24_regular = \"\\ue5eb\";\n    public const string Ic_fluent_eraser_tool_20_regular = \"\\ue5ec\";\n    public const string Ic_fluent_eraser_tool_24_regular = \"\\uf3ef\";\n    public const string Ic_fluent_error_circle_12_regular = \"\\ue5ed\";\n    public const string Ic_fluent_error_circle_16_regular = \"\\uf3f0\";\n    public const string Ic_fluent_error_circle_20_regular = \"\\uf3f1\";\n    public const string Ic_fluent_error_circle_24_regular = \"\\uf3f2\";\n    public const string Ic_fluent_error_circle_settings_16_regular = \"\\uf42b\";\n    public const string Ic_fluent_error_circle_settings_20_regular = \"\\ue5ee\";\n    public const string Ic_fluent_expand_up_left_16_regular = \"\\uf42c\";\n    public const string Ic_fluent_expand_up_left_20_regular = \"\\uf431\";\n    public const string Ic_fluent_expand_up_left_24_regular = \"\\uf432\";\n    public const string Ic_fluent_expand_up_left_28_regular = \"\\uf433\";\n    public const string Ic_fluent_expand_up_left_32_regular = \"\\uf44b\";\n    public const string Ic_fluent_expand_up_left_48_regular = \"\\uf44c\";\n    public const string Ic_fluent_expand_up_right_16_regular = \"\\uf44f\";\n    public const string Ic_fluent_expand_up_right_20_regular = \"\\uf450\";\n    public const string Ic_fluent_expand_up_right_24_regular = \"\\uf46d\";\n    public const string Ic_fluent_expand_up_right_28_regular = \"\\uf495\";\n    public const string Ic_fluent_expand_up_right_32_regular = \"\\uf496\";\n    public const string Ic_fluent_expand_up_right_48_regular = \"\\uf497\";\n    public const string Ic_fluent_extended_dock_20_regular = \"\\ue5ef\";\n    public const string Ic_fluent_extended_dock_24_regular = \"\\uf3f4\";\n    public const string Ic_fluent_eye_12_regular = \"\\ue5f0\";\n    public const string Ic_fluent_eye_16_regular = \"\\ue5f1\";\n    public const string Ic_fluent_eye_20_regular = \"\\ue5f2\";\n    public const string Ic_fluent_eye_24_regular = \"\\ue5f3\";\n    public const string Ic_fluent_eye_off_16_regular = \"\\ue5f4\";\n    public const string Ic_fluent_eye_off_20_regular = \"\\ue5f5\";\n    public const string Ic_fluent_eye_off_24_regular = \"\\ue5f6\";\n    public const string Ic_fluent_eye_tracking_16_regular = \"\\ue5f7\";\n    public const string Ic_fluent_eye_tracking_20_regular = \"\\ue5f8\";\n    public const string Ic_fluent_eye_tracking_24_regular = \"\\ue5f9\";\n    public const string Ic_fluent_eye_tracking_off_16_regular = \"\\ue5fa\";\n    public const string Ic_fluent_eye_tracking_off_20_regular = \"\\ue5fb\";\n    public const string Ic_fluent_eye_tracking_off_24_regular = \"\\ue5fc\";\n    public const string Ic_fluent_eyedropper_20_regular = \"\\ue5fd\";\n    public const string Ic_fluent_eyedropper_24_regular = \"\\ue5fe\";\n    public const string Ic_fluent_eyedropper_off_20_regular = \"\\ue5ff\";\n    public const string Ic_fluent_eyedropper_off_24_regular = \"\\ue600\";\n    public const string Ic_fluent_f_stop_16_regular = \"\\ue601\";\n    public const string Ic_fluent_f_stop_20_regular = \"\\ue602\";\n    public const string Ic_fluent_f_stop_24_regular = \"\\ue603\";\n    public const string Ic_fluent_f_stop_28_regular = \"\\ue604\";\n    public const string Ic_fluent_fast_acceleration_20_regular = \"\\ue605\";\n    public const string Ic_fluent_fast_acceleration_24_regular = \"\\uf3fd\";\n    public const string Ic_fluent_fast_forward_16_regular = \"\\ue606\";\n    public const string Ic_fluent_fast_forward_20_regular = \"\\uf3fe\";\n    public const string Ic_fluent_fast_forward_24_regular = \"\\uf3ff\";\n    public const string Ic_fluent_fast_forward_28_regular = \"\\ue607\";\n    public const string Ic_fluent_fax_16_regular = \"\\uf4ae\";\n    public const string Ic_fluent_fax_20_regular = \"\\ue608\";\n    public const string Ic_fluent_filter_12_regular = \"\\ue609\";\n    public const string Ic_fluent_filter_16_regular = \"\\ue60a\";\n    public const string Ic_fluent_filter_20_regular = \"\\uf406\";\n    public const string Ic_fluent_filter_24_regular = \"\\uf407\";\n    public const string Ic_fluent_filter_28_regular = \"\\uf408\";\n    public const string Ic_fluent_filter_add_20_regular = \"\\ue60b\";\n    public const string Ic_fluent_filter_dismiss_16_regular = \"\\ue60c\";\n    public const string Ic_fluent_filter_dismiss_20_regular = \"\\ue60d\";\n    public const string Ic_fluent_filter_dismiss_24_regular = \"\\ue60e\";\n    public const string Ic_fluent_filter_sync_20_regular = \"\\ue60f\";\n    public const string Ic_fluent_filter_sync_24_regular = \"\\ue610\";\n    public const string Ic_fluent_fingerprint_20_regular = \"\\ue611\";\n    public const string Ic_fluent_fingerprint_24_regular = \"\\uf409\";\n    public const string Ic_fluent_fingerprint_48_regular = \"\\ue612\";\n    public const string Ic_fluent_fixed_width_20_regular = \"\\ue613\";\n    public const string Ic_fluent_fixed_width_24_regular = \"\\ue614\";\n    public const string Ic_fluent_flag_16_regular = \"\\uf40a\";\n    public const string Ic_fluent_flag_20_regular = \"\\uf40b\";\n    public const string Ic_fluent_flag_24_regular = \"\\uf40c\";\n    public const string Ic_fluent_flag_28_regular = \"\\uf40d\";\n    public const string Ic_fluent_flag_48_regular = \"\\uf40e\";\n    public const string Ic_fluent_flag_off_16_regular = \"\\ue615\";\n    public const string Ic_fluent_flag_off_20_regular = \"\\ue616\";\n    public const string Ic_fluent_flag_off_24_regular = \"\\uf40f\";\n    public const string Ic_fluent_flag_off_28_regular = \"\\uf410\";\n    public const string Ic_fluent_flag_off_48_regular = \"\\uf411\";\n    public const string Ic_fluent_flash_16_regular = \"\\ue617\";\n    public const string Ic_fluent_flash_20_regular = \"\\ue618\";\n    public const string Ic_fluent_flash_24_regular = \"\\ue619\";\n    public const string Ic_fluent_flash_28_regular = \"\\ue61a\";\n    public const string Ic_fluent_flash_add_20_regular = \"\\ue61b\";\n    public const string Ic_fluent_flash_auto_20_regular = \"\\ue61c\";\n    public const string Ic_fluent_flash_auto_24_regular = \"\\uf412\";\n    public const string Ic_fluent_flash_checkmark_16_regular = \"\\ue61d\";\n    public const string Ic_fluent_flash_checkmark_20_regular = \"\\ue61e\";\n    public const string Ic_fluent_flash_checkmark_24_regular = \"\\ue61f\";\n    public const string Ic_fluent_flash_checkmark_28_regular = \"\\ue620\";\n    public const string Ic_fluent_flash_flow_16_regular = \"\\ue621\";\n    public const string Ic_fluent_flash_flow_20_regular = \"\\ue622\";\n    public const string Ic_fluent_flash_flow_24_regular = \"\\ue623\";\n    public const string Ic_fluent_flash_off_20_regular = \"\\ue624\";\n    public const string Ic_fluent_flash_off_24_regular = \"\\uf413\";\n    public const string Ic_fluent_flash_play_20_regular = \"\\ue625\";\n    public const string Ic_fluent_flash_settings_20_regular = \"\\ue626\";\n    public const string Ic_fluent_flash_settings_24_regular = \"\\ue627\";\n    public const string Ic_fluent_flashlight_16_regular = \"\\ue628\";\n    public const string Ic_fluent_flashlight_20_regular = \"\\ue629\";\n    public const string Ic_fluent_flashlight_24_regular = \"\\uf416\";\n    public const string Ic_fluent_flashlight_off_20_regular = \"\\ue62a\";\n    public const string Ic_fluent_flashlight_off_24_regular = \"\\uf417\";\n    public const string Ic_fluent_flip_horizontal_16_regular = \"\\ue62b\";\n    public const string Ic_fluent_flip_horizontal_20_regular = \"\\ue62c\";\n    public const string Ic_fluent_flip_horizontal_24_regular = \"\\ue62d\";\n    public const string Ic_fluent_flip_horizontal_28_regular = \"\\ue62e\";\n    public const string Ic_fluent_flip_horizontal_32_regular = \"\\ue62f\";\n    public const string Ic_fluent_flip_horizontal_48_regular = \"\\ue630\";\n    public const string Ic_fluent_flip_vertical_16_regular = \"\\ue631\";\n    public const string Ic_fluent_flip_vertical_20_regular = \"\\ue632\";\n    public const string Ic_fluent_flip_vertical_24_regular = \"\\ue633\";\n    public const string Ic_fluent_flip_vertical_28_regular = \"\\ue634\";\n    public const string Ic_fluent_flip_vertical_32_regular = \"\\ue635\";\n    public const string Ic_fluent_flip_vertical_48_regular = \"\\ue636\";\n    public const string Ic_fluent_flow_16_regular = \"\\uf4af\";\n    public const string Ic_fluent_flow_20_regular = \"\\ue637\";\n    public const string Ic_fluent_flowchart_20_regular = \"\\ue638\";\n    public const string Ic_fluent_flowchart_24_regular = \"\\ue639\";\n    public const string Ic_fluent_flowchart_circle_20_regular = \"\\ue63a\";\n    public const string Ic_fluent_flowchart_circle_24_regular = \"\\ue63b\";\n    public const string Ic_fluent_fluent_20_regular = \"\\ue63c\";\n    public const string Ic_fluent_fluent_24_regular = \"\\ue63d\";\n    public const string Ic_fluent_fluent_32_regular = \"\\ue63e\";\n    public const string Ic_fluent_fluent_48_regular = \"\\ue63f\";\n    public const string Ic_fluent_fluid_16_regular = \"\\ue640\";\n    public const string Ic_fluent_fluid_20_regular = \"\\ue641\";\n    public const string Ic_fluent_fluid_24_regular = \"\\ue642\";\n    public const string Ic_fluent_folder_16_regular = \"\\ue643\";\n    public const string Ic_fluent_folder_20_regular = \"\\uf418\";\n    public const string Ic_fluent_folder_24_regular = \"\\uf419\";\n    public const string Ic_fluent_folder_28_regular = \"\\uf41a\";\n    public const string Ic_fluent_folder_32_regular = \"\\ue644\";\n    public const string Ic_fluent_folder_48_regular = \"\\uf41b\";\n    public const string Ic_fluent_folder_add_16_regular = \"\\ue645\";\n    public const string Ic_fluent_folder_add_20_regular = \"\\uf41c\";\n    public const string Ic_fluent_folder_add_24_regular = \"\\uf41d\";\n    public const string Ic_fluent_folder_add_28_regular = \"\\uf41e\";\n    public const string Ic_fluent_folder_add_48_regular = \"\\uf41f\";\n    public const string Ic_fluent_folder_arrow_left_16_regular = \"\\ue646\";\n    public const string Ic_fluent_folder_arrow_left_20_regular = \"\\ue647\";\n    public const string Ic_fluent_folder_arrow_left_24_regular = \"\\ue648\";\n    public const string Ic_fluent_folder_arrow_left_28_regular = \"\\ue649\";\n    public const string Ic_fluent_folder_arrow_left_32_regular = \"\\ue64a\";\n    public const string Ic_fluent_folder_arrow_right_16_regular = \"\\ue64b\";\n    public const string Ic_fluent_folder_arrow_right_20_regular = \"\\ue64c\";\n    public const string Ic_fluent_folder_arrow_right_24_regular = \"\\ue64d\";\n    public const string Ic_fluent_folder_arrow_right_28_regular = \"\\ue64e\";\n    public const string Ic_fluent_folder_arrow_right_48_regular = \"\\ue64f\";\n    public const string Ic_fluent_folder_arrow_up_16_regular = \"\\ue650\";\n    public const string Ic_fluent_folder_arrow_up_20_regular = \"\\ue651\";\n    public const string Ic_fluent_folder_arrow_up_24_regular = \"\\ue652\";\n    public const string Ic_fluent_folder_arrow_up_28_regular = \"\\ue653\";\n    public const string Ic_fluent_folder_arrow_up_48_regular = \"\\ue654\";\n    public const string Ic_fluent_folder_briefcase_20_regular = \"\\uf420\";\n    public const string Ic_fluent_folder_globe_16_regular = \"\\uf4b1\";\n    public const string Ic_fluent_folder_globe_20_regular = \"\\ue655\";\n    public const string Ic_fluent_folder_link_20_regular = \"\\uf425\";\n    public const string Ic_fluent_folder_link_24_regular = \"\\uf426\";\n    public const string Ic_fluent_folder_link_28_regular = \"\\uf427\";\n    public const string Ic_fluent_folder_link_48_regular = \"\\uf428\";\n    public const string Ic_fluent_folder_mail_16_regular = \"\\ue656\";\n    public const string Ic_fluent_folder_mail_20_regular = \"\\ue657\";\n    public const string Ic_fluent_folder_mail_24_regular = \"\\ue658\";\n    public const string Ic_fluent_folder_mail_28_regular = \"\\ue659\";\n    public const string Ic_fluent_folder_open_16_regular = \"\\uf42d\";\n    public const string Ic_fluent_folder_open_20_regular = \"\\uf42e\";\n    public const string Ic_fluent_folder_open_24_regular = \"\\uf42f\";\n    public const string Ic_fluent_folder_open_vertical_20_regular = \"\\uf430\";\n    public const string Ic_fluent_folder_person_16_regular = \"\\uf4c6\";\n    public const string Ic_fluent_folder_person_20_regular = \"\\ue65a\";\n    public const string Ic_fluent_folder_prohibited_16_regular = \"\\ue65b\";\n    public const string Ic_fluent_folder_prohibited_20_regular = \"\\ue65c\";\n    public const string Ic_fluent_folder_prohibited_24_regular = \"\\ue65d\";\n    public const string Ic_fluent_folder_prohibited_28_regular = \"\\ue65e\";\n    public const string Ic_fluent_folder_prohibited_48_regular = \"\\ue65f\";\n    public const string Ic_fluent_folder_swap_16_regular = \"\\ue660\";\n    public const string Ic_fluent_folder_swap_20_regular = \"\\ue661\";\n    public const string Ic_fluent_folder_swap_24_regular = \"\\ue662\";\n    public const string Ic_fluent_folder_sync_16_regular = \"\\ue663\";\n    public const string Ic_fluent_folder_sync_20_regular = \"\\ue664\";\n    public const string Ic_fluent_folder_sync_24_regular = \"\\ue665\";\n    public const string Ic_fluent_folder_zip_16_regular = \"\\uf434\";\n    public const string Ic_fluent_folder_zip_20_regular = \"\\uf435\";\n    public const string Ic_fluent_folder_zip_24_regular = \"\\uf436\";\n    public const string Ic_fluent_font_decrease_20_regular = \"\\uf437\";\n    public const string Ic_fluent_font_decrease_24_regular = \"\\uf438\";\n    public const string Ic_fluent_font_increase_20_regular = \"\\uf439\";\n    public const string Ic_fluent_font_increase_24_regular = \"\\uf43a\";\n    public const string Ic_fluent_font_space_tracking_in_16_regular = \"\\uf43b\";\n    public const string Ic_fluent_font_space_tracking_in_20_regular = \"\\uf43c\";\n    public const string Ic_fluent_font_space_tracking_in_24_regular = \"\\uf43d\";\n    public const string Ic_fluent_font_space_tracking_in_28_regular = \"\\uf43e\";\n    public const string Ic_fluent_font_space_tracking_out_16_regular = \"\\uf43f\";\n    public const string Ic_fluent_font_space_tracking_out_20_regular = \"\\uf440\";\n    public const string Ic_fluent_font_space_tracking_out_24_regular = \"\\uf441\";\n    public const string Ic_fluent_font_space_tracking_out_28_regular = \"\\uf442\";\n    public const string Ic_fluent_food_16_regular = \"\\ue666\";\n    public const string Ic_fluent_food_20_regular = \"\\uf443\";\n    public const string Ic_fluent_food_24_regular = \"\\uf444\";\n    public const string Ic_fluent_food_apple_20_regular = \"\\ue667\";\n    public const string Ic_fluent_food_apple_24_regular = \"\\ue668\";\n    public const string Ic_fluent_food_cake_12_regular = \"\\ue669\";\n    public const string Ic_fluent_food_cake_16_regular = \"\\ue66a\";\n    public const string Ic_fluent_food_cake_20_regular = \"\\ue66b\";\n    public const string Ic_fluent_food_cake_24_regular = \"\\uf445\";\n    public const string Ic_fluent_food_egg_16_regular = \"\\ue66c\";\n    public const string Ic_fluent_food_egg_20_regular = \"\\ue66d\";\n    public const string Ic_fluent_food_egg_24_regular = \"\\uf446\";\n    public const string Ic_fluent_food_grains_20_regular = \"\\ue66e\";\n    public const string Ic_fluent_food_grains_24_regular = \"\\ue66f\";\n    public const string Ic_fluent_food_pizza_20_regular = \"\\ue670\";\n    public const string Ic_fluent_food_pizza_24_regular = \"\\ue671\";\n    public const string Ic_fluent_food_toast_16_regular = \"\\ue672\";\n    public const string Ic_fluent_food_toast_20_regular = \"\\ue673\";\n    public const string Ic_fluent_food_toast_24_regular = \"\\uf447\";\n    public const string Ic_fluent_form_20_regular = \"\\ueea7\";\n    public const string Ic_fluent_form_24_regular = \"\\ueea8\";\n    public const string Ic_fluent_form_28_regular = \"\\ueea9\";\n    public const string Ic_fluent_form_48_regular = \"\\ueeaa\";\n    public const string Ic_fluent_form_new_20_regular = \"\\ue674\";\n    public const string Ic_fluent_form_new_24_regular = \"\\uf448\";\n    public const string Ic_fluent_form_new_28_regular = \"\\uf449\";\n    public const string Ic_fluent_form_new_48_regular = \"\\uf44a\";\n    public const string Ic_fluent_fps_120_20_regular = \"\\ue675\";\n    public const string Ic_fluent_fps_120_24_regular = \"\\ue676\";\n    public const string Ic_fluent_fps_240_20_regular = \"\\ue677\";\n    public const string Ic_fluent_fps_240_24_regular = \"\\uf44d\";\n    public const string Ic_fluent_fps_30_16_regular = \"\\ue678\";\n    public const string Ic_fluent_fps_30_20_regular = \"\\ue679\";\n    public const string Ic_fluent_fps_30_24_regular = \"\\ue67a\";\n    public const string Ic_fluent_fps_30_28_regular = \"\\ue67b\";\n    public const string Ic_fluent_fps_30_48_regular = \"\\ue67c\";\n    public const string Ic_fluent_fps_60_16_regular = \"\\ue67d\";\n    public const string Ic_fluent_fps_60_20_regular = \"\\ue67e\";\n    public const string Ic_fluent_fps_60_24_regular = \"\\ue67f\";\n    public const string Ic_fluent_fps_60_28_regular = \"\\ue680\";\n    public const string Ic_fluent_fps_60_48_regular = \"\\ue681\";\n    public const string Ic_fluent_fps_960_20_regular = \"\\ue682\";\n    public const string Ic_fluent_fps_960_24_regular = \"\\uf44e\";\n    public const string Ic_fluent_full_screen_maximize_16_regular = \"\\ue683\";\n    public const string Ic_fluent_full_screen_maximize_20_regular = \"\\ue684\";\n    public const string Ic_fluent_full_screen_maximize_24_regular = \"\\ue685\";\n    public const string Ic_fluent_full_screen_minimize_16_regular = \"\\ue686\";\n    public const string Ic_fluent_full_screen_minimize_20_regular = \"\\ue687\";\n    public const string Ic_fluent_full_screen_minimize_24_regular = \"\\ue688\";\n    public const string Ic_fluent_games_16_regular = \"\\ue689\";\n    public const string Ic_fluent_games_20_regular = \"\\ue68a\";\n    public const string Ic_fluent_games_24_regular = \"\\uf451\";\n    public const string Ic_fluent_games_28_regular = \"\\ue68b\";\n    public const string Ic_fluent_games_32_regular = \"\\ue68c\";\n    public const string Ic_fluent_games_48_regular = \"\\ue68d\";\n    public const string Ic_fluent_gantt_chart_20_regular = \"\\ue68e\";\n    public const string Ic_fluent_gantt_chart_24_regular = \"\\ue68f\";\n    public const string Ic_fluent_gas_20_regular = \"\\ue690\";\n    public const string Ic_fluent_gas_24_regular = \"\\ue691\";\n    public const string Ic_fluent_gas_pump_20_regular = \"\\ue692\";\n    public const string Ic_fluent_gas_pump_24_regular = \"\\ue693\";\n    public const string Ic_fluent_gather_20_regular = \"\\ue694\";\n    public const string Ic_fluent_gauge_20_regular = \"\\uf4c7\";\n    public const string Ic_fluent_gauge_24_regular = \"\\uf4c8\";\n    public const string Ic_fluent_gauge_add_20_regular = \"\\ue695\";\n    public const string Ic_fluent_gavel_20_regular = \"\\ue696\";\n    public const string Ic_fluent_gavel_24_regular = \"\\ue697\";\n    public const string Ic_fluent_gavel_32_regular = \"\\ue698\";\n    public const string Ic_fluent_gesture_20_regular = \"\\ue699\";\n    public const string Ic_fluent_gesture_24_regular = \"\\uf452\";\n    public const string Ic_fluent_gif_16_regular = \"\\ue69a\";\n    public const string Ic_fluent_gif_20_regular = \"\\uf453\";\n    public const string Ic_fluent_gif_24_regular = \"\\uf454\";\n    public const string Ic_fluent_gift_16_regular = \"\\ue69b\";\n    public const string Ic_fluent_gift_20_regular = \"\\uf455\";\n    public const string Ic_fluent_gift_24_regular = \"\\uf456\";\n    public const string Ic_fluent_gift_card_16_regular = \"\\uf4cd\";\n    public const string Ic_fluent_gift_card_20_regular = \"\\uf4ce\";\n    public const string Ic_fluent_gift_card_24_regular = \"\\ue69c\";\n    public const string Ic_fluent_gift_card_add_20_regular = \"\\uf4cf\";\n    public const string Ic_fluent_gift_card_add_24_regular = \"\\ue69d\";\n    public const string Ic_fluent_gift_card_arrow_right_20_regular = \"\\ue69e\";\n    public const string Ic_fluent_gift_card_arrow_right_24_regular = \"\\ue69f\";\n    public const string Ic_fluent_gift_card_money_20_regular = \"\\ue6a0\";\n    public const string Ic_fluent_gift_card_money_24_regular = \"\\ue6a1\";\n    public const string Ic_fluent_gift_card_multiple_20_regular = \"\\ue6a2\";\n    public const string Ic_fluent_gift_card_multiple_24_regular = \"\\ue6a3\";\n    public const string Ic_fluent_glance_20_regular = \"\\ue6a4\";\n    public const string Ic_fluent_glance_24_regular = \"\\uf457\";\n    public const string Ic_fluent_glance_default_12_regular = \"\\ue6a5\";\n    public const string Ic_fluent_glance_horizontal_12_regular = \"\\ue6a6\";\n    public const string Ic_fluent_glance_horizontal_20_regular = \"\\ue6a7\";\n    public const string Ic_fluent_glance_horizontal_24_regular = \"\\ue6a8\";\n    public const string Ic_fluent_glasses_16_regular = \"\\ue6a9\";\n    public const string Ic_fluent_glasses_20_regular = \"\\ue6aa\";\n    public const string Ic_fluent_glasses_24_regular = \"\\uf458\";\n    public const string Ic_fluent_glasses_28_regular = \"\\ue6ab\";\n    public const string Ic_fluent_glasses_48_regular = \"\\ue6ac\";\n    public const string Ic_fluent_glasses_off_16_regular = \"\\ue6ad\";\n    public const string Ic_fluent_glasses_off_20_regular = \"\\ue6ae\";\n    public const string Ic_fluent_glasses_off_24_regular = \"\\uf459\";\n    public const string Ic_fluent_glasses_off_28_regular = \"\\ue6af\";\n    public const string Ic_fluent_glasses_off_48_regular = \"\\ue6b0\";\n    public const string Ic_fluent_globe_16_regular = \"\\ue6b1\";\n    public const string Ic_fluent_globe_20_regular = \"\\uf45a\";\n    public const string Ic_fluent_globe_24_regular = \"\\uf45b\";\n    public const string Ic_fluent_globe_32_regular = \"\\ue6b2\";\n    public const string Ic_fluent_globe_add_20_regular = \"\\ue6b3\";\n    public const string Ic_fluent_globe_add_24_regular = \"\\uf45c\";\n    public const string Ic_fluent_globe_clock_16_regular = \"\\ue6b4\";\n    public const string Ic_fluent_globe_clock_20_regular = \"\\ue6b5\";\n    public const string Ic_fluent_globe_clock_24_regular = \"\\uf45d\";\n    public const string Ic_fluent_globe_desktop_20_regular = \"\\ue6b6\";\n    public const string Ic_fluent_globe_desktop_24_regular = \"\\uf45e\";\n    public const string Ic_fluent_globe_location_20_regular = \"\\uf4dc\";\n    public const string Ic_fluent_globe_location_24_regular = \"\\uf45f\";\n    public const string Ic_fluent_globe_person_20_regular = \"\\ue6b7\";\n    public const string Ic_fluent_globe_person_24_regular = \"\\ue6b8\";\n    public const string Ic_fluent_globe_prohibited_20_regular = \"\\ue6b9\";\n    public const string Ic_fluent_globe_search_20_regular = \"\\ue6ba\";\n    public const string Ic_fluent_globe_search_24_regular = \"\\uf460\";\n    public const string Ic_fluent_globe_shield_20_regular = \"\\ue6bb\";\n    public const string Ic_fluent_globe_shield_24_regular = \"\\ue6bc\";\n    public const string Ic_fluent_globe_star_16_regular = \"\\uf4eb\";\n    public const string Ic_fluent_globe_star_20_regular = \"\\ue6bd\";\n    public const string Ic_fluent_globe_surface_20_regular = \"\\ue6be\";\n    public const string Ic_fluent_globe_surface_24_regular = \"\\ue6bf\";\n    public const string Ic_fluent_globe_video_20_regular = \"\\uf4fd\";\n    public const string Ic_fluent_globe_video_24_regular = \"\\uf461\";\n    public const string Ic_fluent_globe_video_28_regular = \"\\ue6c0\";\n    public const string Ic_fluent_globe_video_32_regular = \"\\ue6c1\";\n    public const string Ic_fluent_globe_video_48_regular = \"\\ue6c2\";\n    public const string Ic_fluent_grid_16_regular = \"\\ue6c3\";\n    public const string Ic_fluent_grid_20_regular = \"\\uf462\";\n    public const string Ic_fluent_grid_24_regular = \"\\uf463\";\n    public const string Ic_fluent_grid_28_regular = \"\\uf464\";\n    public const string Ic_fluent_grid_dots_20_regular = \"\\ue6c4\";\n    public const string Ic_fluent_grid_dots_24_regular = \"\\ue6c5\";\n    public const string Ic_fluent_grid_dots_28_regular = \"\\ue6c6\";\n    public const string Ic_fluent_grid_kanban_20_regular = \"\\ue6c7\";\n    public const string Ic_fluent_group_20_regular = \"\\uf465\";\n    public const string Ic_fluent_group_24_regular = \"\\uf466\";\n    public const string Ic_fluent_group_dismiss_20_regular = \"\\ue6c8\";\n    public const string Ic_fluent_group_dismiss_24_regular = \"\\ue6c9\";\n    public const string Ic_fluent_group_list_20_regular = \"\\ue6ca\";\n    public const string Ic_fluent_group_list_24_regular = \"\\uf467\";\n    public const string Ic_fluent_group_return_20_regular = \"\\ue6cb\";\n    public const string Ic_fluent_group_return_24_regular = \"\\ue6cc\";\n    public const string Ic_fluent_guardian_20_regular = \"\\ue6cd\";\n    public const string Ic_fluent_guardian_24_regular = \"\\ue6ce\";\n    public const string Ic_fluent_guardian_28_regular = \"\\ue6cf\";\n    public const string Ic_fluent_guardian_48_regular = \"\\ue6d0\";\n    public const string Ic_fluent_guest_16_regular = \"\\uf468\";\n    public const string Ic_fluent_guest_20_regular = \"\\uf469\";\n    public const string Ic_fluent_guest_24_regular = \"\\uf46a\";\n    public const string Ic_fluent_guest_28_regular = \"\\uf46b\";\n    public const string Ic_fluent_guest_add_20_regular = \"\\ue6d1\";\n    public const string Ic_fluent_guest_add_24_regular = \"\\uf46c\";\n    public const string Ic_fluent_guitar_16_regular = \"\\ue6d2\";\n    public const string Ic_fluent_guitar_20_regular = \"\\ue6d3\";\n    public const string Ic_fluent_guitar_24_regular = \"\\ue6d4\";\n    public const string Ic_fluent_guitar_28_regular = \"\\ue6d5\";\n    public const string Ic_fluent_hand_draw_16_regular = \"\\ue6d6\";\n    public const string Ic_fluent_hand_draw_20_regular = \"\\ue6d7\";\n    public const string Ic_fluent_hand_draw_24_regular = \"\\ue6d8\";\n    public const string Ic_fluent_hand_draw_28_regular = \"\\ue6d9\";\n    public const string Ic_fluent_hand_left_16_regular = \"\\ue6da\";\n    public const string Ic_fluent_hand_left_20_regular = \"\\ue6db\";\n    public const string Ic_fluent_hand_left_24_regular = \"\\ue6dc\";\n    public const string Ic_fluent_hand_left_28_regular = \"\\ue6dd\";\n    public const string Ic_fluent_hand_right_16_regular = \"\\ue6de\";\n    public const string Ic_fluent_hand_right_20_regular = \"\\ue6df\";\n    public const string Ic_fluent_hand_right_24_regular = \"\\ue6e0\";\n    public const string Ic_fluent_hand_right_28_regular = \"\\ue6e1\";\n    public const string Ic_fluent_hand_right_off_20_regular = \"\\ue6e2\";\n    public const string Ic_fluent_handshake_16_regular = \"\\uf46e\";\n    public const string Ic_fluent_handshake_20_regular = \"\\uf46f\";\n    public const string Ic_fluent_handshake_24_regular = \"\\uf470\";\n    public const string Ic_fluent_hard_drive_20_regular = \"\\ue6e3\";\n    public const string Ic_fluent_hat_graduation_12_regular = \"\\ue6e4\";\n    public const string Ic_fluent_hat_graduation_16_regular = \"\\ue6e5\";\n    public const string Ic_fluent_hat_graduation_20_regular = \"\\ue6e6\";\n    public const string Ic_fluent_hat_graduation_24_regular = \"\\ue6e7\";\n    public const string Ic_fluent_hd_16_regular = \"\\ue6e8\";\n    public const string Ic_fluent_hd_20_regular = \"\\ue6e9\";\n    public const string Ic_fluent_hd_24_regular = \"\\ue6ea\";\n    public const string Ic_fluent_hdr_20_regular = \"\\ue6eb\";\n    public const string Ic_fluent_hdr_24_regular = \"\\uf471\";\n    public const string Ic_fluent_hdr_off_20_regular = \"\\ue6ec\";\n    public const string Ic_fluent_hdr_off_24_regular = \"\\ue6ed\";\n    public const string Ic_fluent_headphones_20_regular = \"\\ue6ee\";\n    public const string Ic_fluent_headphones_24_regular = \"\\uf472\";\n    public const string Ic_fluent_headphones_28_regular = \"\\uf473\";\n    public const string Ic_fluent_headphones_32_regular = \"\\ue6ef\";\n    public const string Ic_fluent_headphones_48_regular = \"\\ue6f0\";\n    public const string Ic_fluent_headphones_sound_wave_20_regular = \"\\ue6f1\";\n    public const string Ic_fluent_headphones_sound_wave_24_regular = \"\\ue6f2\";\n    public const string Ic_fluent_headphones_sound_wave_28_regular = \"\\ue6f3\";\n    public const string Ic_fluent_headphones_sound_wave_32_regular = \"\\ue6f4\";\n    public const string Ic_fluent_headphones_sound_wave_48_regular = \"\\ue6f5\";\n    public const string Ic_fluent_headset_16_regular = \"\\ue6f6\";\n    public const string Ic_fluent_headset_20_regular = \"\\ue6f7\";\n    public const string Ic_fluent_headset_24_regular = \"\\uf474\";\n    public const string Ic_fluent_headset_28_regular = \"\\uf475\";\n    public const string Ic_fluent_headset_32_regular = \"\\ue6f8\";\n    public const string Ic_fluent_headset_48_regular = \"\\ue6f9\";\n    public const string Ic_fluent_headset_add_20_regular = \"\\uf4fe\";\n    public const string Ic_fluent_headset_add_24_regular = \"\\uf4ff\";\n    public const string Ic_fluent_headset_vr_20_regular = \"\\uf476\";\n    public const string Ic_fluent_headset_vr_24_regular = \"\\uf477\";\n    public const string Ic_fluent_heart_12_regular = \"\\ue6fa\";\n    public const string Ic_fluent_heart_16_regular = \"\\uf478\";\n    public const string Ic_fluent_heart_20_regular = \"\\uf479\";\n    public const string Ic_fluent_heart_24_regular = \"\\uf47a\";\n    public const string Ic_fluent_heart_28_regular = \"\\uf500\";\n    public const string Ic_fluent_heart_32_regular = \"\\ue6fb\";\n    public const string Ic_fluent_heart_48_regular = \"\\ue6fc\";\n    public const string Ic_fluent_heart_broken_16_regular = \"\\uf501\";\n    public const string Ic_fluent_heart_broken_20_regular = \"\\ue6fd\";\n    public const string Ic_fluent_heart_circle_16_regular = \"\\ue6fe\";\n    public const string Ic_fluent_heart_circle_20_regular = \"\\ue6ff\";\n    public const string Ic_fluent_heart_circle_24_regular = \"\\ue700\";\n    public const string Ic_fluent_heart_pulse_20_regular = \"\\ue701\";\n    public const string Ic_fluent_heart_pulse_24_regular = \"\\ue702\";\n    public const string Ic_fluent_heart_pulse_32_regular = \"\\ue703\";\n    public const string Ic_fluent_highlight_16_regular = \"\\uf47b\";\n    public const string Ic_fluent_highlight_20_regular = \"\\uf47c\";\n    public const string Ic_fluent_highlight_24_regular = \"\\uf47d\";\n    public const string Ic_fluent_highlight_link_20_regular = \"\\ue704\";\n    public const string Ic_fluent_history_16_regular = \"\\ue705\";\n    public const string Ic_fluent_history_20_regular = \"\\uf47e\";\n    public const string Ic_fluent_history_24_regular = \"\\uf47f\";\n    public const string Ic_fluent_history_28_regular = \"\\ue706\";\n    public const string Ic_fluent_history_32_regular = \"\\ue707\";\n    public const string Ic_fluent_history_48_regular = \"\\ue708\";\n    public const string Ic_fluent_history_dismiss_20_regular = \"\\ue709\";\n    public const string Ic_fluent_history_dismiss_24_regular = \"\\ue70a\";\n    public const string Ic_fluent_history_dismiss_28_regular = \"\\ue70b\";\n    public const string Ic_fluent_history_dismiss_32_regular = \"\\ue70c\";\n    public const string Ic_fluent_history_dismiss_48_regular = \"\\ue70d\";\n    public const string Ic_fluent_home_12_regular = \"\\ue70e\";\n    public const string Ic_fluent_home_16_regular = \"\\ue70f\";\n    public const string Ic_fluent_home_20_regular = \"\\uf480\";\n    public const string Ic_fluent_home_24_regular = \"\\uf481\";\n    public const string Ic_fluent_home_28_regular = \"\\uf482\";\n    public const string Ic_fluent_home_32_regular = \"\\ue710\";\n    public const string Ic_fluent_home_48_regular = \"\\ue711\";\n    public const string Ic_fluent_home_add_20_regular = \"\\ue712\";\n    public const string Ic_fluent_home_add_24_regular = \"\\uf483\";\n    public const string Ic_fluent_home_checkmark_16_regular = \"\\ue713\";\n    public const string Ic_fluent_home_checkmark_20_regular = \"\\ue714\";\n    public const string Ic_fluent_home_checkmark_24_regular = \"\\uf484\";\n    public const string Ic_fluent_home_database_20_regular = \"\\ue715\";\n    public const string Ic_fluent_home_more_20_regular = \"\\ue716\";\n    public const string Ic_fluent_home_person_20_regular = \"\\ue717\";\n    public const string Ic_fluent_home_person_24_regular = \"\\ue718\";\n    public const string Ic_fluent_icons_20_regular = \"\\uf485\";\n    public const string Ic_fluent_icons_24_regular = \"\\uf486\";\n    public const string Ic_fluent_image_16_regular = \"\\uf487\";\n    public const string Ic_fluent_image_20_regular = \"\\uf488\";\n    public const string Ic_fluent_image_24_regular = \"\\uf489\";\n    public const string Ic_fluent_image_28_regular = \"\\uf48a\";\n    public const string Ic_fluent_image_32_regular = \"\\ue719\";\n    public const string Ic_fluent_image_48_regular = \"\\uf48b\";\n    public const string Ic_fluent_image_add_20_regular = \"\\ue71a\";\n    public const string Ic_fluent_image_add_24_regular = \"\\uf48c\";\n    public const string Ic_fluent_image_alt_text_16_regular = \"\\ue71b\";\n    public const string Ic_fluent_image_alt_text_20_regular = \"\\uf48d\";\n    public const string Ic_fluent_image_alt_text_24_regular = \"\\uf48e\";\n    public const string Ic_fluent_image_arrow_back_20_regular = \"\\ue71c\";\n    public const string Ic_fluent_image_arrow_back_24_regular = \"\\ue71d\";\n    public const string Ic_fluent_image_arrow_counterclockwise_20_regular = \"\\ue71e\";\n    public const string Ic_fluent_image_arrow_counterclockwise_24_regular = \"\\ue71f\";\n    public const string Ic_fluent_image_arrow_forward_20_regular = \"\\ue720\";\n    public const string Ic_fluent_image_arrow_forward_24_regular = \"\\ue721\";\n    public const string Ic_fluent_image_copy_20_regular = \"\\uf48f\";\n    public const string Ic_fluent_image_copy_24_regular = \"\\uf490\";\n    public const string Ic_fluent_image_copy_28_regular = \"\\uf491\";\n    public const string Ic_fluent_image_edit_16_regular = \"\\uf492\";\n    public const string Ic_fluent_image_edit_20_regular = \"\\uf493\";\n    public const string Ic_fluent_image_edit_24_regular = \"\\uf494\";\n    public const string Ic_fluent_image_globe_20_regular = \"\\ue722\";\n    public const string Ic_fluent_image_globe_24_regular = \"\\ue723\";\n    public const string Ic_fluent_image_multiple_16_regular = \"\\ue724\";\n    public const string Ic_fluent_image_multiple_20_regular = \"\\ue725\";\n    public const string Ic_fluent_image_multiple_24_regular = \"\\ue726\";\n    public const string Ic_fluent_image_multiple_28_regular = \"\\ue727\";\n    public const string Ic_fluent_image_multiple_32_regular = \"\\ue728\";\n    public const string Ic_fluent_image_multiple_48_regular = \"\\ue729\";\n    public const string Ic_fluent_image_multiple_off_16_regular = \"\\ue72a\";\n    public const string Ic_fluent_image_multiple_off_20_regular = \"\\ue72b\";\n    public const string Ic_fluent_image_off_20_regular = \"\\ue72c\";\n    public const string Ic_fluent_image_off_24_regular = \"\\uf498\";\n    public const string Ic_fluent_image_prohibited_20_regular = \"\\ue72d\";\n    public const string Ic_fluent_image_prohibited_24_regular = \"\\ue72e\";\n    public const string Ic_fluent_image_reflection_20_regular = \"\\ue72f\";\n    public const string Ic_fluent_image_reflection_24_regular = \"\\ue730\";\n    public const string Ic_fluent_image_search_20_regular = \"\\uf499\";\n    public const string Ic_fluent_image_search_24_regular = \"\\uf49a\";\n    public const string Ic_fluent_image_shadow_20_regular = \"\\ue731\";\n    public const string Ic_fluent_image_shadow_24_regular = \"\\ue732\";\n    public const string Ic_fluent_immersive_reader_16_regular = \"\\ue733\";\n    public const string Ic_fluent_immersive_reader_20_regular = \"\\uf49b\";\n    public const string Ic_fluent_immersive_reader_24_regular = \"\\uf49c\";\n    public const string Ic_fluent_immersive_reader_28_regular = \"\\ue734\";\n    public const string Ic_fluent_important_12_regular = \"\\uf49d\";\n    public const string Ic_fluent_important_16_regular = \"\\uf49e\";\n    public const string Ic_fluent_important_20_regular = \"\\uf49f\";\n    public const string Ic_fluent_important_24_regular = \"\\uf4a0\";\n    public const string Ic_fluent_incognito_20_regular = \"\\ue735\";\n    public const string Ic_fluent_incognito_24_regular = \"\\uf4a1\";\n    public const string Ic_fluent_info_12_regular = \"\\ue736\";\n    public const string Ic_fluent_info_16_regular = \"\\uf4a2\";\n    public const string Ic_fluent_info_20_regular = \"\\uf4a3\";\n    public const string Ic_fluent_info_24_regular = \"\\uf4a4\";\n    public const string Ic_fluent_info_28_regular = \"\\uf4a5\";\n    public const string Ic_fluent_info_shield_20_regular = \"\\ue737\";\n    public const string Ic_fluent_ink_stroke_20_regular = \"\\ue738\";\n    public const string Ic_fluent_ink_stroke_24_regular = \"\\ue739\";\n    public const string Ic_fluent_inking_tool_16_regular = \"\\uf4a6\";\n    public const string Ic_fluent_inking_tool_20_regular = \"\\uf4a7\";\n    public const string Ic_fluent_inking_tool_24_regular = \"\\uf4a8\";\n    public const string Ic_fluent_inking_tool_32_regular = \"\\ue73a\";\n    public const string Ic_fluent_inprivate_account_16_regular = \"\\uf4a9\";\n    public const string Ic_fluent_inprivate_account_20_regular = \"\\uf4aa\";\n    public const string Ic_fluent_inprivate_account_24_regular = \"\\uf4ab\";\n    public const string Ic_fluent_inprivate_account_28_regular = \"\\uf4ac\";\n    public const string Ic_fluent_insert_20_regular = \"\\uf4ad\";\n    public const string Ic_fluent_ios_arrow_ltr_24_regular = \"\\ue73b\";\n    public const string Ic_fluent_ios_arrow_rtl_24_regular = \"\\ue73c\";\n    public const string Ic_fluent_ios_chevron_right_20_regular = \"\\uf4b2\";\n    public const string Ic_fluent_iot_20_regular = \"\\ue73d\";\n    public const string Ic_fluent_iot_24_regular = \"\\ue73e\";\n    public const string Ic_fluent_javascript_16_regular = \"\\uf4b3\";\n    public const string Ic_fluent_javascript_20_regular = \"\\uf4b4\";\n    public const string Ic_fluent_javascript_24_regular = \"\\uf4b5\";\n    public const string Ic_fluent_joystick_20_regular = \"\\ue73f\";\n    public const string Ic_fluent_key_16_regular = \"\\ue740\";\n    public const string Ic_fluent_key_20_regular = \"\\uf4b6\";\n    public const string Ic_fluent_key_24_regular = \"\\uf4b7\";\n    public const string Ic_fluent_key_32_regular = \"\\ue741\";\n    public const string Ic_fluent_key_command_16_regular = \"\\ue742\";\n    public const string Ic_fluent_key_command_20_regular = \"\\ue743\";\n    public const string Ic_fluent_key_command_24_regular = \"\\ue744\";\n    public const string Ic_fluent_key_multiple_20_regular = \"\\ue745\";\n    public const string Ic_fluent_key_reset_20_regular = \"\\ue746\";\n    public const string Ic_fluent_key_reset_24_regular = \"\\ue747\";\n    public const string Ic_fluent_keyboard_123_20_regular = \"\\ue748\";\n    public const string Ic_fluent_keyboard_123_24_regular = \"\\ue749\";\n    public const string Ic_fluent_keyboard_16_regular = \"\\ue74a\";\n    public const string Ic_fluent_keyboard_20_regular = \"\\uf4b8\";\n    public const string Ic_fluent_keyboard_24_regular = \"\\uf4b9\";\n    public const string Ic_fluent_keyboard_dock_20_regular = \"\\ue74b\";\n    public const string Ic_fluent_keyboard_dock_24_regular = \"\\uf4ba\";\n    public const string Ic_fluent_keyboard_layout_float_20_regular = \"\\ue74c\";\n    public const string Ic_fluent_keyboard_layout_float_24_regular = \"\\uf4bb\";\n    public const string Ic_fluent_keyboard_layout_one_handed_left_20_regular = \"\\ue74d\";\n    public const string Ic_fluent_keyboard_layout_one_handed_left_24_regular = \"\\uf4bc\";\n    public const string Ic_fluent_keyboard_layout_resize_20_regular = \"\\ue74e\";\n    public const string Ic_fluent_keyboard_layout_resize_24_regular = \"\\uf4bd\";\n    public const string Ic_fluent_keyboard_layout_split_20_regular = \"\\ue74f\";\n    public const string Ic_fluent_keyboard_layout_split_24_regular = \"\\uf4be\";\n    public const string Ic_fluent_keyboard_shift_16_regular = \"\\ue750\";\n    public const string Ic_fluent_keyboard_shift_20_regular = \"\\ue751\";\n    public const string Ic_fluent_keyboard_shift_24_regular = \"\\uf4bf\";\n    public const string Ic_fluent_keyboard_shift_uppercase_16_regular = \"\\ue752\";\n    public const string Ic_fluent_keyboard_shift_uppercase_20_regular = \"\\ue753\";\n    public const string Ic_fluent_keyboard_shift_uppercase_24_regular = \"\\uf4c0\";\n    public const string Ic_fluent_keyboard_tab_20_regular = \"\\ue754\";\n    public const string Ic_fluent_keyboard_tab_24_regular = \"\\uf4c1\";\n    public const string Ic_fluent_laptop_16_regular = \"\\uf4c2\";\n    public const string Ic_fluent_laptop_20_regular = \"\\uf4c3\";\n    public const string Ic_fluent_laptop_24_regular = \"\\uf4c4\";\n    public const string Ic_fluent_laptop_28_regular = \"\\uf4c5\";\n    public const string Ic_fluent_laptop_dismiss_16_regular = \"\\uf505\";\n    public const string Ic_fluent_laptop_dismiss_20_regular = \"\\ue755\";\n    public const string Ic_fluent_lasso_20_regular = \"\\ue756\";\n    public const string Ic_fluent_lasso_24_regular = \"\\uf4c9\";\n    public const string Ic_fluent_lasso_28_regular = \"\\ue757\";\n    public const string Ic_fluent_launcher_settings_20_regular = \"\\ue758\";\n    public const string Ic_fluent_launcher_settings_24_regular = \"\\uf4ca\";\n    public const string Ic_fluent_layer_20_regular = \"\\uf4cb\";\n    public const string Ic_fluent_layer_24_regular = \"\\uf4cc\";\n    public const string Ic_fluent_leaf_one_16_regular = \"\\ue759\";\n    public const string Ic_fluent_leaf_one_20_regular = \"\\ue75a\";\n    public const string Ic_fluent_leaf_one_24_regular = \"\\ue75b\";\n    public const string Ic_fluent_leaf_three_16_regular = \"\\ue75c\";\n    public const string Ic_fluent_leaf_three_20_regular = \"\\ue75d\";\n    public const string Ic_fluent_leaf_three_24_regular = \"\\ue75e\";\n    public const string Ic_fluent_leaf_two_16_regular = \"\\uf4d0\";\n    public const string Ic_fluent_leaf_two_20_regular = \"\\uf4d1\";\n    public const string Ic_fluent_leaf_two_24_regular = \"\\uf4d2\";\n    public const string Ic_fluent_learning_app_20_regular = \"\\ue75f\";\n    public const string Ic_fluent_learning_app_24_regular = \"\\ue760\";\n    public const string Ic_fluent_library_16_regular = \"\\ue761\";\n    public const string Ic_fluent_library_20_regular = \"\\ue762\";\n    public const string Ic_fluent_library_24_regular = \"\\uf4d3\";\n    public const string Ic_fluent_library_28_regular = \"\\uf4d4\";\n    public const string Ic_fluent_lightbulb_16_regular = \"\\uf4d5\";\n    public const string Ic_fluent_lightbulb_20_regular = \"\\uf4d6\";\n    public const string Ic_fluent_lightbulb_24_regular = \"\\uf4d7\";\n    public const string Ic_fluent_lightbulb_circle_20_regular = \"\\ue763\";\n    public const string Ic_fluent_lightbulb_circle_24_regular = \"\\uf4d8\";\n    public const string Ic_fluent_lightbulb_filament_16_regular = \"\\uf4d9\";\n    public const string Ic_fluent_lightbulb_filament_20_regular = \"\\uf4da\";\n    public const string Ic_fluent_lightbulb_filament_24_regular = \"\\uf4db\";\n    public const string Ic_fluent_lightbulb_filament_48_regular = \"\\ue764\";\n    public const string Ic_fluent_likert_16_regular = \"\\uf4dd\";\n    public const string Ic_fluent_likert_20_regular = \"\\uf4de\";\n    public const string Ic_fluent_likert_24_regular = \"\\uf4df\";\n    public const string Ic_fluent_line_20_regular = \"\\ue765\";\n    public const string Ic_fluent_line_24_regular = \"\\ue766\";\n    public const string Ic_fluent_line_32_regular = \"\\ue767\";\n    public const string Ic_fluent_line_48_regular = \"\\ue768\";\n    public const string Ic_fluent_line_dashes_20_regular = \"\\ue769\";\n    public const string Ic_fluent_line_dashes_24_regular = \"\\ue76a\";\n    public const string Ic_fluent_line_dashes_32_regular = \"\\ue76b\";\n    public const string Ic_fluent_line_dashes_48_regular = \"\\ue76c\";\n    public const string Ic_fluent_line_horizontal_1_20_regular = \"\\uf4e0\";\n    public const string Ic_fluent_line_horizontal_3_20_regular = \"\\uf4e1\";\n    public const string Ic_fluent_line_horizontal_5_20_regular = \"\\uf4e2\";\n    public const string Ic_fluent_line_horizontal_5_error_20_regular = \"\\ue76d\";\n    public const string Ic_fluent_line_style_20_regular = \"\\ue76e\";\n    public const string Ic_fluent_line_style_24_regular = \"\\ue76f\";\n    public const string Ic_fluent_link_12_regular = \"\\ue770\";\n    public const string Ic_fluent_link_16_regular = \"\\uf4e3\";\n    public const string Ic_fluent_link_20_regular = \"\\uf4e4\";\n    public const string Ic_fluent_link_24_regular = \"\\uf4e5\";\n    public const string Ic_fluent_link_28_regular = \"\\uf4e6\";\n    public const string Ic_fluent_link_32_regular = \"\\ue771\";\n    public const string Ic_fluent_link_48_regular = \"\\uf4e7\";\n    public const string Ic_fluent_link_dismiss_16_regular = \"\\ue772\";\n    public const string Ic_fluent_link_dismiss_20_regular = \"\\ue773\";\n    public const string Ic_fluent_link_dismiss_24_regular = \"\\ue774\";\n    public const string Ic_fluent_link_edit_16_regular = \"\\uf4e8\";\n    public const string Ic_fluent_link_edit_20_regular = \"\\uf4e9\";\n    public const string Ic_fluent_link_edit_24_regular = \"\\uf4ea\";\n    public const string Ic_fluent_link_square_12_regular = \"\\ue775\";\n    public const string Ic_fluent_link_square_16_regular = \"\\ue776\";\n    public const string Ic_fluent_link_square_20_regular = \"\\ue777\";\n    public const string Ic_fluent_link_square_24_regular = \"\\uf4ec\";\n    public const string Ic_fluent_link_toolbox_20_regular = \"\\ue778\";\n    public const string Ic_fluent_list_16_regular = \"\\ue779\";\n    public const string Ic_fluent_list_20_regular = \"\\uf4ed\";\n    public const string Ic_fluent_list_24_regular = \"\\uf4ee\";\n    public const string Ic_fluent_list_28_regular = \"\\uf4ef\";\n    public const string Ic_fluent_live_20_regular = \"\\uf4f0\";\n    public const string Ic_fluent_live_24_regular = \"\\uf4f1\";\n    public const string Ic_fluent_live_off_20_regular = \"\\ue77a\";\n    public const string Ic_fluent_live_off_24_regular = \"\\ue77b\";\n    public const string Ic_fluent_local_language_16_regular = \"\\uf4f2\";\n    public const string Ic_fluent_local_language_20_regular = \"\\uf4f3\";\n    public const string Ic_fluent_local_language_24_regular = \"\\uf4f4\";\n    public const string Ic_fluent_local_language_28_regular = \"\\uf4f5\";\n    public const string Ic_fluent_location_12_regular = \"\\uf4f6\";\n    public const string Ic_fluent_location_16_regular = \"\\uf4f7\";\n    public const string Ic_fluent_location_20_regular = \"\\uf4f8\";\n    public const string Ic_fluent_location_24_regular = \"\\uf4f9\";\n    public const string Ic_fluent_location_28_regular = \"\\uf4fa\";\n    public const string Ic_fluent_location_48_regular = \"\\ue77c\";\n    public const string Ic_fluent_location_add_16_regular = \"\\ue77d\";\n    public const string Ic_fluent_location_add_20_regular = \"\\ue77e\";\n    public const string Ic_fluent_location_add_24_regular = \"\\ue77f\";\n    public const string Ic_fluent_location_add_left_20_regular = \"\\ue780\";\n    public const string Ic_fluent_location_add_right_20_regular = \"\\ue781\";\n    public const string Ic_fluent_location_add_up_20_regular = \"\\ue782\";\n    public const string Ic_fluent_location_arrow_left_48_regular = \"\\ue783\";\n    public const string Ic_fluent_location_arrow_right_48_regular = \"\\ue784\";\n    public const string Ic_fluent_location_arrow_up_48_regular = \"\\ue785\";\n    public const string Ic_fluent_location_dismiss_20_regular = \"\\ue786\";\n    public const string Ic_fluent_location_dismiss_24_regular = \"\\ue787\";\n    public const string Ic_fluent_location_live_20_regular = \"\\uf4fb\";\n    public const string Ic_fluent_location_live_24_regular = \"\\uf4fc\";\n    public const string Ic_fluent_location_off_16_regular = \"\\ue788\";\n    public const string Ic_fluent_location_off_20_regular = \"\\ue789\";\n    public const string Ic_fluent_location_off_24_regular = \"\\ue78a\";\n    public const string Ic_fluent_location_off_28_regular = \"\\ue78b\";\n    public const string Ic_fluent_location_off_48_regular = \"\\ue78c\";\n    public const string Ic_fluent_lock_closed_12_regular = \"\\ue78d\";\n    public const string Ic_fluent_lock_closed_16_regular = \"\\ue78e\";\n    public const string Ic_fluent_lock_closed_20_regular = \"\\ue78f\";\n    public const string Ic_fluent_lock_closed_24_regular = \"\\ue790\";\n    public const string Ic_fluent_lock_closed_32_regular = \"\\ue791\";\n    public const string Ic_fluent_lock_multiple_20_regular = \"\\ue792\";\n    public const string Ic_fluent_lock_multiple_24_regular = \"\\ue793\";\n    public const string Ic_fluent_lock_open_16_regular = \"\\ue794\";\n    public const string Ic_fluent_lock_open_20_regular = \"\\ue795\";\n    public const string Ic_fluent_lock_open_24_regular = \"\\ue796\";\n    public const string Ic_fluent_lock_open_28_regular = \"\\ue797\";\n    public const string Ic_fluent_lock_shield_20_regular = \"\\uf502\";\n    public const string Ic_fluent_lock_shield_24_regular = \"\\uf503\";\n    public const string Ic_fluent_lock_shield_48_regular = \"\\uf504\";\n    public const string Ic_fluent_lottery_20_regular = \"\\ue798\";\n    public const string Ic_fluent_lottery_24_regular = \"\\ue799\";\n    public const string Ic_fluent_luggage_16_regular = \"\\ue79a\";\n    public const string Ic_fluent_luggage_20_regular = \"\\ue79b\";\n    public const string Ic_fluent_luggage_24_regular = \"\\ue79c\";\n    public const string Ic_fluent_luggage_28_regular = \"\\ue79d\";\n    public const string Ic_fluent_luggage_32_regular = \"\\ue79e\";\n    public const string Ic_fluent_luggage_48_regular = \"\\ue79f\";\n    public const string Ic_fluent_mail_12_regular = \"\\ue7a0\";\n    public const string Ic_fluent_mail_16_regular = \"\\ue7a1\";\n    public const string Ic_fluent_mail_20_regular = \"\\uf506\";\n    public const string Ic_fluent_mail_24_regular = \"\\uf507\";\n    public const string Ic_fluent_mail_28_regular = \"\\uf508\";\n    public const string Ic_fluent_mail_48_regular = \"\\uf509\";\n    public const string Ic_fluent_mail_add_16_regular = \"\\uf50d\";\n    public const string Ic_fluent_mail_add_20_regular = \"\\uf51f\";\n    public const string Ic_fluent_mail_add_24_regular = \"\\uf50a\";\n    public const string Ic_fluent_mail_alert_16_regular = \"\\uf520\";\n    public const string Ic_fluent_mail_alert_20_regular = \"\\uf52a\";\n    public const string Ic_fluent_mail_alert_24_regular = \"\\uf52b\";\n    public const string Ic_fluent_mail_alert_28_regular = \"\\ue7a2\";\n    public const string Ic_fluent_mail_all_read_16_regular = \"\\ue7a3\";\n    public const string Ic_fluent_mail_all_read_20_regular = \"\\uf50e\";\n    public const string Ic_fluent_mail_all_read_24_regular = \"\\ue7a4\";\n    public const string Ic_fluent_mail_all_read_28_regular = \"\\ue7a5\";\n    public const string Ic_fluent_mail_all_unread_20_regular = \"\\uf50f\";\n    public const string Ic_fluent_mail_arrow_double_back_16_regular = \"\\ue7a6\";\n    public const string Ic_fluent_mail_arrow_double_back_20_regular = \"\\ue7a7\";\n    public const string Ic_fluent_mail_arrow_down_16_regular = \"\\uf52c\";\n    public const string Ic_fluent_mail_arrow_down_20_regular = \"\\ue7a8\";\n    public const string Ic_fluent_mail_arrow_forward_16_regular = \"\\ue7a9\";\n    public const string Ic_fluent_mail_arrow_forward_20_regular = \"\\ue7aa\";\n    public const string Ic_fluent_mail_arrow_up_16_regular = \"\\ue7ab\";\n    public const string Ic_fluent_mail_arrow_up_20_regular = \"\\uf52d\";\n    public const string Ic_fluent_mail_arrow_up_24_regular = \"\\uf54b\";\n    public const string Ic_fluent_mail_attach_16_regular = \"\\ue7ac\";\n    public const string Ic_fluent_mail_attach_20_regular = \"\\ue7ad\";\n    public const string Ic_fluent_mail_attach_24_regular = \"\\ue7ae\";\n    public const string Ic_fluent_mail_attach_28_regular = \"\\ue7af\";\n    public const string Ic_fluent_mail_checkmark_16_regular = \"\\uf54c\";\n    public const string Ic_fluent_mail_checkmark_20_regular = \"\\ue7b0\";\n    public const string Ic_fluent_mail_clock_16_regular = \"\\uf551\";\n    public const string Ic_fluent_mail_clock_20_regular = \"\\uf510\";\n    public const string Ic_fluent_mail_clock_24_regular = \"\\uf552\";\n    public const string Ic_fluent_mail_copy_20_regular = \"\\uf511\";\n    public const string Ic_fluent_mail_copy_24_regular = \"\\uf512\";\n    public const string Ic_fluent_mail_dismiss_16_regular = \"\\ue7b1\";\n    public const string Ic_fluent_mail_dismiss_20_regular = \"\\uf553\";\n    public const string Ic_fluent_mail_dismiss_24_regular = \"\\uf554\";\n    public const string Ic_fluent_mail_dismiss_28_regular = \"\\ue7b2\";\n    public const string Ic_fluent_mail_edit_20_regular = \"\\ue7b3\";\n    public const string Ic_fluent_mail_edit_24_regular = \"\\ue7b4\";\n    public const string Ic_fluent_mail_error_16_regular = \"\\ue7b5\";\n    public const string Ic_fluent_mail_error_20_regular = \"\\uf555\";\n    public const string Ic_fluent_mail_error_24_regular = \"\\uf55d\";\n    public const string Ic_fluent_mail_inbox_16_regular = \"\\uf513\";\n    public const string Ic_fluent_mail_inbox_20_regular = \"\\uf514\";\n    public const string Ic_fluent_mail_inbox_24_regular = \"\\uf515\";\n    public const string Ic_fluent_mail_inbox_28_regular = \"\\uf516\";\n    public const string Ic_fluent_mail_inbox_add_16_regular = \"\\uf517\";\n    public const string Ic_fluent_mail_inbox_add_20_regular = \"\\uf518\";\n    public const string Ic_fluent_mail_inbox_add_24_regular = \"\\uf519\";\n    public const string Ic_fluent_mail_inbox_add_28_regular = \"\\uf51a\";\n    public const string Ic_fluent_mail_inbox_all_20_regular = \"\\ue7b6\";\n    public const string Ic_fluent_mail_inbox_all_24_regular = \"\\ue7b7\";\n    public const string Ic_fluent_mail_inbox_arrow_down_16_regular = \"\\uf55e\";\n    public const string Ic_fluent_mail_inbox_arrow_down_20_regular = \"\\ue7b8\";\n    public const string Ic_fluent_mail_inbox_arrow_right_20_regular = \"\\ue7b9\";\n    public const string Ic_fluent_mail_inbox_arrow_right_24_regular = \"\\ue7ba\";\n    public const string Ic_fluent_mail_inbox_arrow_up_20_regular = \"\\ue7bb\";\n    public const string Ic_fluent_mail_inbox_arrow_up_24_regular = \"\\ue7bc\";\n    public const string Ic_fluent_mail_inbox_checkmark_16_regular = \"\\ue7bd\";\n    public const string Ic_fluent_mail_inbox_checkmark_20_regular = \"\\ue7be\";\n    public const string Ic_fluent_mail_inbox_checkmark_24_regular = \"\\ue7bf\";\n    public const string Ic_fluent_mail_inbox_checkmark_28_regular = \"\\ue7c0\";\n    public const string Ic_fluent_mail_inbox_dismiss_16_regular = \"\\uf51b\";\n    public const string Ic_fluent_mail_inbox_dismiss_20_regular = \"\\uf51c\";\n    public const string Ic_fluent_mail_inbox_dismiss_24_regular = \"\\uf51d\";\n    public const string Ic_fluent_mail_inbox_dismiss_28_regular = \"\\uf51e\";\n    public const string Ic_fluent_mail_link_20_regular = \"\\uf585\";\n    public const string Ic_fluent_mail_link_24_regular = \"\\uf58c\";\n    public const string Ic_fluent_mail_list_16_regular = \"\\ue7c1\";\n    public const string Ic_fluent_mail_list_20_regular = \"\\ue7c2\";\n    public const string Ic_fluent_mail_list_24_regular = \"\\ue7c3\";\n    public const string Ic_fluent_mail_list_28_regular = \"\\ue7c4\";\n    public const string Ic_fluent_mail_multiple_16_regular = \"\\ue7c5\";\n    public const string Ic_fluent_mail_multiple_20_regular = \"\\ue7c6\";\n    public const string Ic_fluent_mail_multiple_24_regular = \"\\ue7c7\";\n    public const string Ic_fluent_mail_multiple_28_regular = \"\\ue7c8\";\n    public const string Ic_fluent_mail_off_20_regular = \"\\ue7c9\";\n    public const string Ic_fluent_mail_off_24_regular = \"\\ue7ca\";\n    public const string Ic_fluent_mail_open_person_16_regular = \"\\ue7cb\";\n    public const string Ic_fluent_mail_open_person_20_regular = \"\\ue7cc\";\n    public const string Ic_fluent_mail_open_person_24_regular = \"\\ue7cd\";\n    public const string Ic_fluent_mail_pause_16_regular = \"\\uf5a6\";\n    public const string Ic_fluent_mail_pause_20_regular = \"\\ue7ce\";\n    public const string Ic_fluent_mail_prohibited_16_regular = \"\\ue7cf\";\n    public const string Ic_fluent_mail_prohibited_20_regular = \"\\uf5cb\";\n    public const string Ic_fluent_mail_prohibited_24_regular = \"\\uf5e2\";\n    public const string Ic_fluent_mail_prohibited_28_regular = \"\\ue7d0\";\n    public const string Ic_fluent_mail_read_16_regular = \"\\ue7d1\";\n    public const string Ic_fluent_mail_read_20_regular = \"\\uf521\";\n    public const string Ic_fluent_mail_read_24_regular = \"\\uf522\";\n    public const string Ic_fluent_mail_read_28_regular = \"\\uf523\";\n    public const string Ic_fluent_mail_read_48_regular = \"\\uf524\";\n    public const string Ic_fluent_mail_read_multiple_20_regular = \"\\ueeab\";\n    public const string Ic_fluent_mail_read_multiple_32_regular = \"\\ueeac\";\n    public const string Ic_fluent_mail_settings_16_regular = \"\\uf5e3\";\n    public const string Ic_fluent_mail_settings_20_regular = \"\\ue7d5\";\n    public const string Ic_fluent_mail_shield_16_regular = \"\\uf5e8\";\n    public const string Ic_fluent_mail_shield_20_regular = \"\\ue7d6\";\n    public const string Ic_fluent_mail_template_16_regular = \"\\ue7d7\";\n    public const string Ic_fluent_mail_template_20_regular = \"\\uf5e9\";\n    public const string Ic_fluent_mail_template_24_regular = \"\\uf5ed\";\n    public const string Ic_fluent_mail_unread_16_regular = \"\\uf525\";\n    public const string Ic_fluent_mail_unread_20_regular = \"\\uf526\";\n    public const string Ic_fluent_mail_unread_24_regular = \"\\uf527\";\n    public const string Ic_fluent_mail_unread_28_regular = \"\\uf528\";\n    public const string Ic_fluent_mail_unread_48_regular = \"\\uf529\";\n    public const string Ic_fluent_mail_warning_16_regular = \"\\uf5ee\";\n    public const string Ic_fluent_mail_warning_20_regular = \"\\ue7d8\";\n    public const string Ic_fluent_mail_warning_24_regular = \"\\ue7d9\";\n    public const string Ic_fluent_map_20_regular = \"\\ue7da\";\n    public const string Ic_fluent_map_24_regular = \"\\uf52e\";\n    public const string Ic_fluent_map_drive_16_regular = \"\\uf52f\";\n    public const string Ic_fluent_map_drive_20_regular = \"\\uf530\";\n    public const string Ic_fluent_map_drive_24_regular = \"\\uf531\";\n    public const string Ic_fluent_markdown_20_regular = \"\\ue7db\";\n    public const string Ic_fluent_match_app_layout_20_regular = \"\\ue7dc\";\n    public const string Ic_fluent_match_app_layout_24_regular = \"\\uf532\";\n    public const string Ic_fluent_math_format_linear_20_regular = \"\\ue7dd\";\n    public const string Ic_fluent_math_format_linear_24_regular = \"\\ue7de\";\n    public const string Ic_fluent_math_format_professional_20_regular = \"\\ue7df\";\n    public const string Ic_fluent_math_format_professional_24_regular = \"\\ue7e0\";\n    public const string Ic_fluent_math_formula_16_regular = \"\\ue7e1\";\n    public const string Ic_fluent_math_formula_20_regular = \"\\ue7e2\";\n    public const string Ic_fluent_math_formula_24_regular = \"\\ue7e3\";\n    public const string Ic_fluent_math_formula_32_regular = \"\\ue7e4\";\n    public const string Ic_fluent_math_symbols_16_regular = \"\\ue7e5\";\n    public const string Ic_fluent_math_symbols_20_regular = \"\\ue7e6\";\n    public const string Ic_fluent_math_symbols_24_regular = \"\\ue7e7\";\n    public const string Ic_fluent_math_symbols_28_regular = \"\\ue7e8\";\n    public const string Ic_fluent_math_symbols_32_regular = \"\\ue7e9\";\n    public const string Ic_fluent_math_symbols_48_regular = \"\\ue7ea\";\n    public const string Ic_fluent_maximize_16_regular = \"\\uf533\";\n    public const string Ic_fluent_maximize_20_regular = \"\\ue7eb\";\n    public const string Ic_fluent_maximize_24_regular = \"\\ue7ec\";\n    public const string Ic_fluent_maximize_28_regular = \"\\ue7ed\";\n    public const string Ic_fluent_maximize_48_regular = \"\\ue7ee\";\n    public const string Ic_fluent_meet_now_16_regular = \"\\ue7ef\";\n    public const string Ic_fluent_meet_now_20_regular = \"\\uf534\";\n    public const string Ic_fluent_meet_now_24_regular = \"\\uf535\";\n    public const string Ic_fluent_meet_now_28_regular = \"\\uf5f6\";\n    public const string Ic_fluent_meet_now_32_regular = \"\\uf5f7\";\n    public const string Ic_fluent_meet_now_48_regular = \"\\uf631\";\n    public const string Ic_fluent_megaphone_16_regular = \"\\uf536\";\n    public const string Ic_fluent_megaphone_20_regular = \"\\uf537\";\n    public const string Ic_fluent_megaphone_24_regular = \"\\uf538\";\n    public const string Ic_fluent_megaphone_28_regular = \"\\uf539\";\n    public const string Ic_fluent_megaphone_loud_16_regular = \"\\ueead\";\n    public const string Ic_fluent_megaphone_loud_20_regular = \"\\uf64b\";\n    public const string Ic_fluent_megaphone_loud_24_regular = \"\\ue7f0\";\n    public const string Ic_fluent_megaphone_off_16_regular = \"\\ue7f1\";\n    public const string Ic_fluent_megaphone_off_20_regular = \"\\ue7f2\";\n    public const string Ic_fluent_megaphone_off_24_regular = \"\\uf53a\";\n    public const string Ic_fluent_megaphone_off_28_regular = \"\\ue7f3\";\n    public const string Ic_fluent_mention_16_regular = \"\\uf53b\";\n    public const string Ic_fluent_mention_20_regular = \"\\uf53c\";\n    public const string Ic_fluent_mention_24_regular = \"\\uf53d\";\n    public const string Ic_fluent_mention_arrow_down_20_regular = \"\\ue7f4\";\n    public const string Ic_fluent_mention_brackets_20_regular = \"\\ue7f5\";\n    public const string Ic_fluent_merge_16_regular = \"\\ue7f6\";\n    public const string Ic_fluent_merge_20_regular = \"\\ue7f7\";\n    public const string Ic_fluent_merge_24_regular = \"\\uf53e\";\n    public const string Ic_fluent_mic_16_regular = \"\\ue7f8\";\n    public const string Ic_fluent_mic_20_regular = \"\\ue7f9\";\n    public const string Ic_fluent_mic_24_regular = \"\\ue7fa\";\n    public const string Ic_fluent_mic_28_regular = \"\\ue7fb\";\n    public const string Ic_fluent_mic_32_regular = \"\\ue7fc\";\n    public const string Ic_fluent_mic_48_regular = \"\\ue7fd\";\n    public const string Ic_fluent_mic_off_12_regular = \"\\uf53f\";\n    public const string Ic_fluent_mic_off_16_regular = \"\\uf540\";\n    public const string Ic_fluent_mic_off_20_regular = \"\\ue7fe\";\n    public const string Ic_fluent_mic_off_24_regular = \"\\uf541\";\n    public const string Ic_fluent_mic_off_28_regular = \"\\uf542\";\n    public const string Ic_fluent_mic_off_32_regular = \"\\ue7ff\";\n    public const string Ic_fluent_mic_off_48_regular = \"\\ue800\";\n    public const string Ic_fluent_mic_prohibited_16_regular = \"\\ue801\";\n    public const string Ic_fluent_mic_prohibited_20_regular = \"\\ue802\";\n    public const string Ic_fluent_mic_prohibited_24_regular = \"\\ue803\";\n    public const string Ic_fluent_mic_prohibited_28_regular = \"\\ue804\";\n    public const string Ic_fluent_mic_prohibited_48_regular = \"\\ue805\";\n    public const string Ic_fluent_mic_pulse_16_regular = \"\\ue806\";\n    public const string Ic_fluent_mic_pulse_20_regular = \"\\ue807\";\n    public const string Ic_fluent_mic_pulse_24_regular = \"\\ue808\";\n    public const string Ic_fluent_mic_pulse_28_regular = \"\\ue809\";\n    public const string Ic_fluent_mic_pulse_32_regular = \"\\ue80a\";\n    public const string Ic_fluent_mic_pulse_48_regular = \"\\ue80b\";\n    public const string Ic_fluent_mic_pulse_off_16_regular = \"\\ue80c\";\n    public const string Ic_fluent_mic_pulse_off_20_regular = \"\\ue80d\";\n    public const string Ic_fluent_mic_pulse_off_24_regular = \"\\ue80e\";\n    public const string Ic_fluent_mic_pulse_off_28_regular = \"\\ue80f\";\n    public const string Ic_fluent_mic_pulse_off_32_regular = \"\\ue810\";\n    public const string Ic_fluent_mic_pulse_off_48_regular = \"\\ue811\";\n    public const string Ic_fluent_mic_settings_20_regular = \"\\ue812\";\n    public const string Ic_fluent_mic_settings_24_regular = \"\\uf548\";\n    public const string Ic_fluent_mic_sparkle_16_regular = \"\\ue813\";\n    public const string Ic_fluent_mic_sparkle_20_regular = \"\\ue814\";\n    public const string Ic_fluent_mic_sparkle_24_regular = \"\\ue815\";\n    public const string Ic_fluent_mic_sync_20_regular = \"\\ue816\";\n    public const string Ic_fluent_microscope_20_regular = \"\\uf64c\";\n    public const string Ic_fluent_microscope_24_regular = \"\\uf64f\";\n    public const string Ic_fluent_midi_20_regular = \"\\uf549\";\n    public const string Ic_fluent_midi_24_regular = \"\\uf54a\";\n    public const string Ic_fluent_mobile_optimized_20_regular = \"\\ue817\";\n    public const string Ic_fluent_mobile_optimized_24_regular = \"\\uf54d\";\n    public const string Ic_fluent_molecule_16_regular = \"\\uf650\";\n    public const string Ic_fluent_molecule_20_regular = \"\\uf659\";\n    public const string Ic_fluent_molecule_24_regular = \"\\uf65a\";\n    public const string Ic_fluent_molecule_28_regular = \"\\uf65d\";\n    public const string Ic_fluent_molecule_32_regular = \"\\uf65e\";\n    public const string Ic_fluent_molecule_48_regular = \"\\uf65f\";\n    public const string Ic_fluent_money_16_regular = \"\\uf54e\";\n    public const string Ic_fluent_money_20_regular = \"\\uf54f\";\n    public const string Ic_fluent_money_24_regular = \"\\uf550\";\n    public const string Ic_fluent_money_calculator_20_regular = \"\\ue818\";\n    public const string Ic_fluent_money_calculator_24_regular = \"\\ue819\";\n    public const string Ic_fluent_money_dismiss_20_regular = \"\\ue81a\";\n    public const string Ic_fluent_money_dismiss_24_regular = \"\\ue81b\";\n    public const string Ic_fluent_money_hand_20_regular = \"\\ue81c\";\n    public const string Ic_fluent_money_hand_24_regular = \"\\ue81d\";\n    public const string Ic_fluent_money_off_20_regular = \"\\ue81e\";\n    public const string Ic_fluent_money_off_24_regular = \"\\ue81f\";\n    public const string Ic_fluent_money_settings_20_regular = \"\\ue820\";\n    public const string Ic_fluent_more_circle_20_regular = \"\\ue821\";\n    public const string Ic_fluent_more_circle_32_regular = \"\\ue822\";\n    public const string Ic_fluent_more_horizontal_16_regular = \"\\ue823\";\n    public const string Ic_fluent_more_horizontal_24_regular = \"\\ue825\";\n    public const string Ic_fluent_more_horizontal_28_regular = \"\\ue826\";\n    public const string Ic_fluent_more_horizontal_32_regular = \"\\ue827\";\n    public const string Ic_fluent_more_horizontal_48_regular = \"\\ue828\";\n    public const string Ic_fluent_more_vertical_16_regular = \"\\ue829\";\n    public const string Ic_fluent_more_vertical_20_regular = \"\\uf556\";\n    public const string Ic_fluent_more_vertical_24_regular = \"\\uf557\";\n    public const string Ic_fluent_more_vertical_28_regular = \"\\uf558\";\n    public const string Ic_fluent_more_vertical_32_regular = \"\\ue82a\";\n    public const string Ic_fluent_more_vertical_48_regular = \"\\uf559\";\n    public const string Ic_fluent_movies_and_tv_16_regular = \"\\ue82b\";\n    public const string Ic_fluent_movies_and_tv_20_regular = \"\\ue82c\";\n    public const string Ic_fluent_movies_and_tv_24_regular = \"\\uf55a\";\n    public const string Ic_fluent_multiplier_1_2x_20_regular = \"\\ue82d\";\n    public const string Ic_fluent_multiplier_1_2x_24_regular = \"\\ue82e\";\n    public const string Ic_fluent_multiplier_1_2x_28_regular = \"\\ue82f\";\n    public const string Ic_fluent_multiplier_1_2x_32_regular = \"\\ue830\";\n    public const string Ic_fluent_multiplier_1_2x_48_regular = \"\\ue831\";\n    public const string Ic_fluent_multiplier_1_5x_20_regular = \"\\ue832\";\n    public const string Ic_fluent_multiplier_1_5x_24_regular = \"\\ue833\";\n    public const string Ic_fluent_multiplier_1_5x_28_regular = \"\\ue834\";\n    public const string Ic_fluent_multiplier_1_5x_32_regular = \"\\ue835\";\n    public const string Ic_fluent_multiplier_1_5x_48_regular = \"\\ue836\";\n    public const string Ic_fluent_multiplier_1_8x_20_regular = \"\\ue837\";\n    public const string Ic_fluent_multiplier_1_8x_24_regular = \"\\ue838\";\n    public const string Ic_fluent_multiplier_1_8x_28_regular = \"\\ue839\";\n    public const string Ic_fluent_multiplier_1_8x_32_regular = \"\\ue83a\";\n    public const string Ic_fluent_multiplier_1_8x_48_regular = \"\\ue83b\";\n    public const string Ic_fluent_multiplier_1x_20_regular = \"\\ue83c\";\n    public const string Ic_fluent_multiplier_1x_24_regular = \"\\ue83d\";\n    public const string Ic_fluent_multiplier_1x_28_regular = \"\\ue83e\";\n    public const string Ic_fluent_multiplier_1x_32_regular = \"\\ue83f\";\n    public const string Ic_fluent_multiplier_1x_48_regular = \"\\ue840\";\n    public const string Ic_fluent_multiplier_2x_20_regular = \"\\ue841\";\n    public const string Ic_fluent_multiplier_2x_24_regular = \"\\ue842\";\n    public const string Ic_fluent_multiplier_2x_28_regular = \"\\ue843\";\n    public const string Ic_fluent_multiplier_2x_32_regular = \"\\ue844\";\n    public const string Ic_fluent_multiplier_2x_48_regular = \"\\ue845\";\n    public const string Ic_fluent_multiplier_5x_20_regular = \"\\ue846\";\n    public const string Ic_fluent_multiplier_5x_24_regular = \"\\ue847\";\n    public const string Ic_fluent_multiplier_5x_28_regular = \"\\ue848\";\n    public const string Ic_fluent_multiplier_5x_32_regular = \"\\ue849\";\n    public const string Ic_fluent_multiplier_5x_48_regular = \"\\ue84a\";\n    public const string Ic_fluent_multiselect_ltr_16_regular = \"\\ue84b\";\n    public const string Ic_fluent_multiselect_ltr_20_regular = \"\\ue84c\";\n    public const string Ic_fluent_multiselect_ltr_24_regular = \"\\ue84d\";\n    public const string Ic_fluent_multiselect_rtl_16_regular = \"\\ue84e\";\n    public const string Ic_fluent_multiselect_rtl_20_regular = \"\\ue84f\";\n    public const string Ic_fluent_multiselect_rtl_24_regular = \"\\ue850\";\n    public const string Ic_fluent_music_note_1_20_regular = \"\\ue851\";\n    public const string Ic_fluent_music_note_1_24_regular = \"\\ue852\";\n    public const string Ic_fluent_music_note_2_16_regular = \"\\ue853\";\n    public const string Ic_fluent_music_note_2_20_regular = \"\\ue854\";\n    public const string Ic_fluent_music_note_2_24_regular = \"\\ue855\";\n    public const string Ic_fluent_music_note_2_play_20_regular = \"\\ue856\";\n    public const string Ic_fluent_music_note_off_1_20_regular = \"\\ue857\";\n    public const string Ic_fluent_music_note_off_1_24_regular = \"\\ue858\";\n    public const string Ic_fluent_music_note_off_2_16_regular = \"\\ue859\";\n    public const string Ic_fluent_music_note_off_2_20_regular = \"\\ue85a\";\n    public const string Ic_fluent_music_note_off_2_24_regular = \"\\ue85b\";\n    public const string Ic_fluent_my_location_12_regular = \"\\ue85c\";\n    public const string Ic_fluent_my_location_16_regular = \"\\ue85d\";\n    public const string Ic_fluent_my_location_20_regular = \"\\ue85e\";\n    public const string Ic_fluent_my_location_24_regular = \"\\uf55f\";\n    public const string Ic_fluent_navigation_16_regular = \"\\ue85f\";\n    public const string Ic_fluent_navigation_24_regular = \"\\uf561\";\n    public const string Ic_fluent_navigation_location_target_20_regular = \"\\ue860\";\n    public const string Ic_fluent_navigation_play_20_regular = \"\\ue861\";\n    public const string Ic_fluent_navigation_unread_20_regular = \"\\ue862\";\n    public const string Ic_fluent_navigation_unread_24_regular = \"\\ue863\";\n    public const string Ic_fluent_network_check_20_regular = \"\\ue864\";\n    public const string Ic_fluent_network_check_24_regular = \"\\uf562\";\n    public const string Ic_fluent_new_16_regular = \"\\uf563\";\n    public const string Ic_fluent_new_20_regular = \"\\ue865\";\n    public const string Ic_fluent_new_24_regular = \"\\uf564\";\n    public const string Ic_fluent_news_16_regular = \"\\ue866\";\n    public const string Ic_fluent_news_20_regular = \"\\uf565\";\n    public const string Ic_fluent_news_24_regular = \"\\uf566\";\n    public const string Ic_fluent_news_28_regular = \"\\uf567\";\n    public const string Ic_fluent_next_16_regular = \"\\uf568\";\n    public const string Ic_fluent_next_20_regular = \"\\uf569\";\n    public const string Ic_fluent_next_24_regular = \"\\uf56a\";\n    public const string Ic_fluent_next_28_regular = \"\\ue867\";\n    public const string Ic_fluent_next_32_regular = \"\\ue868\";\n    public const string Ic_fluent_next_48_regular = \"\\ue869\";\n    public const string Ic_fluent_note_16_regular = \"\\uf663\";\n    public const string Ic_fluent_note_20_regular = \"\\uf56b\";\n    public const string Ic_fluent_note_24_regular = \"\\uf56c\";\n    public const string Ic_fluent_note_28_regular = \"\\ue86a\";\n    public const string Ic_fluent_note_48_regular = \"\\ue86b\";\n    public const string Ic_fluent_note_add_16_regular = \"\\uf56d\";\n    public const string Ic_fluent_note_add_20_regular = \"\\uf56e\";\n    public const string Ic_fluent_note_add_24_regular = \"\\uf56f\";\n    public const string Ic_fluent_note_add_28_regular = \"\\ue86c\";\n    public const string Ic_fluent_note_add_48_regular = \"\\ue86d\";\n    public const string Ic_fluent_note_edit_20_regular = \"\\ue86e\";\n    public const string Ic_fluent_note_edit_24_regular = \"\\ue86f\";\n    public const string Ic_fluent_note_pin_16_regular = \"\\uf664\";\n    public const string Ic_fluent_note_pin_20_regular = \"\\ue870\";\n    public const string Ic_fluent_notebook_20_regular = \"\\ue871\";\n    public const string Ic_fluent_notebook_24_regular = \"\\uf570\";\n    public const string Ic_fluent_notebook_add_20_regular = \"\\ue872\";\n    public const string Ic_fluent_notebook_add_24_regular = \"\\ue873\";\n    public const string Ic_fluent_notebook_arrow_curve_down_20_regular = \"\\ue874\";\n    public const string Ic_fluent_notebook_error_20_regular = \"\\ue875\";\n    public const string Ic_fluent_notebook_error_24_regular = \"\\uf571\";\n    public const string Ic_fluent_notebook_eye_20_regular = \"\\ue876\";\n    public const string Ic_fluent_notebook_lightning_20_regular = \"\\ue877\";\n    public const string Ic_fluent_notebook_lightning_24_regular = \"\\uf572\";\n    public const string Ic_fluent_notebook_question_mark_20_regular = \"\\ue878\";\n    public const string Ic_fluent_notebook_question_mark_24_regular = \"\\uf573\";\n    public const string Ic_fluent_notebook_section_20_regular = \"\\ue879\";\n    public const string Ic_fluent_notebook_section_24_regular = \"\\uf574\";\n    public const string Ic_fluent_notebook_section_arrow_right_24_regular = \"\\ue87a\";\n    public const string Ic_fluent_notebook_subsection_20_regular = \"\\ue87b\";\n    public const string Ic_fluent_notebook_subsection_24_regular = \"\\ue87c\";\n    public const string Ic_fluent_notebook_sync_20_regular = \"\\ue87d\";\n    public const string Ic_fluent_notebook_sync_24_regular = \"\\uf575\";\n    public const string Ic_fluent_notepad_12_regular = \"\\ue87e\";\n    public const string Ic_fluent_notepad_16_regular = \"\\uf665\";\n    public const string Ic_fluent_notepad_20_regular = \"\\uf576\";\n    public const string Ic_fluent_notepad_24_regular = \"\\uf577\";\n    public const string Ic_fluent_notepad_28_regular = \"\\uf578\";\n    public const string Ic_fluent_notepad_32_regular = \"\\ue87f\";\n    public const string Ic_fluent_notepad_edit_16_regular = \"\\uf666\";\n    public const string Ic_fluent_notepad_edit_20_regular = \"\\ue880\";\n    public const string Ic_fluent_notepad_person_16_regular = \"\\ue881\";\n    public const string Ic_fluent_notepad_person_20_regular = \"\\ue882\";\n    public const string Ic_fluent_notepad_person_24_regular = \"\\ue883\";\n    public const string Ic_fluent_number_circle_1_16_regular = \"\\ue884\";\n    public const string Ic_fluent_number_circle_1_20_regular = \"\\ue885\";\n    public const string Ic_fluent_number_circle_1_24_regular = \"\\ue886\";\n    public const string Ic_fluent_number_row_16_regular = \"\\uf579\";\n    public const string Ic_fluent_number_row_20_regular = \"\\uf57a\";\n    public const string Ic_fluent_number_row_24_regular = \"\\uf57b\";\n    public const string Ic_fluent_number_symbol_16_regular = \"\\uf57c\";\n    public const string Ic_fluent_number_symbol_20_regular = \"\\uf57d\";\n    public const string Ic_fluent_number_symbol_24_regular = \"\\uf57e\";\n    public const string Ic_fluent_number_symbol_28_regular = \"\\ue887\";\n    public const string Ic_fluent_number_symbol_32_regular = \"\\ue888\";\n    public const string Ic_fluent_number_symbol_48_regular = \"\\ue889\";\n    public const string Ic_fluent_number_symbol_dismiss_20_regular = \"\\ue88a\";\n    public const string Ic_fluent_number_symbol_dismiss_24_regular = \"\\ue88b\";\n    public const string Ic_fluent_number_symbol_square_20_regular = \"\\ue88c\";\n    public const string Ic_fluent_number_symbol_square_24_regular = \"\\ue88d\";\n    public const string Ic_fluent_open_16_regular = \"\\uf581\";\n    public const string Ic_fluent_open_20_regular = \"\\uf582\";\n    public const string Ic_fluent_open_24_regular = \"\\uf583\";\n    public const string Ic_fluent_open_28_regular = \"\\ue88e\";\n    public const string Ic_fluent_open_32_regular = \"\\uf667\";\n    public const string Ic_fluent_open_48_regular = \"\\ue88f\";\n    public const string Ic_fluent_open_folder_16_regular = \"\\ue890\";\n    public const string Ic_fluent_open_folder_20_regular = \"\\ue891\";\n    public const string Ic_fluent_open_folder_24_regular = \"\\uf584\";\n    public const string Ic_fluent_open_folder_28_regular = \"\\ue892\";\n    public const string Ic_fluent_open_folder_48_regular = \"\\ue893\";\n    public const string Ic_fluent_open_off_16_regular = \"\\ue894\";\n    public const string Ic_fluent_open_off_20_regular = \"\\ue895\";\n    public const string Ic_fluent_open_off_24_regular = \"\\ue896\";\n    public const string Ic_fluent_open_off_28_regular = \"\\ue897\";\n    public const string Ic_fluent_open_off_48_regular = \"\\ue898\";\n    public const string Ic_fluent_options_16_regular = \"\\uf586\";\n    public const string Ic_fluent_options_20_regular = \"\\uf587\";\n    public const string Ic_fluent_options_24_regular = \"\\uf588\";\n    public const string Ic_fluent_options_48_regular = \"\\ue899\";\n    public const string Ic_fluent_organization_12_regular = \"\\ue89a\";\n    public const string Ic_fluent_organization_16_regular = \"\\ue89b\";\n    public const string Ic_fluent_organization_20_regular = \"\\uf589\";\n    public const string Ic_fluent_organization_24_regular = \"\\uf58a\";\n    public const string Ic_fluent_organization_28_regular = \"\\uf58b\";\n    public const string Ic_fluent_organization_32_regular = \"\\ue89c\";\n    public const string Ic_fluent_organization_48_regular = \"\\ue89d\";\n    public const string Ic_fluent_organization_horizontal_20_regular = \"\\ue89e\";\n    public const string Ic_fluent_orientation_20_regular = \"\\ue89f\";\n    public const string Ic_fluent_orientation_24_regular = \"\\ue8a0\";\n    public const string Ic_fluent_oval_16_regular = \"\\ue8a1\";\n    public const string Ic_fluent_oval_20_regular = \"\\ue8a2\";\n    public const string Ic_fluent_oval_24_regular = \"\\ue8a3\";\n    public const string Ic_fluent_oval_28_regular = \"\\ue8a4\";\n    public const string Ic_fluent_oval_32_regular = \"\\ue8a5\";\n    public const string Ic_fluent_oval_48_regular = \"\\ue8a6\";\n    public const string Ic_fluent_padding_down_20_regular = \"\\uf681\";\n    public const string Ic_fluent_padding_down_24_regular = \"\\uf682\";\n    public const string Ic_fluent_padding_left_20_regular = \"\\uf695\";\n    public const string Ic_fluent_padding_left_24_regular = \"\\uf69e\";\n    public const string Ic_fluent_padding_right_20_regular = \"\\uf69f\";\n    public const string Ic_fluent_padding_right_24_regular = \"\\uf6a0\";\n    public const string Ic_fluent_padding_top_20_regular = \"\\uf6b4\";\n    public const string Ic_fluent_padding_top_24_regular = \"\\uf6b9\";\n    public const string Ic_fluent_page_fit_16_regular = \"\\uf58e\";\n    public const string Ic_fluent_page_fit_20_regular = \"\\uf58f\";\n    public const string Ic_fluent_page_fit_24_regular = \"\\uf590\";\n    public const string Ic_fluent_paint_brush_16_regular = \"\\uf591\";\n    public const string Ic_fluent_paint_brush_20_regular = \"\\uf592\";\n    public const string Ic_fluent_paint_brush_24_regular = \"\\uf593\";\n    public const string Ic_fluent_paint_brush_arrow_down_20_regular = \"\\ue8a7\";\n    public const string Ic_fluent_paint_brush_arrow_down_24_regular = \"\\ue8a8\";\n    public const string Ic_fluent_paint_brush_arrow_up_20_regular = \"\\ue8a9\";\n    public const string Ic_fluent_paint_brush_arrow_up_24_regular = \"\\ue8aa\";\n    public const string Ic_fluent_paint_bucket_16_regular = \"\\uf594\";\n    public const string Ic_fluent_paint_bucket_20_regular = \"\\uf595\";\n    public const string Ic_fluent_paint_bucket_24_regular = \"\\uf596\";\n    public const string Ic_fluent_pair_20_regular = \"\\ue8ab\";\n    public const string Ic_fluent_pair_24_regular = \"\\uf597\";\n    public const string Ic_fluent_panel_bottom_20_regular = \"\\ue8ac\";\n    public const string Ic_fluent_panel_bottom_contract_20_regular = \"\\ue8ad\";\n    public const string Ic_fluent_panel_bottom_expand_20_regular = \"\\ue8ae\";\n    public const string Ic_fluent_panel_left_16_regular = \"\\ue8af\";\n    public const string Ic_fluent_panel_left_20_regular = \"\\ue8b0\";\n    public const string Ic_fluent_panel_left_24_regular = \"\\ue8b1\";\n    public const string Ic_fluent_panel_left_28_regular = \"\\ue8b2\";\n    public const string Ic_fluent_panel_left_48_regular = \"\\ue8b3\";\n    public const string Ic_fluent_panel_left_contract_16_regular = \"\\ue8b4\";\n    public const string Ic_fluent_panel_left_contract_20_regular = \"\\ue8b5\";\n    public const string Ic_fluent_panel_left_contract_24_regular = \"\\ue8b6\";\n    public const string Ic_fluent_panel_left_contract_28_regular = \"\\ue8b7\";\n    public const string Ic_fluent_panel_left_expand_16_regular = \"\\ue8b8\";\n    public const string Ic_fluent_panel_left_expand_20_regular = \"\\ue8b9\";\n    public const string Ic_fluent_panel_left_expand_24_regular = \"\\ue8ba\";\n    public const string Ic_fluent_panel_left_expand_28_regular = \"\\ue8bb\";\n    public const string Ic_fluent_panel_right_16_regular = \"\\ue8bc\";\n    public const string Ic_fluent_panel_right_20_regular = \"\\ue8bd\";\n    public const string Ic_fluent_panel_right_24_regular = \"\\ue8be\";\n    public const string Ic_fluent_panel_right_28_regular = \"\\ue8bf\";\n    public const string Ic_fluent_panel_right_48_regular = \"\\ue8c0\";\n    public const string Ic_fluent_panel_right_add_20_regular = \"\\ueeae\";\n    public const string Ic_fluent_panel_right_contract_16_regular = \"\\ue8c1\";\n    public const string Ic_fluent_panel_right_contract_20_regular = \"\\ue8c2\";\n    public const string Ic_fluent_panel_right_contract_24_regular = \"\\ue8c3\";\n    public const string Ic_fluent_panel_right_expand_20_regular = \"\\ue8c4\";\n    public const string Ic_fluent_panel_separate_window_20_regular = \"\\ue8c5\";\n    public const string Ic_fluent_panel_top_contract_20_regular = \"\\ue8c6\";\n    public const string Ic_fluent_panel_top_expand_20_regular = \"\\ue8c7\";\n    public const string Ic_fluent_password_16_regular = \"\\ue8c8\";\n    public const string Ic_fluent_password_20_regular = \"\\ue8c9\";\n    public const string Ic_fluent_password_24_regular = \"\\uf59e\";\n    public const string Ic_fluent_patch_20_regular = \"\\uf6ba\";\n    public const string Ic_fluent_patch_24_regular = \"\\uf6bb\";\n    public const string Ic_fluent_patient_20_regular = \"\\ue8ca\";\n    public const string Ic_fluent_patient_24_regular = \"\\uf59f\";\n    public const string Ic_fluent_patient_32_regular = \"\\ue8cb\";\n    public const string Ic_fluent_pause_12_regular = \"\\ue8cc\";\n    public const string Ic_fluent_pause_16_regular = \"\\uf5a0\";\n    public const string Ic_fluent_pause_20_regular = \"\\uf5a1\";\n    public const string Ic_fluent_pause_24_regular = \"\\uf5a2\";\n    public const string Ic_fluent_pause_28_regular = \"\\ue8cd\";\n    public const string Ic_fluent_pause_32_regular = \"\\ue8ce\";\n    public const string Ic_fluent_pause_48_regular = \"\\uf5a3\";\n    public const string Ic_fluent_pause_circle_20_regular = \"\\uf6bc\";\n    public const string Ic_fluent_pause_circle_24_regular = \"\\ue8cf\";\n    public const string Ic_fluent_pause_off_16_regular = \"\\ue8d0\";\n    public const string Ic_fluent_pause_off_20_regular = \"\\ue8d1\";\n    public const string Ic_fluent_pause_settings_16_regular = \"\\ue8d2\";\n    public const string Ic_fluent_pause_settings_20_regular = \"\\ue8d3\";\n    public const string Ic_fluent_payment_16_regular = \"\\ue8d4\";\n    public const string Ic_fluent_payment_20_regular = \"\\uf5a4\";\n    public const string Ic_fluent_payment_24_regular = \"\\uf5a5\";\n    public const string Ic_fluent_payment_28_regular = \"\\ue8d5\";\n    public const string Ic_fluent_pen_16_regular = \"\\ue8d6\";\n    public const string Ic_fluent_pen_20_regular = \"\\ue8d7\";\n    public const string Ic_fluent_pen_24_regular = \"\\ue8d8\";\n    public const string Ic_fluent_pen_28_regular = \"\\ue8d9\";\n    public const string Ic_fluent_pen_32_regular = \"\\ue8da\";\n    public const string Ic_fluent_pen_48_regular = \"\\ue8db\";\n    public const string Ic_fluent_pen_off_16_regular = \"\\ue8dc\";\n    public const string Ic_fluent_pen_off_20_regular = \"\\ue8dd\";\n    public const string Ic_fluent_pen_off_24_regular = \"\\ue8de\";\n    public const string Ic_fluent_pen_off_28_regular = \"\\ue8df\";\n    public const string Ic_fluent_pen_off_32_regular = \"\\ue8e0\";\n    public const string Ic_fluent_pen_off_48_regular = \"\\ue8e1\";\n    public const string Ic_fluent_pen_prohibited_16_regular = \"\\ue8e2\";\n    public const string Ic_fluent_pen_prohibited_20_regular = \"\\ue8e3\";\n    public const string Ic_fluent_pen_prohibited_24_regular = \"\\ue8e4\";\n    public const string Ic_fluent_pen_prohibited_28_regular = \"\\ue8e5\";\n    public const string Ic_fluent_pen_prohibited_32_regular = \"\\ue8e6\";\n    public const string Ic_fluent_pen_prohibited_48_regular = \"\\ue8e7\";\n    public const string Ic_fluent_pentagon_20_regular = \"\\ue8e8\";\n    public const string Ic_fluent_pentagon_32_regular = \"\\ue8e9\";\n    public const string Ic_fluent_pentagon_48_regular = \"\\ue8ea\";\n    public const string Ic_fluent_people_12_regular = \"\\ue8eb\";\n    public const string Ic_fluent_people_16_regular = \"\\uf5a7\";\n    public const string Ic_fluent_people_20_regular = \"\\uf5a8\";\n    public const string Ic_fluent_people_24_regular = \"\\uf5a9\";\n    public const string Ic_fluent_people_28_regular = \"\\uf5aa\";\n    public const string Ic_fluent_people_32_regular = \"\\ue8ec\";\n    public const string Ic_fluent_people_48_regular = \"\\ue8ed\";\n    public const string Ic_fluent_people_add_16_regular = \"\\uf5ab\";\n    public const string Ic_fluent_people_add_20_regular = \"\\uf5ac\";\n    public const string Ic_fluent_people_add_24_regular = \"\\uf5ad\";\n    public const string Ic_fluent_people_add_28_regular = \"\\ue8ee\";\n    public const string Ic_fluent_people_audience_20_regular = \"\\ue8ef\";\n    public const string Ic_fluent_people_audience_24_regular = \"\\uf5ae\";\n    public const string Ic_fluent_people_call_16_regular = \"\\ue8f0\";\n    public const string Ic_fluent_people_call_20_regular = \"\\ue8f1\";\n    public const string Ic_fluent_people_checkmark_16_regular = \"\\ue8f2\";\n    public const string Ic_fluent_people_checkmark_20_regular = \"\\ue8f3\";\n    public const string Ic_fluent_people_checkmark_24_regular = \"\\ue8f4\";\n    public const string Ic_fluent_people_community_16_regular = \"\\uf5af\";\n    public const string Ic_fluent_people_community_20_regular = \"\\uf5b0\";\n    public const string Ic_fluent_people_community_24_regular = \"\\uf5b1\";\n    public const string Ic_fluent_people_community_28_regular = \"\\uf5b2\";\n    public const string Ic_fluent_people_community_add_20_regular = \"\\ue8f5\";\n    public const string Ic_fluent_people_community_add_24_regular = \"\\uf5b3\";\n    public const string Ic_fluent_people_community_add_28_regular = \"\\ue8f6\";\n    public const string Ic_fluent_people_edit_20_regular = \"\\ue8f7\";\n    public const string Ic_fluent_people_error_16_regular = \"\\ue8f8\";\n    public const string Ic_fluent_people_error_20_regular = \"\\ue8f9\";\n    public const string Ic_fluent_people_error_24_regular = \"\\ue8fa\";\n    public const string Ic_fluent_people_list_16_regular = \"\\ue8fb\";\n    public const string Ic_fluent_people_list_20_regular = \"\\ue8fc\";\n    public const string Ic_fluent_people_list_24_regular = \"\\ue8fd\";\n    public const string Ic_fluent_people_list_28_regular = \"\\ue8fe\";\n    public const string Ic_fluent_people_lock_20_regular = \"\\ue8ff\";\n    public const string Ic_fluent_people_lock_24_regular = \"\\ue900\";\n    public const string Ic_fluent_people_money_20_regular = \"\\ue901\";\n    public const string Ic_fluent_people_money_24_regular = \"\\ue902\";\n    public const string Ic_fluent_people_prohibited_16_regular = \"\\ue903\";\n    public const string Ic_fluent_people_prohibited_20_regular = \"\\uf5b4\";\n    public const string Ic_fluent_people_prohibited_24_regular = \"\\ue904\";\n    public const string Ic_fluent_people_queue_20_regular = \"\\ue905\";\n    public const string Ic_fluent_people_queue_24_regular = \"\\ue906\";\n    public const string Ic_fluent_people_search_20_regular = \"\\ue907\";\n    public const string Ic_fluent_people_search_24_regular = \"\\uf5b5\";\n    public const string Ic_fluent_people_settings_20_regular = \"\\uf5b6\";\n    public const string Ic_fluent_people_settings_24_regular = \"\\ue908\";\n    public const string Ic_fluent_people_settings_28_regular = \"\\ue909\";\n    public const string Ic_fluent_people_swap_16_regular = \"\\ue90a\";\n    public const string Ic_fluent_people_swap_20_regular = \"\\ue90b\";\n    public const string Ic_fluent_people_swap_24_regular = \"\\ue90c\";\n    public const string Ic_fluent_people_swap_28_regular = \"\\ue90d\";\n    public const string Ic_fluent_people_sync_16_regular = \"\\uf6bd\";\n    public const string Ic_fluent_people_sync_20_regular = \"\\ue90e\";\n    public const string Ic_fluent_people_sync_28_regular = \"\\ue90f\";\n    public const string Ic_fluent_people_team_16_regular = \"\\uf5b7\";\n    public const string Ic_fluent_people_team_20_regular = \"\\uf5b8\";\n    public const string Ic_fluent_people_team_24_regular = \"\\uf5b9\";\n    public const string Ic_fluent_people_team_28_regular = \"\\uf5ba\";\n    public const string Ic_fluent_people_team_32_regular = \"\\ue910\";\n    public const string Ic_fluent_people_team_add_20_regular = \"\\ue911\";\n    public const string Ic_fluent_people_team_add_24_regular = \"\\ue912\";\n    public const string Ic_fluent_people_team_delete_16_regular = \"\\ue913\";\n    public const string Ic_fluent_people_team_delete_20_regular = \"\\ue914\";\n    public const string Ic_fluent_people_team_delete_24_regular = \"\\ue915\";\n    public const string Ic_fluent_people_team_delete_28_regular = \"\\ue916\";\n    public const string Ic_fluent_people_team_delete_32_regular = \"\\ue917\";\n    public const string Ic_fluent_people_team_toolbox_20_regular = \"\\ue918\";\n    public const string Ic_fluent_people_team_toolbox_24_regular = \"\\ue919\";\n    public const string Ic_fluent_people_toolbox_16_regular = \"\\uf6ca\";\n    public const string Ic_fluent_people_toolbox_20_regular = \"\\ue91a\";\n    public const string Ic_fluent_person_12_regular = \"\\uf5bb\";\n    public const string Ic_fluent_person_16_regular = \"\\uf5bc\";\n    public const string Ic_fluent_person_20_regular = \"\\uf5bd\";\n    public const string Ic_fluent_person_24_regular = \"\\uf5be\";\n    public const string Ic_fluent_person_28_regular = \"\\uf5bf\";\n    public const string Ic_fluent_person_32_regular = \"\\ue91b\";\n    public const string Ic_fluent_person_48_regular = \"\\uf5c0\";\n    public const string Ic_fluent_person_5_20_regular = \"\\ue91c\";\n    public const string Ic_fluent_person_5_32_regular = \"\\ue91d\";\n    public const string Ic_fluent_person_6_20_regular = \"\\ue91e\";\n    public const string Ic_fluent_person_6_32_regular = \"\\ue91f\";\n    public const string Ic_fluent_person_accounts_20_regular = \"\\ue920\";\n    public const string Ic_fluent_person_accounts_24_regular = \"\\uf5c1\";\n    public const string Ic_fluent_person_add_16_regular = \"\\ue921\";\n    public const string Ic_fluent_person_add_20_regular = \"\\uf5c2\";\n    public const string Ic_fluent_person_add_24_regular = \"\\uf5c3\";\n    public const string Ic_fluent_person_add_28_regular = \"\\ue922\";\n    public const string Ic_fluent_person_arrow_left_16_regular = \"\\ue923\";\n    public const string Ic_fluent_person_arrow_left_20_regular = \"\\uf5c4\";\n    public const string Ic_fluent_person_arrow_left_24_regular = \"\\uf5c5\";\n    public const string Ic_fluent_person_arrow_right_16_regular = \"\\uf5c6\";\n    public const string Ic_fluent_person_arrow_right_20_regular = \"\\uf5c7\";\n    public const string Ic_fluent_person_arrow_right_24_regular = \"\\uf5c8\";\n    public const string Ic_fluent_person_available_16_regular = \"\\uf5c9\";\n    public const string Ic_fluent_person_available_20_regular = \"\\ue924\";\n    public const string Ic_fluent_person_available_24_regular = \"\\uf5ca\";\n    public const string Ic_fluent_person_board_16_regular = \"\\uf5cc\";\n    public const string Ic_fluent_person_board_20_regular = \"\\uf5cd\";\n    public const string Ic_fluent_person_board_24_regular = \"\\uf5ce\";\n    public const string Ic_fluent_person_call_16_regular = \"\\ue925\";\n    public const string Ic_fluent_person_call_20_regular = \"\\ue926\";\n    public const string Ic_fluent_person_call_24_regular = \"\\uf5cf\";\n    public const string Ic_fluent_person_chat_16_regular = \"\\uf6cb\";\n    public const string Ic_fluent_person_chat_20_regular = \"\\uf6d1\";\n    public const string Ic_fluent_person_chat_24_regular = \"\\uf6d3\";\n    public const string Ic_fluent_person_circle_12_regular = \"\\ue927\";\n    public const string Ic_fluent_person_circle_20_regular = \"\\ue928\";\n    public const string Ic_fluent_person_circle_24_regular = \"\\ue929\";\n    public const string Ic_fluent_person_clock_16_regular = \"\\ue92a\";\n    public const string Ic_fluent_person_clock_20_regular = \"\\ue92b\";\n    public const string Ic_fluent_person_clock_24_regular = \"\\ue92c\";\n    public const string Ic_fluent_person_delete_16_regular = \"\\uf5d0\";\n    public const string Ic_fluent_person_delete_20_regular = \"\\ue92d\";\n    public const string Ic_fluent_person_delete_24_regular = \"\\uf5d1\";\n    public const string Ic_fluent_person_edit_20_regular = \"\\ue92e\";\n    public const string Ic_fluent_person_edit_24_regular = \"\\ue92f\";\n    public const string Ic_fluent_person_feedback_16_regular = \"\\ue930\";\n    public const string Ic_fluent_person_feedback_20_regular = \"\\uf5d2\";\n    public const string Ic_fluent_person_feedback_24_regular = \"\\uf5d3\";\n    public const string Ic_fluent_person_heart_24_regular = \"\\ue931\";\n    public const string Ic_fluent_person_info_16_regular = \"\\uf6d6\";\n    public const string Ic_fluent_person_info_20_regular = \"\\ue932\";\n    public const string Ic_fluent_person_key_20_regular = \"\\ue933\";\n    public const string Ic_fluent_person_lightbulb_20_regular = \"\\ue934\";\n    public const string Ic_fluent_person_lightbulb_24_regular = \"\\ue935\";\n    public const string Ic_fluent_person_lock_16_regular = \"\\uf6d8\";\n    public const string Ic_fluent_person_lock_20_regular = \"\\uf6d9\";\n    public const string Ic_fluent_person_lock_24_regular = \"\\ue936\";\n    public const string Ic_fluent_person_mail_16_regular = \"\\ue937\";\n    public const string Ic_fluent_person_mail_20_regular = \"\\ue938\";\n    public const string Ic_fluent_person_mail_24_regular = \"\\ue939\";\n    public const string Ic_fluent_person_mail_28_regular = \"\\ue93a\";\n    public const string Ic_fluent_person_mail_48_regular = \"\\ue93b\";\n    public const string Ic_fluent_person_money_20_regular = \"\\ue93c\";\n    public const string Ic_fluent_person_money_24_regular = \"\\ue93d\";\n    public const string Ic_fluent_person_note_16_regular = \"\\ueeaf\";\n    public const string Ic_fluent_person_note_20_regular = \"\\ue93e\";\n    public const string Ic_fluent_person_note_24_regular = \"\\ue93f\";\n    public const string Ic_fluent_person_pill_20_regular = \"\\ue940\";\n    public const string Ic_fluent_person_pill_24_regular = \"\\ue941\";\n    public const string Ic_fluent_person_prohibited_16_regular = \"\\ue942\";\n    public const string Ic_fluent_person_prohibited_20_regular = \"\\uf5d4\";\n    public const string Ic_fluent_person_prohibited_24_regular = \"\\ue943\";\n    public const string Ic_fluent_person_prohibited_28_regular = \"\\ue944\";\n    public const string Ic_fluent_person_question_mark_16_regular = \"\\uf5d5\";\n    public const string Ic_fluent_person_question_mark_20_regular = \"\\uf5d6\";\n    public const string Ic_fluent_person_question_mark_24_regular = \"\\uf5d7\";\n    public const string Ic_fluent_person_settings_16_regular = \"\\ue945\";\n    public const string Ic_fluent_person_settings_20_regular = \"\\ue946\";\n    public const string Ic_fluent_person_subtract_16_regular = \"\\uf6ed\";\n    public const string Ic_fluent_person_subtract_20_regular = \"\\ue947\";\n    public const string Ic_fluent_person_support_16_regular = \"\\uf5d8\";\n    public const string Ic_fluent_person_support_20_regular = \"\\uf5d9\";\n    public const string Ic_fluent_person_support_24_regular = \"\\uf5da\";\n    public const string Ic_fluent_person_swap_16_regular = \"\\uf5db\";\n    public const string Ic_fluent_person_swap_20_regular = \"\\uf5dc\";\n    public const string Ic_fluent_person_swap_24_regular = \"\\uf5dd\";\n    public const string Ic_fluent_person_sync_16_regular = \"\\ue948\";\n    public const string Ic_fluent_person_sync_20_regular = \"\\ue949\";\n    public const string Ic_fluent_person_sync_24_regular = \"\\ue94a\";\n    public const string Ic_fluent_person_sync_28_regular = \"\\ue94b\";\n    public const string Ic_fluent_person_sync_32_regular = \"\\ue94c\";\n    public const string Ic_fluent_person_sync_48_regular = \"\\ue94d\";\n    public const string Ic_fluent_person_tag_20_regular = \"\\ue94e\";\n    public const string Ic_fluent_person_tag_24_regular = \"\\ue94f\";\n    public const string Ic_fluent_person_tag_28_regular = \"\\ue950\";\n    public const string Ic_fluent_person_tag_32_regular = \"\\ue951\";\n    public const string Ic_fluent_person_tag_48_regular = \"\\ue952\";\n    public const string Ic_fluent_person_voice_20_regular = \"\\uf5de\";\n    public const string Ic_fluent_person_voice_24_regular = \"\\uf5df\";\n    public const string Ic_fluent_phone_12_regular = \"\\ue953\";\n    public const string Ic_fluent_phone_16_regular = \"\\uf6ee\";\n    public const string Ic_fluent_phone_20_regular = \"\\uf5e0\";\n    public const string Ic_fluent_phone_24_regular = \"\\uf5e1\";\n    public const string Ic_fluent_phone_add_20_regular = \"\\ue954\";\n    public const string Ic_fluent_phone_add_24_regular = \"\\ue955\";\n    public const string Ic_fluent_phone_arrow_right_20_regular = \"\\ue956\";\n    public const string Ic_fluent_phone_arrow_right_24_regular = \"\\ue957\";\n    public const string Ic_fluent_phone_checkmark_16_regular = \"\\uf6ef\";\n    public const string Ic_fluent_phone_checkmark_20_regular = \"\\ue958\";\n    public const string Ic_fluent_phone_desktop_16_regular = \"\\uf5e4\";\n    public const string Ic_fluent_phone_desktop_20_regular = \"\\uf5e5\";\n    public const string Ic_fluent_phone_desktop_24_regular = \"\\uf5e6\";\n    public const string Ic_fluent_phone_desktop_28_regular = \"\\uf5e7\";\n    public const string Ic_fluent_phone_desktop_add_20_regular = \"\\ue959\";\n    public const string Ic_fluent_phone_dismiss_20_regular = \"\\ue95a\";\n    public const string Ic_fluent_phone_dismiss_24_regular = \"\\ue95b\";\n    public const string Ic_fluent_phone_eraser_16_regular = \"\\ue95c\";\n    public const string Ic_fluent_phone_eraser_20_regular = \"\\ue95d\";\n    public const string Ic_fluent_phone_key_20_regular = \"\\ue95e\";\n    public const string Ic_fluent_phone_key_24_regular = \"\\ue95f\";\n    public const string Ic_fluent_phone_laptop_16_regular = \"\\ue960\";\n    public const string Ic_fluent_phone_laptop_20_regular = \"\\uf5ea\";\n    public const string Ic_fluent_phone_laptop_24_regular = \"\\uf5eb\";\n    public const string Ic_fluent_phone_laptop_32_regular = \"\\ue961\";\n    public const string Ic_fluent_phone_link_setup_20_regular = \"\\ue962\";\n    public const string Ic_fluent_phone_link_setup_24_regular = \"\\uf5ec\";\n    public const string Ic_fluent_phone_lock_20_regular = \"\\ue963\";\n    public const string Ic_fluent_phone_lock_24_regular = \"\\ue964\";\n    public const string Ic_fluent_phone_page_header_20_regular = \"\\ue965\";\n    public const string Ic_fluent_phone_page_header_24_regular = \"\\uf5ef\";\n    public const string Ic_fluent_phone_pagination_20_regular = \"\\ue966\";\n    public const string Ic_fluent_phone_pagination_24_regular = \"\\uf5f0\";\n    public const string Ic_fluent_phone_screen_time_20_regular = \"\\ue967\";\n    public const string Ic_fluent_phone_screen_time_24_regular = \"\\uf5f1\";\n    public const string Ic_fluent_phone_shake_20_regular = \"\\ue968\";\n    public const string Ic_fluent_phone_shake_24_regular = \"\\uf5f2\";\n    public const string Ic_fluent_phone_span_in_16_regular = \"\\ue969\";\n    public const string Ic_fluent_phone_span_in_20_regular = \"\\ue96a\";\n    public const string Ic_fluent_phone_span_in_24_regular = \"\\ue96b\";\n    public const string Ic_fluent_phone_span_in_28_regular = \"\\ue96c\";\n    public const string Ic_fluent_phone_span_out_16_regular = \"\\ue96d\";\n    public const string Ic_fluent_phone_span_out_20_regular = \"\\ue96e\";\n    public const string Ic_fluent_phone_span_out_24_regular = \"\\ue96f\";\n    public const string Ic_fluent_phone_span_out_28_regular = \"\\ue970\";\n    public const string Ic_fluent_phone_speaker_20_regular = \"\\ue971\";\n    public const string Ic_fluent_phone_speaker_24_regular = \"\\ue972\";\n    public const string Ic_fluent_phone_status_bar_20_regular = \"\\ue973\";\n    public const string Ic_fluent_phone_status_bar_24_regular = \"\\uf5f3\";\n    public const string Ic_fluent_phone_tablet_20_regular = \"\\uf5f4\";\n    public const string Ic_fluent_phone_tablet_24_regular = \"\\uf5f5\";\n    public const string Ic_fluent_phone_update_20_regular = \"\\ue974\";\n    public const string Ic_fluent_phone_update_24_regular = \"\\uf5f8\";\n    public const string Ic_fluent_phone_update_checkmark_20_regular = \"\\ue975\";\n    public const string Ic_fluent_phone_update_checkmark_24_regular = \"\\ue976\";\n    public const string Ic_fluent_phone_vertical_scroll_20_regular = \"\\ue977\";\n    public const string Ic_fluent_phone_vertical_scroll_24_regular = \"\\uf5f9\";\n    public const string Ic_fluent_phone_vibrate_20_regular = \"\\ue978\";\n    public const string Ic_fluent_phone_vibrate_24_regular = \"\\uf5fa\";\n    public const string Ic_fluent_photo_filter_20_regular = \"\\ue979\";\n    public const string Ic_fluent_photo_filter_24_regular = \"\\uf5fb\";\n    public const string Ic_fluent_pi_20_regular = \"\\ue97a\";\n    public const string Ic_fluent_pi_24_regular = \"\\ue97b\";\n    public const string Ic_fluent_picture_in_picture_16_regular = \"\\uf5fc\";\n    public const string Ic_fluent_picture_in_picture_20_regular = \"\\uf5fd\";\n    public const string Ic_fluent_picture_in_picture_24_regular = \"\\uf5fe\";\n    public const string Ic_fluent_picture_in_picture_enter_16_regular = \"\\ue97c\";\n    public const string Ic_fluent_picture_in_picture_enter_20_regular = \"\\ue97d\";\n    public const string Ic_fluent_picture_in_picture_enter_24_regular = \"\\ue97e\";\n    public const string Ic_fluent_picture_in_picture_exit_16_regular = \"\\ue97f\";\n    public const string Ic_fluent_picture_in_picture_exit_20_regular = \"\\ue980\";\n    public const string Ic_fluent_picture_in_picture_exit_24_regular = \"\\ue981\";\n    public const string Ic_fluent_pill_16_regular = \"\\uf6f0\";\n    public const string Ic_fluent_pill_20_regular = \"\\uf6f1\";\n    public const string Ic_fluent_pill_24_regular = \"\\uf6f2\";\n    public const string Ic_fluent_pill_28_regular = \"\\uf6f3\";\n    public const string Ic_fluent_pin_12_regular = \"\\uf5ff\";\n    public const string Ic_fluent_pin_16_regular = \"\\uf600\";\n    public const string Ic_fluent_pin_20_regular = \"\\uf601\";\n    public const string Ic_fluent_pin_24_regular = \"\\uf602\";\n    public const string Ic_fluent_pin_28_regular = \"\\ue982\";\n    public const string Ic_fluent_pin_32_regular = \"\\ue983\";\n    public const string Ic_fluent_pin_48_regular = \"\\ue984\";\n    public const string Ic_fluent_pin_off_16_regular = \"\\ue985\";\n    public const string Ic_fluent_pin_off_20_regular = \"\\uf603\";\n    public const string Ic_fluent_pin_off_24_regular = \"\\uf604\";\n    public const string Ic_fluent_pin_off_28_regular = \"\\ue986\";\n    public const string Ic_fluent_pin_off_32_regular = \"\\ue987\";\n    public const string Ic_fluent_pin_off_48_regular = \"\\ue988\";\n    public const string Ic_fluent_pipeline_20_regular = \"\\ue989\";\n    public const string Ic_fluent_pipeline_add_20_regular = \"\\ue98a\";\n    public const string Ic_fluent_pipeline_arrow_curve_down_20_regular = \"\\ue98b\";\n    public const string Ic_fluent_pipeline_play_20_regular = \"\\ue98c\";\n    public const string Ic_fluent_pivot_20_regular = \"\\ue98d\";\n    public const string Ic_fluent_pivot_24_regular = \"\\ue98e\";\n    public const string Ic_fluent_play_12_regular = \"\\ue98f\";\n    public const string Ic_fluent_play_16_regular = \"\\ue990\";\n    public const string Ic_fluent_play_20_regular = \"\\uf605\";\n    public const string Ic_fluent_play_24_regular = \"\\uf606\";\n    public const string Ic_fluent_play_28_regular = \"\\ue991\";\n    public const string Ic_fluent_play_32_regular = \"\\ue992\";\n    public const string Ic_fluent_play_48_regular = \"\\uf607\";\n    public const string Ic_fluent_play_circle_16_regular = \"\\ue993\";\n    public const string Ic_fluent_play_circle_20_regular = \"\\ue994\";\n    public const string Ic_fluent_play_circle_24_regular = \"\\uf608\";\n    public const string Ic_fluent_play_circle_28_regular = \"\\ue995\";\n    public const string Ic_fluent_play_circle_48_regular = \"\\ue996\";\n    public const string Ic_fluent_play_settings_20_regular = \"\\ue997\";\n    public const string Ic_fluent_playing_cards_20_regular = \"\\ue998\";\n    public const string Ic_fluent_plug_connected_20_regular = \"\\ue999\";\n    public const string Ic_fluent_plug_connected_24_regular = \"\\ue99a\";\n    public const string Ic_fluent_plug_connected_add_20_regular = \"\\ue99b\";\n    public const string Ic_fluent_plug_connected_checkmark_20_regular = \"\\ue99c\";\n    public const string Ic_fluent_plug_disconnected_20_regular = \"\\uf609\";\n    public const string Ic_fluent_plug_disconnected_24_regular = \"\\uf60a\";\n    public const string Ic_fluent_plug_disconnected_28_regular = \"\\uf60b\";\n    public const string Ic_fluent_point_scan_20_regular = \"\\ue99d\";\n    public const string Ic_fluent_point_scan_24_regular = \"\\uf60c\";\n    public const string Ic_fluent_poll_16_regular = \"\\ue99e\";\n    public const string Ic_fluent_poll_20_regular = \"\\ue99f\";\n    public const string Ic_fluent_poll_24_regular = \"\\uf60d\";\n    public const string Ic_fluent_port_hdmi_20_regular = \"\\ue9a0\";\n    public const string Ic_fluent_port_hdmi_24_regular = \"\\ue9a1\";\n    public const string Ic_fluent_port_micro_usb_20_regular = \"\\ue9a2\";\n    public const string Ic_fluent_port_micro_usb_24_regular = \"\\ue9a3\";\n    public const string Ic_fluent_port_usb_a_20_regular = \"\\ue9a4\";\n    public const string Ic_fluent_port_usb_a_24_regular = \"\\ue9a5\";\n    public const string Ic_fluent_port_usb_c_20_regular = \"\\ue9a6\";\n    public const string Ic_fluent_port_usb_c_24_regular = \"\\ue9a7\";\n    public const string Ic_fluent_position_backward_20_regular = \"\\ue9a8\";\n    public const string Ic_fluent_position_backward_24_regular = \"\\ue9a9\";\n    public const string Ic_fluent_position_forward_20_regular = \"\\ue9aa\";\n    public const string Ic_fluent_position_forward_24_regular = \"\\ue9ab\";\n    public const string Ic_fluent_position_to_back_20_regular = \"\\ue9ac\";\n    public const string Ic_fluent_position_to_back_24_regular = \"\\ue9ad\";\n    public const string Ic_fluent_position_to_front_20_regular = \"\\ue9ae\";\n    public const string Ic_fluent_position_to_front_24_regular = \"\\ue9af\";\n    public const string Ic_fluent_power_20_regular = \"\\uf60e\";\n    public const string Ic_fluent_power_24_regular = \"\\uf60f\";\n    public const string Ic_fluent_power_28_regular = \"\\uf610\";\n    public const string Ic_fluent_predictions_20_regular = \"\\ue9b0\";\n    public const string Ic_fluent_predictions_24_regular = \"\\uf611\";\n    public const string Ic_fluent_premium_16_regular = \"\\uf612\";\n    public const string Ic_fluent_premium_20_regular = \"\\uf613\";\n    public const string Ic_fluent_premium_24_regular = \"\\uf614\";\n    public const string Ic_fluent_premium_28_regular = \"\\uf615\";\n    public const string Ic_fluent_premium_32_regular = \"\\ue9b1\";\n    public const string Ic_fluent_premium_person_16_regular = \"\\ue9b2\";\n    public const string Ic_fluent_premium_person_20_regular = \"\\ue9b3\";\n    public const string Ic_fluent_premium_person_24_regular = \"\\ue9b4\";\n    public const string Ic_fluent_presence_available_10_regular = \"\\ue9b5\";\n    public const string Ic_fluent_presence_available_12_regular = \"\\ue9b6\";\n    public const string Ic_fluent_presence_available_16_regular = \"\\ue9b7\";\n    public const string Ic_fluent_presence_available_20_regular = \"\\ue9b8\";\n    public const string Ic_fluent_presence_available_24_regular = \"\\ue9b9\";\n    public const string Ic_fluent_presence_blocked_10_regular = \"\\uf616\";\n    public const string Ic_fluent_presence_blocked_12_regular = \"\\uf617\";\n    public const string Ic_fluent_presence_blocked_16_regular = \"\\uf618\";\n    public const string Ic_fluent_presence_blocked_20_regular = \"\\ue9ba\";\n    public const string Ic_fluent_presence_blocked_24_regular = \"\\ue9bb\";\n    public const string Ic_fluent_presence_dnd_10_regular = \"\\ue9bc\";\n    public const string Ic_fluent_presence_dnd_12_regular = \"\\ue9bd\";\n    public const string Ic_fluent_presence_dnd_16_regular = \"\\ue9be\";\n    public const string Ic_fluent_presence_dnd_20_regular = \"\\ue9bf\";\n    public const string Ic_fluent_presence_dnd_24_regular = \"\\ue9c0\";\n    public const string Ic_fluent_presence_offline_10_regular = \"\\uf619\";\n    public const string Ic_fluent_presence_offline_12_regular = \"\\uf61a\";\n    public const string Ic_fluent_presence_offline_16_regular = \"\\uf61b\";\n    public const string Ic_fluent_presence_offline_20_regular = \"\\ue9c1\";\n    public const string Ic_fluent_presence_offline_24_regular = \"\\ue9c2\";\n    public const string Ic_fluent_presence_oof_10_regular = \"\\uf61c\";\n    public const string Ic_fluent_presence_oof_12_regular = \"\\uf61d\";\n    public const string Ic_fluent_presence_oof_16_regular = \"\\uf61e\";\n    public const string Ic_fluent_presence_oof_20_regular = \"\\ue9c3\";\n    public const string Ic_fluent_presence_oof_24_regular = \"\\ue9c4\";\n    public const string Ic_fluent_presence_unknown_10_regular = \"\\uf61f\";\n    public const string Ic_fluent_presence_unknown_12_regular = \"\\uf620\";\n    public const string Ic_fluent_presence_unknown_20_regular = \"\\ue9c5\";\n    public const string Ic_fluent_presence_unknown_24_regular = \"\\ue9c6\";\n    public const string Ic_fluent_presenter_20_regular = \"\\ue9c7\";\n    public const string Ic_fluent_presenter_24_regular = \"\\uf622\";\n    public const string Ic_fluent_presenter_off_20_regular = \"\\ue9c8\";\n    public const string Ic_fluent_presenter_off_24_regular = \"\\uf623\";\n    public const string Ic_fluent_preview_link_16_regular = \"\\uf624\";\n    public const string Ic_fluent_preview_link_20_regular = \"\\uf625\";\n    public const string Ic_fluent_preview_link_24_regular = \"\\uf626\";\n    public const string Ic_fluent_previous_16_regular = \"\\uf627\";\n    public const string Ic_fluent_previous_20_regular = \"\\uf628\";\n    public const string Ic_fluent_previous_24_regular = \"\\uf629\";\n    public const string Ic_fluent_previous_28_regular = \"\\ue9c9\";\n    public const string Ic_fluent_previous_32_regular = \"\\ue9ca\";\n    public const string Ic_fluent_previous_48_regular = \"\\ue9cb\";\n    public const string Ic_fluent_print_16_regular = \"\\uf6fa\";\n    public const string Ic_fluent_print_20_regular = \"\\uf62a\";\n    public const string Ic_fluent_print_24_regular = \"\\uf62b\";\n    public const string Ic_fluent_print_28_regular = \"\\ue9cc\";\n    public const string Ic_fluent_print_32_regular = \"\\ue9cd\";\n    public const string Ic_fluent_print_48_regular = \"\\uf62c\";\n    public const string Ic_fluent_print_add_20_regular = \"\\uf6fc\";\n    public const string Ic_fluent_print_add_24_regular = \"\\ue9ce\";\n    public const string Ic_fluent_production_20_regular = \"\\uf6fd\";\n    public const string Ic_fluent_production_24_regular = \"\\uf6fe\";\n    public const string Ic_fluent_production_checkmark_20_regular = \"\\uf703\";\n    public const string Ic_fluent_production_checkmark_24_regular = \"\\uf704\";\n    public const string Ic_fluent_prohibited_12_regular = \"\\ue9cf\";\n    public const string Ic_fluent_prohibited_16_regular = \"\\uf705\";\n    public const string Ic_fluent_prohibited_20_regular = \"\\uf62d\";\n    public const string Ic_fluent_prohibited_24_regular = \"\\uf62e\";\n    public const string Ic_fluent_prohibited_28_regular = \"\\uf62f\";\n    public const string Ic_fluent_prohibited_48_regular = \"\\uf630\";\n    public const string Ic_fluent_prohibited_multiple_16_regular = \"\\ue9d0\";\n    public const string Ic_fluent_prohibited_multiple_20_regular = \"\\ue9d1\";\n    public const string Ic_fluent_prohibited_multiple_24_regular = \"\\ue9d2\";\n    public const string Ic_fluent_prohibited_note_20_regular = \"\\ue9d3\";\n    public const string Ic_fluent_projection_screen_16_regular = \"\\ue9d4\";\n    public const string Ic_fluent_projection_screen_20_regular = \"\\ue9d5\";\n    public const string Ic_fluent_projection_screen_24_regular = \"\\ue9d6\";\n    public const string Ic_fluent_projection_screen_28_regular = \"\\ue9d7\";\n    public const string Ic_fluent_projection_screen_dismiss_16_regular = \"\\ue9d8\";\n    public const string Ic_fluent_projection_screen_dismiss_20_regular = \"\\ue9d9\";\n    public const string Ic_fluent_projection_screen_dismiss_24_regular = \"\\ue9da\";\n    public const string Ic_fluent_projection_screen_dismiss_28_regular = \"\\ue9db\";\n    public const string Ic_fluent_protocol_handler_16_regular = \"\\uf632\";\n    public const string Ic_fluent_protocol_handler_20_regular = \"\\uf633\";\n    public const string Ic_fluent_protocol_handler_24_regular = \"\\uf634\";\n    public const string Ic_fluent_pulse_20_regular = \"\\ue9dc\";\n    public const string Ic_fluent_pulse_24_regular = \"\\ue9dd\";\n    public const string Ic_fluent_pulse_28_regular = \"\\ue9de\";\n    public const string Ic_fluent_pulse_32_regular = \"\\ue9df\";\n    public const string Ic_fluent_pulse_square_20_regular = \"\\ue9e0\";\n    public const string Ic_fluent_pulse_square_24_regular = \"\\ue9e1\";\n    public const string Ic_fluent_puzzle_cube_16_regular = \"\\ue9e2\";\n    public const string Ic_fluent_puzzle_cube_20_regular = \"\\ue9e3\";\n    public const string Ic_fluent_puzzle_cube_24_regular = \"\\ue9e4\";\n    public const string Ic_fluent_puzzle_cube_28_regular = \"\\ue9e5\";\n    public const string Ic_fluent_puzzle_cube_48_regular = \"\\ue9e6\";\n    public const string Ic_fluent_puzzle_cube_piece_20_regular = \"\\ue9e7\";\n    public const string Ic_fluent_puzzle_piece_16_regular = \"\\ue9e8\";\n    public const string Ic_fluent_puzzle_piece_20_regular = \"\\ue9e9\";\n    public const string Ic_fluent_puzzle_piece_24_regular = \"\\ue9ea\";\n    public const string Ic_fluent_puzzle_piece_shield_20_regular = \"\\ue9eb\";\n    public const string Ic_fluent_qr_code_20_regular = \"\\ue9ec\";\n    public const string Ic_fluent_qr_code_24_regular = \"\\uf635\";\n    public const string Ic_fluent_qr_code_28_regular = \"\\uf636\";\n    public const string Ic_fluent_question_16_regular = \"\\uf637\";\n    public const string Ic_fluent_question_20_regular = \"\\uf638\";\n    public const string Ic_fluent_question_24_regular = \"\\uf639\";\n    public const string Ic_fluent_question_28_regular = \"\\uf63a\";\n    public const string Ic_fluent_question_48_regular = \"\\uf63b\";\n    public const string Ic_fluent_question_circle_12_regular = \"\\ue9ed\";\n    public const string Ic_fluent_question_circle_16_regular = \"\\uf63c\";\n    public const string Ic_fluent_question_circle_20_regular = \"\\uf63d\";\n    public const string Ic_fluent_question_circle_24_regular = \"\\uf63e\";\n    public const string Ic_fluent_question_circle_28_regular = \"\\uf63f\";\n    public const string Ic_fluent_question_circle_32_regular = \"\\ue9ee\";\n    public const string Ic_fluent_question_circle_48_regular = \"\\uf640\";\n    public const string Ic_fluent_quiz_new_20_regular = \"\\ue9ef\";\n    public const string Ic_fluent_quiz_new_24_regular = \"\\uf641\";\n    public const string Ic_fluent_quiz_new_28_regular = \"\\uf642\";\n    public const string Ic_fluent_quiz_new_48_regular = \"\\uf643\";\n    public const string Ic_fluent_radar_20_regular = \"\\ue9f0\";\n    public const string Ic_fluent_radar_checkmark_20_regular = \"\\ue9f1\";\n    public const string Ic_fluent_radar_rectangle_multiple_20_regular = \"\\ue9f2\";\n    public const string Ic_fluent_radio_button_24_regular = \"\\uf645\";\n    public const string Ic_fluent_ram_20_regular = \"\\ue9f3\";\n    public const string Ic_fluent_rating_mature_16_regular = \"\\uf646\";\n    public const string Ic_fluent_rating_mature_20_regular = \"\\uf647\";\n    public const string Ic_fluent_rating_mature_24_regular = \"\\uf648\";\n    public const string Ic_fluent_ratio_one_to_one_20_regular = \"\\uf70a\";\n    public const string Ic_fluent_ratio_one_to_one_24_regular = \"\\uf70b\";\n    public const string Ic_fluent_re_order_16_regular = \"\\uf649\";\n    public const string Ic_fluent_re_order_24_regular = \"\\uf64a\";\n    public const string Ic_fluent_re_order_dots_horizontal_16_regular = \"\\ue9f4\";\n    public const string Ic_fluent_re_order_dots_horizontal_20_regular = \"\\ue9f5\";\n    public const string Ic_fluent_re_order_dots_horizontal_24_regular = \"\\ue9f6\";\n    public const string Ic_fluent_re_order_dots_vertical_16_regular = \"\\ue9f7\";\n    public const string Ic_fluent_re_order_dots_vertical_20_regular = \"\\ue9f8\";\n    public const string Ic_fluent_re_order_dots_vertical_24_regular = \"\\ue9f9\";\n    public const string Ic_fluent_read_aloud_16_regular = \"\\ue9fa\";\n    public const string Ic_fluent_read_aloud_20_regular = \"\\uf64d\";\n    public const string Ic_fluent_read_aloud_24_regular = \"\\uf64e\";\n    public const string Ic_fluent_read_aloud_28_regular = \"\\ue9fb\";\n    public const string Ic_fluent_reading_list_16_regular = \"\\uf651\";\n    public const string Ic_fluent_reading_list_20_regular = \"\\uf652\";\n    public const string Ic_fluent_reading_list_24_regular = \"\\uf653\";\n    public const string Ic_fluent_reading_list_28_regular = \"\\uf654\";\n    public const string Ic_fluent_reading_list_add_16_regular = \"\\uf655\";\n    public const string Ic_fluent_reading_list_add_20_regular = \"\\uf656\";\n    public const string Ic_fluent_reading_list_add_24_regular = \"\\uf657\";\n    public const string Ic_fluent_reading_list_add_28_regular = \"\\uf658\";\n    public const string Ic_fluent_reading_mode_mobile_20_regular = \"\\uf65b\";\n    public const string Ic_fluent_reading_mode_mobile_24_regular = \"\\uf65c\";\n    public const string Ic_fluent_real_estate_20_regular = \"\\ue9fc\";\n    public const string Ic_fluent_real_estate_24_regular = \"\\ue9fd\";\n    public const string Ic_fluent_receipt_20_regular = \"\\ue9fe\";\n    public const string Ic_fluent_receipt_24_regular = \"\\ue9ff\";\n    public const string Ic_fluent_receipt_add_20_regular = \"\\uf70c\";\n    public const string Ic_fluent_receipt_add_24_regular = \"\\uea00\";\n    public const string Ic_fluent_receipt_bag_20_regular = \"\\uf715\";\n    public const string Ic_fluent_receipt_bag_24_regular = \"\\uea01\";\n    public const string Ic_fluent_receipt_cube_20_regular = \"\\uf72d\";\n    public const string Ic_fluent_receipt_cube_24_regular = \"\\uea02\";\n    public const string Ic_fluent_receipt_money_20_regular = \"\\uf72e\";\n    public const string Ic_fluent_receipt_money_24_regular = \"\\uea03\";\n    public const string Ic_fluent_receipt_play_20_regular = \"\\uea04\";\n    public const string Ic_fluent_receipt_play_24_regular = \"\\uea05\";\n    public const string Ic_fluent_receipt_search_20_regular = \"\\uea06\";\n    public const string Ic_fluent_record_12_regular = \"\\uf72f\";\n    public const string Ic_fluent_record_16_regular = \"\\uf660\";\n    public const string Ic_fluent_record_20_regular = \"\\uf661\";\n    public const string Ic_fluent_record_24_regular = \"\\uf662\";\n    public const string Ic_fluent_record_28_regular = \"\\uf735\";\n    public const string Ic_fluent_record_32_regular = \"\\uf736\";\n    public const string Ic_fluent_record_48_regular = \"\\uf737\";\n    public const string Ic_fluent_record_stop_12_regular = \"\\uf758\";\n    public const string Ic_fluent_record_stop_16_regular = \"\\uf759\";\n    public const string Ic_fluent_record_stop_20_regular = \"\\uf75a\";\n    public const string Ic_fluent_record_stop_24_regular = \"\\uf75b\";\n    public const string Ic_fluent_record_stop_28_regular = \"\\uf75c\";\n    public const string Ic_fluent_record_stop_32_regular = \"\\uf764\";\n    public const string Ic_fluent_record_stop_48_regular = \"\\uf765\";\n    public const string Ic_fluent_rectangle_landscape_12_regular = \"\\uea07\";\n    public const string Ic_fluent_rectangle_landscape_16_regular = \"\\uea08\";\n    public const string Ic_fluent_rectangle_landscape_20_regular = \"\\uea09\";\n    public const string Ic_fluent_rectangle_landscape_24_regular = \"\\uea0a\";\n    public const string Ic_fluent_rectangle_landscape_28_regular = \"\\uea0b\";\n    public const string Ic_fluent_rectangle_landscape_32_regular = \"\\uea0c\";\n    public const string Ic_fluent_rectangle_landscape_48_regular = \"\\uea0d\";\n    public const string Ic_fluent_rectangle_portrait_location_target_20_regular = \"\\uea0e\";\n    public const string Ic_fluent_remote_16_regular = \"\\uea0f\";\n    public const string Ic_fluent_remote_20_regular = \"\\uea10\";\n    public const string Ic_fluent_rename_16_regular = \"\\uf668\";\n    public const string Ic_fluent_rename_20_regular = \"\\uf669\";\n    public const string Ic_fluent_rename_24_regular = \"\\uf66a\";\n    public const string Ic_fluent_rename_28_regular = \"\\uf66b\";\n    public const string Ic_fluent_reorder_20_regular = \"\\uea11\";\n    public const string Ic_fluent_replay_20_regular = \"\\uea12\";\n    public const string Ic_fluent_resize_20_regular = \"\\uf66c\";\n    public const string Ic_fluent_resize_24_regular = \"\\uea13\";\n    public const string Ic_fluent_resize_image_20_regular = \"\\uea14\";\n    public const string Ic_fluent_resize_image_24_regular = \"\\uf66d\";\n    public const string Ic_fluent_resize_large_16_regular = \"\\uea15\";\n    public const string Ic_fluent_resize_large_20_regular = \"\\uea16\";\n    public const string Ic_fluent_resize_large_24_regular = \"\\uea17\";\n    public const string Ic_fluent_resize_small_16_regular = \"\\uea18\";\n    public const string Ic_fluent_resize_small_20_regular = \"\\uea19\";\n    public const string Ic_fluent_resize_small_24_regular = \"\\uea1a\";\n    public const string Ic_fluent_resize_table_20_regular = \"\\uea1b\";\n    public const string Ic_fluent_resize_table_24_regular = \"\\uf66e\";\n    public const string Ic_fluent_resize_video_20_regular = \"\\uea1c\";\n    public const string Ic_fluent_resize_video_24_regular = \"\\uf66f\";\n    public const string Ic_fluent_reward_16_regular = \"\\uf671\";\n    public const string Ic_fluent_reward_20_regular = \"\\uf672\";\n    public const string Ic_fluent_reward_24_regular = \"\\uf673\";\n    public const string Ic_fluent_rewind_16_regular = \"\\uea1d\";\n    public const string Ic_fluent_rewind_20_regular = \"\\uf674\";\n    public const string Ic_fluent_rewind_24_regular = \"\\uf675\";\n    public const string Ic_fluent_rewind_28_regular = \"\\uea1e\";\n    public const string Ic_fluent_rhombus_16_regular = \"\\uea1f\";\n    public const string Ic_fluent_rhombus_20_regular = \"\\uea20\";\n    public const string Ic_fluent_rhombus_24_regular = \"\\uea21\";\n    public const string Ic_fluent_rhombus_28_regular = \"\\uea22\";\n    public const string Ic_fluent_rhombus_32_regular = \"\\uea23\";\n    public const string Ic_fluent_rhombus_48_regular = \"\\uea24\";\n    public const string Ic_fluent_ribbon_12_regular = \"\\uea25\";\n    public const string Ic_fluent_ribbon_16_regular = \"\\uea26\";\n    public const string Ic_fluent_ribbon_20_regular = \"\\uea27\";\n    public const string Ic_fluent_ribbon_24_regular = \"\\uea28\";\n    public const string Ic_fluent_ribbon_32_regular = \"\\uea29\";\n    public const string Ic_fluent_ribbon_add_20_regular = \"\\uf766\";\n    public const string Ic_fluent_ribbon_add_24_regular = \"\\uf767\";\n    public const string Ic_fluent_ribbon_off_12_regular = \"\\uea2a\";\n    public const string Ic_fluent_ribbon_off_16_regular = \"\\uea2b\";\n    public const string Ic_fluent_ribbon_off_20_regular = \"\\uea2c\";\n    public const string Ic_fluent_ribbon_off_24_regular = \"\\uea2d\";\n    public const string Ic_fluent_ribbon_off_32_regular = \"\\uea2e\";\n    public const string Ic_fluent_ribbon_star_20_regular = \"\\uea2f\";\n    public const string Ic_fluent_ribbon_star_24_regular = \"\\uea30\";\n    public const string Ic_fluent_road_cone_16_regular = \"\\uea31\";\n    public const string Ic_fluent_road_cone_20_regular = \"\\uea32\";\n    public const string Ic_fluent_road_cone_24_regular = \"\\uea33\";\n    public const string Ic_fluent_road_cone_28_regular = \"\\uea34\";\n    public const string Ic_fluent_road_cone_32_regular = \"\\uea35\";\n    public const string Ic_fluent_road_cone_48_regular = \"\\uea36\";\n    public const string Ic_fluent_rocket_16_regular = \"\\uf676\";\n    public const string Ic_fluent_rocket_20_regular = \"\\uf677\";\n    public const string Ic_fluent_rocket_24_regular = \"\\uf678\";\n    public const string Ic_fluent_rotate_left_20_regular = \"\\uea37\";\n    public const string Ic_fluent_rotate_left_24_regular = \"\\uea38\";\n    public const string Ic_fluent_rotate_right_20_regular = \"\\uea39\";\n    public const string Ic_fluent_rotate_right_24_regular = \"\\uea3a\";\n    public const string Ic_fluent_router_20_regular = \"\\uea3b\";\n    public const string Ic_fluent_router_24_regular = \"\\uf679\";\n    public const string Ic_fluent_row_triple_20_regular = \"\\uea3c\";\n    public const string Ic_fluent_row_triple_24_regular = \"\\uf67a\";\n    public const string Ic_fluent_rss_20_regular = \"\\uea3d\";\n    public const string Ic_fluent_rss_24_regular = \"\\uea3e\";\n    public const string Ic_fluent_ruler_16_regular = \"\\uf67b\";\n    public const string Ic_fluent_ruler_20_regular = \"\\uf67c\";\n    public const string Ic_fluent_ruler_24_regular = \"\\uf67d\";\n    public const string Ic_fluent_run_16_regular = \"\\uea3f\";\n    public const string Ic_fluent_run_20_regular = \"\\uea40\";\n    public const string Ic_fluent_run_24_regular = \"\\uf67e\";\n    public const string Ic_fluent_sanitize_20_regular = \"\\uea41\";\n    public const string Ic_fluent_sanitize_24_regular = \"\\uea42\";\n    public const string Ic_fluent_save_16_regular = \"\\uea43\";\n    public const string Ic_fluent_save_20_regular = \"\\uf67f\";\n    public const string Ic_fluent_save_24_regular = \"\\uf680\";\n    public const string Ic_fluent_save_28_regular = \"\\uea44\";\n    public const string Ic_fluent_save_arrow_right_20_regular = \"\\uea45\";\n    public const string Ic_fluent_save_arrow_right_24_regular = \"\\uea46\";\n    public const string Ic_fluent_save_copy_20_regular = \"\\uea47\";\n    public const string Ic_fluent_save_copy_24_regular = \"\\uf683\";\n    public const string Ic_fluent_save_edit_20_regular = \"\\uea48\";\n    public const string Ic_fluent_save_edit_24_regular = \"\\uea49\";\n    public const string Ic_fluent_save_image_20_regular = \"\\uea4a\";\n    public const string Ic_fluent_save_multiple_20_regular = \"\\uea4b\";\n    public const string Ic_fluent_save_multiple_24_regular = \"\\uea4c\";\n    public const string Ic_fluent_save_search_20_regular = \"\\uea4d\";\n    public const string Ic_fluent_save_sync_20_regular = \"\\uea4e\";\n    public const string Ic_fluent_savings_16_regular = \"\\uf684\";\n    public const string Ic_fluent_savings_20_regular = \"\\uf685\";\n    public const string Ic_fluent_savings_24_regular = \"\\uf686\";\n    public const string Ic_fluent_scale_fill_20_regular = \"\\uea4f\";\n    public const string Ic_fluent_scale_fill_24_regular = \"\\uf687\";\n    public const string Ic_fluent_scale_fit_16_regular = \"\\uf688\";\n    public const string Ic_fluent_scale_fit_20_regular = \"\\uf689\";\n    public const string Ic_fluent_scale_fit_24_regular = \"\\uf68a\";\n    public const string Ic_fluent_scales_20_regular = \"\\uea50\";\n    public const string Ic_fluent_scales_24_regular = \"\\uea51\";\n    public const string Ic_fluent_scales_32_regular = \"\\uea52\";\n    public const string Ic_fluent_scan_16_regular = \"\\uea53\";\n    public const string Ic_fluent_scan_20_regular = \"\\uea54\";\n    public const string Ic_fluent_scan_24_regular = \"\\uf68b\";\n    public const string Ic_fluent_scan_camera_16_regular = \"\\uea55\";\n    public const string Ic_fluent_scan_camera_20_regular = \"\\uea56\";\n    public const string Ic_fluent_scan_camera_24_regular = \"\\uea57\";\n    public const string Ic_fluent_scan_camera_28_regular = \"\\uea58\";\n    public const string Ic_fluent_scan_camera_48_regular = \"\\uea59\";\n    public const string Ic_fluent_scan_dash_12_regular = \"\\uea5a\";\n    public const string Ic_fluent_scan_dash_16_regular = \"\\uea5b\";\n    public const string Ic_fluent_scan_dash_20_regular = \"\\uea5c\";\n    public const string Ic_fluent_scan_dash_24_regular = \"\\uea5d\";\n    public const string Ic_fluent_scan_dash_28_regular = \"\\uea5e\";\n    public const string Ic_fluent_scan_dash_32_regular = \"\\uea5f\";\n    public const string Ic_fluent_scan_dash_48_regular = \"\\uea60\";\n    public const string Ic_fluent_scan_object_20_regular = \"\\uea61\";\n    public const string Ic_fluent_scan_object_24_regular = \"\\uea62\";\n    public const string Ic_fluent_scan_table_20_regular = \"\\uea63\";\n    public const string Ic_fluent_scan_table_24_regular = \"\\uea64\";\n    public const string Ic_fluent_scan_text_20_regular = \"\\uea65\";\n    public const string Ic_fluent_scan_text_24_regular = \"\\uea66\";\n    public const string Ic_fluent_scan_thumb_up_16_regular = \"\\uea67\";\n    public const string Ic_fluent_scan_thumb_up_20_regular = \"\\uea68\";\n    public const string Ic_fluent_scan_thumb_up_24_regular = \"\\uea69\";\n    public const string Ic_fluent_scan_thumb_up_28_regular = \"\\uea6a\";\n    public const string Ic_fluent_scan_thumb_up_48_regular = \"\\uea6b\";\n    public const string Ic_fluent_scan_thumb_up_off_16_regular = \"\\uea6c\";\n    public const string Ic_fluent_scan_thumb_up_off_20_regular = \"\\uea6d\";\n    public const string Ic_fluent_scan_thumb_up_off_24_regular = \"\\uea6e\";\n    public const string Ic_fluent_scan_thumb_up_off_28_regular = \"\\uea6f\";\n    public const string Ic_fluent_scan_thumb_up_off_48_regular = \"\\uea70\";\n    public const string Ic_fluent_scan_type_20_regular = \"\\uea71\";\n    public const string Ic_fluent_scan_type_24_regular = \"\\uea72\";\n    public const string Ic_fluent_scan_type_checkmark_20_regular = \"\\uea73\";\n    public const string Ic_fluent_scan_type_checkmark_24_regular = \"\\uea74\";\n    public const string Ic_fluent_scan_type_off_20_regular = \"\\uea75\";\n    public const string Ic_fluent_scratchpad_20_regular = \"\\uea76\";\n    public const string Ic_fluent_scratchpad_24_regular = \"\\uf68c\";\n    public const string Ic_fluent_screen_cut_20_regular = \"\\uea77\";\n    public const string Ic_fluent_screen_person_20_regular = \"\\uea78\";\n    public const string Ic_fluent_screen_search_20_regular = \"\\uea79\";\n    public const string Ic_fluent_screen_search_24_regular = \"\\uea7a\";\n    public const string Ic_fluent_screenshot_20_regular = \"\\uf68d\";\n    public const string Ic_fluent_screenshot_24_regular = \"\\uf68e\";\n    public const string Ic_fluent_search_12_regular = \"\\uea7b\";\n    public const string Ic_fluent_search_16_regular = \"\\uea7c\";\n    public const string Ic_fluent_search_20_regular = \"\\uf68f\";\n    public const string Ic_fluent_search_24_regular = \"\\uf690\";\n    public const string Ic_fluent_search_28_regular = \"\\uf691\";\n    public const string Ic_fluent_search_32_regular = \"\\uea7d\";\n    public const string Ic_fluent_search_48_regular = \"\\uea7e\";\n    public const string Ic_fluent_search_info_20_regular = \"\\uf692\";\n    public const string Ic_fluent_search_info_24_regular = \"\\uf693\";\n    public const string Ic_fluent_search_settings_20_regular = \"\\uea7f\";\n    public const string Ic_fluent_search_shield_20_regular = \"\\uea80\";\n    public const string Ic_fluent_search_square_20_regular = \"\\uea81\";\n    public const string Ic_fluent_search_square_24_regular = \"\\uf694\";\n    public const string Ic_fluent_search_visual_16_regular = \"\\uea82\";\n    public const string Ic_fluent_search_visual_20_regular = \"\\uea83\";\n    public const string Ic_fluent_search_visual_24_regular = \"\\uea84\";\n    public const string Ic_fluent_select_all_off_20_regular = \"\\uea85\";\n    public const string Ic_fluent_select_all_off_24_regular = \"\\uf696\";\n    public const string Ic_fluent_select_all_on_20_regular = \"\\uea86\";\n    public const string Ic_fluent_select_all_on_24_regular = \"\\uea87\";\n    public const string Ic_fluent_select_object_20_regular = \"\\uf697\";\n    public const string Ic_fluent_select_object_24_regular = \"\\uf698\";\n    public const string Ic_fluent_select_object_skew_20_regular = \"\\uea88\";\n    public const string Ic_fluent_select_object_skew_24_regular = \"\\uea89\";\n    public const string Ic_fluent_select_object_skew_dismiss_20_regular = \"\\uea8a\";\n    public const string Ic_fluent_select_object_skew_dismiss_24_regular = \"\\uea8b\";\n    public const string Ic_fluent_select_object_skew_edit_20_regular = \"\\uea8c\";\n    public const string Ic_fluent_select_object_skew_edit_24_regular = \"\\uea8d\";\n    public const string Ic_fluent_send_16_regular = \"\\uea8e\";\n    public const string Ic_fluent_send_20_regular = \"\\uf699\";\n    public const string Ic_fluent_send_24_regular = \"\\uf69a\";\n    public const string Ic_fluent_send_28_regular = \"\\uf69b\";\n    public const string Ic_fluent_send_clock_20_regular = \"\\uf69c\";\n    public const string Ic_fluent_send_clock_24_regular = \"\\uea8f\";\n    public const string Ic_fluent_send_copy_20_regular = \"\\uea90\";\n    public const string Ic_fluent_send_copy_24_regular = \"\\uf69d\";\n    public const string Ic_fluent_serial_port_16_regular = \"\\uf6a1\";\n    public const string Ic_fluent_serial_port_20_regular = \"\\uf6a2\";\n    public const string Ic_fluent_serial_port_24_regular = \"\\uf6a3\";\n    public const string Ic_fluent_server_20_regular = \"\\uf769\";\n    public const string Ic_fluent_server_24_regular = \"\\uf76c\";\n    public const string Ic_fluent_server_multiple_20_regular = \"\\uea91\";\n    public const string Ic_fluent_server_play_20_regular = \"\\uea92\";\n    public const string Ic_fluent_service_bell_20_regular = \"\\uea93\";\n    public const string Ic_fluent_service_bell_24_regular = \"\\uf6a4\";\n    public const string Ic_fluent_settings_16_regular = \"\\uf6a8\";\n    public const string Ic_fluent_settings_20_regular = \"\\uf6a9\";\n    public const string Ic_fluent_settings_24_regular = \"\\uf6aa\";\n    public const string Ic_fluent_settings_28_regular = \"\\uf6ab\";\n    public const string Ic_fluent_settings_32_regular = \"\\uea94\";\n    public const string Ic_fluent_settings_48_regular = \"\\uea95\";\n    public const string Ic_fluent_settings_chat_20_regular = \"\\uea96\";\n    public const string Ic_fluent_settings_chat_24_regular = \"\\uea97\";\n    public const string Ic_fluent_shape_exclude_16_regular = \"\\uea98\";\n    public const string Ic_fluent_shape_exclude_20_regular = \"\\uea99\";\n    public const string Ic_fluent_shape_exclude_24_regular = \"\\uea9a\";\n    public const string Ic_fluent_shape_intersect_16_regular = \"\\uea9b\";\n    public const string Ic_fluent_shape_intersect_20_regular = \"\\uea9c\";\n    public const string Ic_fluent_shape_intersect_24_regular = \"\\uea9d\";\n    public const string Ic_fluent_shape_subtract_16_regular = \"\\uea9e\";\n    public const string Ic_fluent_shape_subtract_20_regular = \"\\uea9f\";\n    public const string Ic_fluent_shape_subtract_24_regular = \"\\ueaa0\";\n    public const string Ic_fluent_shape_union_16_regular = \"\\ueaa1\";\n    public const string Ic_fluent_shape_union_20_regular = \"\\ueaa2\";\n    public const string Ic_fluent_shape_union_24_regular = \"\\ueaa3\";\n    public const string Ic_fluent_shapes_16_regular = \"\\uf6ac\";\n    public const string Ic_fluent_shapes_20_regular = \"\\uf6ad\";\n    public const string Ic_fluent_shapes_24_regular = \"\\uf6ae\";\n    public const string Ic_fluent_shapes_28_regular = \"\\ueaa4\";\n    public const string Ic_fluent_shapes_48_regular = \"\\ueaa5\";\n    public const string Ic_fluent_share_16_regular = \"\\ueaa6\";\n    public const string Ic_fluent_share_20_regular = \"\\uf6af\";\n    public const string Ic_fluent_share_24_regular = \"\\uf6b0\";\n    public const string Ic_fluent_share_28_regular = \"\\ueaa7\";\n    public const string Ic_fluent_share_48_regular = \"\\ueaa8\";\n    public const string Ic_fluent_share_android_20_regular = \"\\uf6b1\";\n    public const string Ic_fluent_share_android_24_regular = \"\\uf6b2\";\n    public const string Ic_fluent_share_close_tray_20_regular = \"\\ueaa9\";\n    public const string Ic_fluent_share_close_tray_24_regular = \"\\uf6b3\";\n    public const string Ic_fluent_share_ios_20_regular = \"\\uf6b5\";\n    public const string Ic_fluent_share_ios_24_regular = \"\\uf6b6\";\n    public const string Ic_fluent_share_ios_28_regular = \"\\uf6b7\";\n    public const string Ic_fluent_share_ios_48_regular = \"\\uf6b8\";\n    public const string Ic_fluent_share_screen_person_16_regular = \"\\ueaaa\";\n    public const string Ic_fluent_share_screen_person_24_regular = \"\\ueaac\";\n    public const string Ic_fluent_share_screen_person_28_regular = \"\\ueaad\";\n    public const string Ic_fluent_share_screen_person_overlay_16_regular = \"\\ueaae\";\n    public const string Ic_fluent_share_screen_person_overlay_20_regular = \"\\ueaaf\";\n    public const string Ic_fluent_share_screen_person_overlay_24_regular = \"\\ueab0\";\n    public const string Ic_fluent_share_screen_person_overlay_28_regular = \"\\ueab1\";\n    public const string Ic_fluent_share_screen_person_overlay_inside_16_regular = \"\\ueab2\";\n    public const string Ic_fluent_share_screen_person_overlay_inside_20_regular = \"\\ueab3\";\n    public const string Ic_fluent_share_screen_person_overlay_inside_24_regular = \"\\ueab4\";\n    public const string Ic_fluent_share_screen_person_overlay_inside_28_regular = \"\\ueab5\";\n    public const string Ic_fluent_share_screen_person_p_16_regular = \"\\ueab6\";\n    public const string Ic_fluent_share_screen_person_p_20_regular = \"\\ueab7\";\n    public const string Ic_fluent_share_screen_person_p_24_regular = \"\\ueab8\";\n    public const string Ic_fluent_share_screen_person_p_28_regular = \"\\ueab9\";\n    public const string Ic_fluent_share_screen_start_20_regular = \"\\ueaba\";\n    public const string Ic_fluent_share_screen_start_24_regular = \"\\ueabb\";\n    public const string Ic_fluent_share_screen_start_28_regular = \"\\ueabc\";\n    public const string Ic_fluent_share_screen_start_48_regular = \"\\ueabd\";\n    public const string Ic_fluent_share_screen_stop_16_regular = \"\\ueabe\";\n    public const string Ic_fluent_share_screen_stop_20_regular = \"\\ueabf\";\n    public const string Ic_fluent_share_screen_stop_24_regular = \"\\ueac0\";\n    public const string Ic_fluent_share_screen_stop_28_regular = \"\\ueac1\";\n    public const string Ic_fluent_share_screen_stop_48_regular = \"\\ueac2\";\n    public const string Ic_fluent_shield_16_regular = \"\\ueac3\";\n    public const string Ic_fluent_shield_20_regular = \"\\uf6be\";\n    public const string Ic_fluent_shield_24_regular = \"\\uf6bf\";\n    public const string Ic_fluent_shield_28_regular = \"\\ueac4\";\n    public const string Ic_fluent_shield_48_regular = \"\\ueac5\";\n    public const string Ic_fluent_shield_badge_20_regular = \"\\uf76d\";\n    public const string Ic_fluent_shield_badge_24_regular = \"\\ueac6\";\n    public const string Ic_fluent_shield_checkmark_16_regular = \"\\ueac7\";\n    public const string Ic_fluent_shield_checkmark_20_regular = \"\\ueac8\";\n    public const string Ic_fluent_shield_checkmark_24_regular = \"\\ueac9\";\n    public const string Ic_fluent_shield_checkmark_28_regular = \"\\ueaca\";\n    public const string Ic_fluent_shield_checkmark_48_regular = \"\\ueacb\";\n    public const string Ic_fluent_shield_dismiss_16_regular = \"\\ueacc\";\n    public const string Ic_fluent_shield_dismiss_20_regular = \"\\uf6c0\";\n    public const string Ic_fluent_shield_dismiss_24_regular = \"\\uf6c1\";\n    public const string Ic_fluent_shield_dismiss_shield_20_regular = \"\\ueacd\";\n    public const string Ic_fluent_shield_error_16_regular = \"\\ueace\";\n    public const string Ic_fluent_shield_error_20_regular = \"\\uf6c2\";\n    public const string Ic_fluent_shield_error_24_regular = \"\\uf6c3\";\n    public const string Ic_fluent_shield_globe_16_regular = \"\\ueeb0\";\n    public const string Ic_fluent_shield_globe_20_regular = \"\\ueeb1\";\n    public const string Ic_fluent_shield_globe_24_regular = \"\\ueeb2\";\n    public const string Ic_fluent_shield_keyhole_16_regular = \"\\uf6c4\";\n    public const string Ic_fluent_shield_keyhole_20_regular = \"\\uf6c5\";\n    public const string Ic_fluent_shield_keyhole_24_regular = \"\\uf6c6\";\n    public const string Ic_fluent_shield_lock_16_regular = \"\\ueacf\";\n    public const string Ic_fluent_shield_lock_20_regular = \"\\uead0\";\n    public const string Ic_fluent_shield_lock_24_regular = \"\\uead1\";\n    public const string Ic_fluent_shield_lock_28_regular = \"\\uead2\";\n    public const string Ic_fluent_shield_lock_48_regular = \"\\uead3\";\n    public const string Ic_fluent_shield_person_20_regular = \"\\uead4\";\n    public const string Ic_fluent_shield_person_add_20_regular = \"\\uead5\";\n    public const string Ic_fluent_shield_prohibited_20_regular = \"\\uf6c7\";\n    public const string Ic_fluent_shield_prohibited_24_regular = \"\\uf6c8\";\n    public const string Ic_fluent_shield_task_16_regular = \"\\uead6\";\n    public const string Ic_fluent_shield_task_20_regular = \"\\uead7\";\n    public const string Ic_fluent_shield_task_24_regular = \"\\uead8\";\n    public const string Ic_fluent_shield_task_28_regular = \"\\uead9\";\n    public const string Ic_fluent_shield_task_48_regular = \"\\ueada\";\n    public const string Ic_fluent_shifts_16_regular = \"\\ueadb\";\n    public const string Ic_fluent_shifts_20_regular = \"\\ueadc\";\n    public const string Ic_fluent_shifts_24_regular = \"\\uf6c9\";\n    public const string Ic_fluent_shifts_28_regular = \"\\uf6cc\";\n    public const string Ic_fluent_shifts_30_minutes_20_regular = \"\\ueadd\";\n    public const string Ic_fluent_shifts_30_minutes_24_regular = \"\\uf6cd\";\n    public const string Ic_fluent_shifts_32_regular = \"\\ueade\";\n    public const string Ic_fluent_shifts_activity_20_regular = \"\\uf6ce\";\n    public const string Ic_fluent_shifts_activity_24_regular = \"\\uf6cf\";\n    public const string Ic_fluent_shifts_add_20_regular = \"\\ueadf\";\n    public const string Ic_fluent_shifts_add_24_regular = \"\\uf6d0\";\n    public const string Ic_fluent_shifts_availability_20_regular = \"\\ueae0\";\n    public const string Ic_fluent_shifts_availability_24_regular = \"\\uf6d2\";\n    public const string Ic_fluent_shifts_checkmark_20_regular = \"\\ueae1\";\n    public const string Ic_fluent_shifts_checkmark_24_regular = \"\\ueae2\";\n    public const string Ic_fluent_shifts_day_20_regular = \"\\ueae3\";\n    public const string Ic_fluent_shifts_day_24_regular = \"\\ueae4\";\n    public const string Ic_fluent_shifts_open_20_regular = \"\\uf6d4\";\n    public const string Ic_fluent_shifts_open_24_regular = \"\\uf6d5\";\n    public const string Ic_fluent_shifts_prohibited_20_regular = \"\\ueae5\";\n    public const string Ic_fluent_shifts_prohibited_24_regular = \"\\ueae6\";\n    public const string Ic_fluent_shifts_question_mark_20_regular = \"\\ueae7\";\n    public const string Ic_fluent_shifts_question_mark_24_regular = \"\\ueae8\";\n    public const string Ic_fluent_shifts_team_20_regular = \"\\ueae9\";\n    public const string Ic_fluent_shifts_team_24_regular = \"\\uf6d7\";\n    public const string Ic_fluent_shopping_bag_16_regular = \"\\uf76e\";\n    public const string Ic_fluent_shopping_bag_20_regular = \"\\uf76f\";\n    public const string Ic_fluent_shopping_bag_24_regular = \"\\uf770\";\n    public const string Ic_fluent_shopping_bag_arrow_left_20_regular = \"\\ueaea\";\n    public const string Ic_fluent_shopping_bag_arrow_left_24_regular = \"\\ueaeb\";\n    public const string Ic_fluent_shopping_bag_dismiss_20_regular = \"\\ueaec\";\n    public const string Ic_fluent_shopping_bag_dismiss_24_regular = \"\\ueaed\";\n    public const string Ic_fluent_shopping_bag_pause_20_regular = \"\\ueaee\";\n    public const string Ic_fluent_shopping_bag_pause_24_regular = \"\\ueaef\";\n    public const string Ic_fluent_shopping_bag_percent_20_regular = \"\\ueaf0\";\n    public const string Ic_fluent_shopping_bag_percent_24_regular = \"\\ueaf1\";\n    public const string Ic_fluent_shopping_bag_play_20_regular = \"\\ueaf2\";\n    public const string Ic_fluent_shopping_bag_play_24_regular = \"\\ueaf3\";\n    public const string Ic_fluent_shopping_bag_tag_20_regular = \"\\ueaf4\";\n    public const string Ic_fluent_shopping_bag_tag_24_regular = \"\\ueaf5\";\n    public const string Ic_fluent_shortpick_20_regular = \"\\ueaf6\";\n    public const string Ic_fluent_shortpick_24_regular = \"\\ueaf7\";\n    public const string Ic_fluent_sidebar_search_ltr_20_regular = \"\\ueaf8\";\n    public const string Ic_fluent_sidebar_search_rtl_20_regular = \"\\ueaf9\";\n    public const string Ic_fluent_sign_out_20_regular = \"\\ueafa\";\n    public const string Ic_fluent_sign_out_24_regular = \"\\uf6da\";\n    public const string Ic_fluent_signature_16_regular = \"\\uf6db\";\n    public const string Ic_fluent_signature_20_regular = \"\\uf6dc\";\n    public const string Ic_fluent_signature_24_regular = \"\\uf6dd\";\n    public const string Ic_fluent_signature_28_regular = \"\\uf6de\";\n    public const string Ic_fluent_sim_16_regular = \"\\uf6e2\";\n    public const string Ic_fluent_sim_20_regular = \"\\uf6e3\";\n    public const string Ic_fluent_sim_24_regular = \"\\uf6e4\";\n    public const string Ic_fluent_skip_back_10_20_regular = \"\\ueafb\";\n    public const string Ic_fluent_skip_back_10_24_regular = \"\\ueafc\";\n    public const string Ic_fluent_skip_back_10_28_regular = \"\\ueafd\";\n    public const string Ic_fluent_skip_back_10_32_regular = \"\\ueafe\";\n    public const string Ic_fluent_skip_back_10_48_regular = \"\\ueaff\";\n    public const string Ic_fluent_skip_forward_10_20_regular = \"\\ueb00\";\n    public const string Ic_fluent_skip_forward_10_24_regular = \"\\ueb01\";\n    public const string Ic_fluent_skip_forward_10_28_regular = \"\\ueb02\";\n    public const string Ic_fluent_skip_forward_10_32_regular = \"\\ueb03\";\n    public const string Ic_fluent_skip_forward_10_48_regular = \"\\ueb04\";\n    public const string Ic_fluent_skip_forward_30_20_regular = \"\\ueb05\";\n    public const string Ic_fluent_skip_forward_30_24_regular = \"\\ueb06\";\n    public const string Ic_fluent_skip_forward_30_28_regular = \"\\ueb07\";\n    public const string Ic_fluent_skip_forward_30_32_regular = \"\\ueb08\";\n    public const string Ic_fluent_skip_forward_30_48_regular = \"\\ueb09\";\n    public const string Ic_fluent_skip_forward_tab_20_regular = \"\\ueb0a\";\n    public const string Ic_fluent_skip_forward_tab_24_regular = \"\\ueb0b\";\n    public const string Ic_fluent_sleep_20_regular = \"\\ueb0c\";\n    public const string Ic_fluent_sleep_24_regular = \"\\uf6e5\";\n    public const string Ic_fluent_slide_add_16_regular = \"\\ueb0d\";\n    public const string Ic_fluent_slide_add_20_regular = \"\\ueb0e\";\n    public const string Ic_fluent_slide_add_24_regular = \"\\uf6e6\";\n    public const string Ic_fluent_slide_add_28_regular = \"\\ueb0f\";\n    public const string Ic_fluent_slide_add_32_regular = \"\\ueb10\";\n    public const string Ic_fluent_slide_add_48_regular = \"\\ueb11\";\n    public const string Ic_fluent_slide_arrow_right_20_regular = \"\\ueb12\";\n    public const string Ic_fluent_slide_arrow_right_24_regular = \"\\ueb13\";\n    public const string Ic_fluent_slide_eraser_16_regular = \"\\ueb14\";\n    public const string Ic_fluent_slide_eraser_20_regular = \"\\ueb15\";\n    public const string Ic_fluent_slide_eraser_24_regular = \"\\ueb16\";\n    public const string Ic_fluent_slide_grid_20_regular = \"\\ueb17\";\n    public const string Ic_fluent_slide_grid_24_regular = \"\\ueb18\";\n    public const string Ic_fluent_slide_hide_20_regular = \"\\ueb19\";\n    public const string Ic_fluent_slide_hide_24_regular = \"\\uf6e8\";\n    public const string Ic_fluent_slide_layout_20_regular = \"\\uf6e9\";\n    public const string Ic_fluent_slide_layout_24_regular = \"\\uf6ea\";\n    public const string Ic_fluent_slide_microphone_20_regular = \"\\ueb1a\";\n    public const string Ic_fluent_slide_microphone_24_regular = \"\\uf6eb\";\n    public const string Ic_fluent_slide_microphone_32_regular = \"\\ueb1b\";\n    public const string Ic_fluent_slide_multiple_20_regular = \"\\ueb1c\";\n    public const string Ic_fluent_slide_multiple_24_regular = \"\\ueb1d\";\n    public const string Ic_fluent_slide_multiple_arrow_right_20_regular = \"\\ueb1e\";\n    public const string Ic_fluent_slide_multiple_arrow_right_24_regular = \"\\ueb1f\";\n    public const string Ic_fluent_slide_multiple_search_20_regular = \"\\uf773\";\n    public const string Ic_fluent_slide_multiple_search_24_regular = \"\\uf774\";\n    public const string Ic_fluent_slide_search_20_regular = \"\\ueb20\";\n    public const string Ic_fluent_slide_search_24_regular = \"\\ueb21\";\n    public const string Ic_fluent_slide_search_28_regular = \"\\ueb22\";\n    public const string Ic_fluent_slide_settings_20_regular = \"\\ueb23\";\n    public const string Ic_fluent_slide_settings_24_regular = \"\\ueb24\";\n    public const string Ic_fluent_slide_size_20_regular = \"\\ueb25\";\n    public const string Ic_fluent_slide_size_24_regular = \"\\ueb26\";\n    public const string Ic_fluent_slide_text_16_regular = \"\\ueb27\";\n    public const string Ic_fluent_slide_text_20_regular = \"\\ueb28\";\n    public const string Ic_fluent_slide_text_24_regular = \"\\uf6ec\";\n    public const string Ic_fluent_slide_text_28_regular = \"\\ueb29\";\n    public const string Ic_fluent_slide_text_48_regular = \"\\ueb2a\";\n    public const string Ic_fluent_slide_transition_20_regular = \"\\ueb2b\";\n    public const string Ic_fluent_slide_transition_24_regular = \"\\ueb2c\";\n    public const string Ic_fluent_smartwatch_20_regular = \"\\uf775\";\n    public const string Ic_fluent_smartwatch_24_regular = \"\\uf776\";\n    public const string Ic_fluent_smartwatch_dot_20_regular = \"\\uf786\";\n    public const string Ic_fluent_smartwatch_dot_24_regular = \"\\uf787\";\n    public const string Ic_fluent_snooze_16_regular = \"\\uf6f4\";\n    public const string Ic_fluent_snooze_20_regular = \"\\ueb2d\";\n    public const string Ic_fluent_snooze_24_regular = \"\\uf6f5\";\n    public const string Ic_fluent_sound_source_20_regular = \"\\ueb2e\";\n    public const string Ic_fluent_sound_source_24_regular = \"\\uf6f6\";\n    public const string Ic_fluent_sound_source_28_regular = \"\\uf6f7\";\n    public const string Ic_fluent_sound_wave_circle_20_regular = \"\\ueb2f\";\n    public const string Ic_fluent_sound_wave_circle_24_regular = \"\\ueb30\";\n    public const string Ic_fluent_spacebar_20_regular = \"\\ueb31\";\n    public const string Ic_fluent_spacebar_24_regular = \"\\uf6f8\";\n    public const string Ic_fluent_sparkle_16_regular = \"\\ueb32\";\n    public const string Ic_fluent_sparkle_20_regular = \"\\ueb33\";\n    public const string Ic_fluent_sparkle_24_regular = \"\\ueb34\";\n    public const string Ic_fluent_sparkle_28_regular = \"\\ueb35\";\n    public const string Ic_fluent_sparkle_48_regular = \"\\ueb36\";\n    public const string Ic_fluent_speaker_0_16_regular = \"\\ueb37\";\n    public const string Ic_fluent_speaker_0_20_regular = \"\\ueb38\";\n    public const string Ic_fluent_speaker_0_24_regular = \"\\uf6f9\";\n    public const string Ic_fluent_speaker_0_28_regular = \"\\ueb39\";\n    public const string Ic_fluent_speaker_0_32_regular = \"\\ueb3a\";\n    public const string Ic_fluent_speaker_0_48_regular = \"\\ueb3b\";\n    public const string Ic_fluent_speaker_1_16_regular = \"\\ueb3c\";\n    public const string Ic_fluent_speaker_1_20_regular = \"\\ueb3d\";\n    public const string Ic_fluent_speaker_1_24_regular = \"\\uf6fb\";\n    public const string Ic_fluent_speaker_1_28_regular = \"\\ueb3e\";\n    public const string Ic_fluent_speaker_1_32_regular = \"\\ueb3f\";\n    public const string Ic_fluent_speaker_1_48_regular = \"\\ueb40\";\n    public const string Ic_fluent_speaker_2_16_regular = \"\\ueb41\";\n    public const string Ic_fluent_speaker_2_20_regular = \"\\ueb42\";\n    public const string Ic_fluent_speaker_2_24_regular = \"\\ueb43\";\n    public const string Ic_fluent_speaker_2_28_regular = \"\\ueb44\";\n    public const string Ic_fluent_speaker_2_32_regular = \"\\ueb45\";\n    public const string Ic_fluent_speaker_2_48_regular = \"\\ueb46\";\n    public const string Ic_fluent_speaker_bluetooth_20_regular = \"\\ueb47\";\n    public const string Ic_fluent_speaker_bluetooth_24_regular = \"\\uf6ff\";\n    public const string Ic_fluent_speaker_bluetooth_28_regular = \"\\ueb48\";\n    public const string Ic_fluent_speaker_edit_16_regular = \"\\uf700\";\n    public const string Ic_fluent_speaker_edit_20_regular = \"\\uf701\";\n    public const string Ic_fluent_speaker_edit_24_regular = \"\\uf702\";\n    public const string Ic_fluent_speaker_mute_16_regular = \"\\ueb49\";\n    public const string Ic_fluent_speaker_mute_20_regular = \"\\ueb4a\";\n    public const string Ic_fluent_speaker_mute_24_regular = \"\\ueb4b\";\n    public const string Ic_fluent_speaker_mute_28_regular = \"\\ueb4c\";\n    public const string Ic_fluent_speaker_mute_48_regular = \"\\ueb4d\";\n    public const string Ic_fluent_speaker_off_16_regular = \"\\ueb4e\";\n    public const string Ic_fluent_speaker_off_20_regular = \"\\ueb4f\";\n    public const string Ic_fluent_speaker_off_24_regular = \"\\uf706\";\n    public const string Ic_fluent_speaker_off_28_regular = \"\\uf707\";\n    public const string Ic_fluent_speaker_off_48_regular = \"\\ueb50\";\n    public const string Ic_fluent_speaker_settings_20_regular = \"\\ueb51\";\n    public const string Ic_fluent_speaker_settings_24_regular = \"\\uf708\";\n    public const string Ic_fluent_speaker_settings_28_regular = \"\\ueb52\";\n    public const string Ic_fluent_speaker_usb_20_regular = \"\\ueb53\";\n    public const string Ic_fluent_speaker_usb_24_regular = \"\\ueb54\";\n    public const string Ic_fluent_speaker_usb_28_regular = \"\\ueb55\";\n    public const string Ic_fluent_spinner_ios_20_regular = \"\\uf709\";\n    public const string Ic_fluent_split_hint_20_regular = \"\\ueb56\";\n    public const string Ic_fluent_split_horizontal_12_regular = \"\\ueb57\";\n    public const string Ic_fluent_split_horizontal_16_regular = \"\\ueb58\";\n    public const string Ic_fluent_split_horizontal_20_regular = \"\\ueb59\";\n    public const string Ic_fluent_split_horizontal_24_regular = \"\\ueb5a\";\n    public const string Ic_fluent_split_horizontal_28_regular = \"\\ueb5b\";\n    public const string Ic_fluent_split_horizontal_32_regular = \"\\ueb5c\";\n    public const string Ic_fluent_split_horizontal_48_regular = \"\\ueb5d\";\n    public const string Ic_fluent_split_vertical_12_regular = \"\\ueb5e\";\n    public const string Ic_fluent_split_vertical_16_regular = \"\\ueb5f\";\n    public const string Ic_fluent_split_vertical_20_regular = \"\\ueb60\";\n    public const string Ic_fluent_split_vertical_24_regular = \"\\ueb61\";\n    public const string Ic_fluent_split_vertical_28_regular = \"\\ueb62\";\n    public const string Ic_fluent_split_vertical_32_regular = \"\\ueb63\";\n    public const string Ic_fluent_split_vertical_48_regular = \"\\ueb64\";\n    public const string Ic_fluent_sport_16_regular = \"\\ueb65\";\n    public const string Ic_fluent_sport_20_regular = \"\\ueb66\";\n    public const string Ic_fluent_sport_24_regular = \"\\ueb67\";\n    public const string Ic_fluent_sport_american_football_20_regular = \"\\ueb68\";\n    public const string Ic_fluent_sport_american_football_24_regular = \"\\ueb69\";\n    public const string Ic_fluent_sport_baseball_20_regular = \"\\ueb6a\";\n    public const string Ic_fluent_sport_baseball_24_regular = \"\\ueb6b\";\n    public const string Ic_fluent_sport_basketball_20_regular = \"\\ueb6c\";\n    public const string Ic_fluent_sport_basketball_24_regular = \"\\ueb6d\";\n    public const string Ic_fluent_sport_hockey_20_regular = \"\\ueb6e\";\n    public const string Ic_fluent_sport_hockey_24_regular = \"\\ueb6f\";\n    public const string Ic_fluent_sport_soccer_16_regular = \"\\ueb70\";\n    public const string Ic_fluent_sport_soccer_20_regular = \"\\ueb71\";\n    public const string Ic_fluent_sport_soccer_24_regular = \"\\ueb72\";\n    public const string Ic_fluent_square_28_regular = \"\\ueb77\";\n    public const string Ic_fluent_square_32_regular = \"\\ueb78\";\n    public const string Ic_fluent_square_48_regular = \"\\ueb79\";\n    public const string Ic_fluent_square_add_16_regular = \"\\ueb7a\";\n    public const string Ic_fluent_square_add_20_regular = \"\\ueb7b\";\n    public const string Ic_fluent_square_arrow_forward_16_regular = \"\\ueb7c\";\n    public const string Ic_fluent_square_arrow_forward_20_regular = \"\\ueb7d\";\n    public const string Ic_fluent_square_arrow_forward_24_regular = \"\\ueb7e\";\n    public const string Ic_fluent_square_arrow_forward_28_regular = \"\\ueb7f\";\n    public const string Ic_fluent_square_arrow_forward_32_regular = \"\\ueb80\";\n    public const string Ic_fluent_square_arrow_forward_48_regular = \"\\ueb81\";\n    public const string Ic_fluent_square_dismiss_16_regular = \"\\ueb82\";\n    public const string Ic_fluent_square_dismiss_20_regular = \"\\ueb83\";\n    public const string Ic_fluent_square_eraser_20_regular = \"\\ueb84\";\n    public const string Ic_fluent_square_hint_16_regular = \"\\ueb85\";\n    public const string Ic_fluent_square_hint_20_regular = \"\\ueb86\";\n    public const string Ic_fluent_square_hint_24_regular = \"\\ueb87\";\n    public const string Ic_fluent_square_hint_28_regular = \"\\ueb88\";\n    public const string Ic_fluent_square_hint_32_regular = \"\\ueb89\";\n    public const string Ic_fluent_square_hint_48_regular = \"\\ueb8a\";\n    public const string Ic_fluent_square_hint_apps_20_regular = \"\\ueb8b\";\n    public const string Ic_fluent_square_hint_apps_24_regular = \"\\ueb8c\";\n    public const string Ic_fluent_square_hint_arrow_back_16_regular = \"\\ueb8d\";\n    public const string Ic_fluent_square_hint_arrow_back_20_regular = \"\\ueb8e\";\n    public const string Ic_fluent_square_hint_sparkles_16_regular = \"\\ueb8f\";\n    public const string Ic_fluent_square_hint_sparkles_20_regular = \"\\ueb90\";\n    public const string Ic_fluent_square_hint_sparkles_24_regular = \"\\ueb91\";\n    public const string Ic_fluent_square_hint_sparkles_28_regular = \"\\ueb92\";\n    public const string Ic_fluent_square_hint_sparkles_32_regular = \"\\ueb93\";\n    public const string Ic_fluent_square_hint_sparkles_48_regular = \"\\ueb94\";\n    public const string Ic_fluent_square_multiple_16_regular = \"\\ueb95\";\n    public const string Ic_fluent_square_multiple_20_regular = \"\\ueb96\";\n    public const string Ic_fluent_square_multiple_24_regular = \"\\uf78c\";\n    public const string Ic_fluent_square_multiple_28_regular = \"\\ueeb3\";\n    public const string Ic_fluent_square_multiple_32_regular = \"\\ueeb4\";\n    public const string Ic_fluent_square_multiple_48_regular = \"\\ueeb5\";\n    public const string Ic_fluent_square_shadow_12_regular = \"\\ueb97\";\n    public const string Ic_fluent_square_shadow_20_regular = \"\\ueb98\";\n    public const string Ic_fluent_squares_nested_20_regular = \"\\ueb99\";\n    public const string Ic_fluent_stack_16_regular = \"\\uf78d\";\n    public const string Ic_fluent_stack_20_regular = \"\\uf792\";\n    public const string Ic_fluent_stack_24_regular = \"\\uf7a6\";\n    public const string Ic_fluent_stack_arrow_forward_20_regular = \"\\ueb9a\";\n    public const string Ic_fluent_stack_arrow_forward_24_regular = \"\\ueb9b\";\n    public const string Ic_fluent_stack_star_16_regular = \"\\ueb9c\";\n    public const string Ic_fluent_stack_star_20_regular = \"\\ueb9d\";\n    public const string Ic_fluent_stack_star_24_regular = \"\\ueb9e\";\n    public const string Ic_fluent_star_12_regular = \"\\uf70d\";\n    public const string Ic_fluent_star_16_regular = \"\\uf70e\";\n    public const string Ic_fluent_star_20_regular = \"\\uf70f\";\n    public const string Ic_fluent_star_24_regular = \"\\uf710\";\n    public const string Ic_fluent_star_28_regular = \"\\uf711\";\n    public const string Ic_fluent_star_48_regular = \"\\ueb9f\";\n    public const string Ic_fluent_star_add_16_regular = \"\\uf712\";\n    public const string Ic_fluent_star_add_20_regular = \"\\uf713\";\n    public const string Ic_fluent_star_add_24_regular = \"\\uf714\";\n    public const string Ic_fluent_star_add_28_regular = \"\\ueba0\";\n    public const string Ic_fluent_star_arrow_right_end_20_regular = \"\\ueba1\";\n    public const string Ic_fluent_star_arrow_right_end_24_regular = \"\\ueba2\";\n    public const string Ic_fluent_star_arrow_right_start_20_regular = \"\\ueba3\";\n    public const string Ic_fluent_star_arrow_right_start_24_regular = \"\\uf716\";\n    public const string Ic_fluent_star_dismiss_16_regular = \"\\ueba4\";\n    public const string Ic_fluent_star_dismiss_20_regular = \"\\ueba5\";\n    public const string Ic_fluent_star_dismiss_24_regular = \"\\ueba6\";\n    public const string Ic_fluent_star_dismiss_28_regular = \"\\ueba7\";\n    public const string Ic_fluent_star_edit_20_regular = \"\\ueba8\";\n    public const string Ic_fluent_star_edit_24_regular = \"\\ueba9\";\n    public const string Ic_fluent_star_emphasis_20_regular = \"\\uebaa\";\n    public const string Ic_fluent_star_emphasis_24_regular = \"\\uf717\";\n    public const string Ic_fluent_star_emphasis_32_regular = \"\\uebab\";\n    public const string Ic_fluent_star_half_12_regular = \"\\uebac\";\n    public const string Ic_fluent_star_half_16_regular = \"\\uebad\";\n    public const string Ic_fluent_star_half_20_regular = \"\\uebae\";\n    public const string Ic_fluent_star_half_24_regular = \"\\uebaf\";\n    public const string Ic_fluent_star_half_28_regular = \"\\uebb0\";\n    public const string Ic_fluent_star_line_horizontal_3_16_regular = \"\\uebb1\";\n    public const string Ic_fluent_star_line_horizontal_3_20_regular = \"\\uebb2\";\n    public const string Ic_fluent_star_line_horizontal_3_24_regular = \"\\uebb3\";\n    public const string Ic_fluent_star_off_12_regular = \"\\uf718\";\n    public const string Ic_fluent_star_off_16_regular = \"\\uf719\";\n    public const string Ic_fluent_star_off_20_regular = \"\\uf71a\";\n    public const string Ic_fluent_star_off_24_regular = \"\\uf71b\";\n    public const string Ic_fluent_star_off_28_regular = \"\\uf71c\";\n    public const string Ic_fluent_star_one_quarter_12_regular = \"\\uebb4\";\n    public const string Ic_fluent_star_one_quarter_16_regular = \"\\uebb5\";\n    public const string Ic_fluent_star_one_quarter_20_regular = \"\\uebb6\";\n    public const string Ic_fluent_star_one_quarter_24_regular = \"\\uebb7\";\n    public const string Ic_fluent_star_one_quarter_28_regular = \"\\uebb8\";\n    public const string Ic_fluent_star_prohibited_16_regular = \"\\uf71d\";\n    public const string Ic_fluent_star_prohibited_20_regular = \"\\uf71e\";\n    public const string Ic_fluent_star_prohibited_24_regular = \"\\uf71f\";\n    public const string Ic_fluent_star_settings_20_regular = \"\\uebb9\";\n    public const string Ic_fluent_star_settings_24_regular = \"\\uf720\";\n    public const string Ic_fluent_star_three_quarter_12_regular = \"\\uebba\";\n    public const string Ic_fluent_star_three_quarter_16_regular = \"\\uebbb\";\n    public const string Ic_fluent_star_three_quarter_20_regular = \"\\uebbc\";\n    public const string Ic_fluent_star_three_quarter_24_regular = \"\\uebbd\";\n    public const string Ic_fluent_star_three_quarter_28_regular = \"\\uebbe\";\n    public const string Ic_fluent_status_16_regular = \"\\uf721\";\n    public const string Ic_fluent_status_20_regular = \"\\uf722\";\n    public const string Ic_fluent_status_24_regular = \"\\uf723\";\n    public const string Ic_fluent_steps_20_regular = \"\\uebbf\";\n    public const string Ic_fluent_steps_24_regular = \"\\uebc0\";\n    public const string Ic_fluent_stethoscope_20_regular = \"\\uf724\";\n    public const string Ic_fluent_stethoscope_24_regular = \"\\uf725\";\n    public const string Ic_fluent_sticker_12_regular = \"\\uebc1\";\n    public const string Ic_fluent_sticker_20_regular = \"\\uf726\";\n    public const string Ic_fluent_sticker_24_regular = \"\\uf727\";\n    public const string Ic_fluent_sticker_add_20_regular = \"\\uebc2\";\n    public const string Ic_fluent_sticker_add_24_regular = \"\\uf728\";\n    public const string Ic_fluent_stop_16_regular = \"\\uf729\";\n    public const string Ic_fluent_stop_20_regular = \"\\uf72a\";\n    public const string Ic_fluent_stop_24_regular = \"\\uf72b\";\n    public const string Ic_fluent_storage_20_regular = \"\\uebc3\";\n    public const string Ic_fluent_storage_24_regular = \"\\uf72c\";\n    public const string Ic_fluent_store_microsoft_16_regular = \"\\uf730\";\n    public const string Ic_fluent_store_microsoft_20_regular = \"\\uf731\";\n    public const string Ic_fluent_store_microsoft_24_regular = \"\\uf732\";\n    public const string Ic_fluent_stream_20_regular = \"\\uebc4\";\n    public const string Ic_fluent_stream_24_regular = \"\\uebc5\";\n    public const string Ic_fluent_stream_input_20_regular = \"\\uebc6\";\n    public const string Ic_fluent_stream_input_output_20_regular = \"\\uebc7\";\n    public const string Ic_fluent_stream_output_20_regular = \"\\uebc8\";\n    public const string Ic_fluent_style_guide_20_regular = \"\\uebc9\";\n    public const string Ic_fluent_style_guide_24_regular = \"\\uf733\";\n    public const string Ic_fluent_sub_grid_20_regular = \"\\uebca\";\n    public const string Ic_fluent_sub_grid_24_regular = \"\\uf734\";\n    public const string Ic_fluent_subtitles_16_regular = \"\\uebcb\";\n    public const string Ic_fluent_subtitles_20_regular = \"\\uebcc\";\n    public const string Ic_fluent_subtitles_24_regular = \"\\uebcd\";\n    public const string Ic_fluent_subtract_12_regular = \"\\uebce\";\n    public const string Ic_fluent_subtract_16_regular = \"\\uebcf\";\n    public const string Ic_fluent_subtract_20_regular = \"\\uebd0\";\n    public const string Ic_fluent_subtract_24_regular = \"\\uebd1\";\n    public const string Ic_fluent_subtract_28_regular = \"\\uebd2\";\n    public const string Ic_fluent_subtract_48_regular = \"\\uebd3\";\n    public const string Ic_fluent_subtract_circle_12_regular = \"\\uebd4\";\n    public const string Ic_fluent_subtract_circle_16_regular = \"\\uf7a7\";\n    public const string Ic_fluent_subtract_circle_20_regular = \"\\uf7b0\";\n    public const string Ic_fluent_subtract_circle_24_regular = \"\\uf7b1\";\n    public const string Ic_fluent_subtract_circle_28_regular = \"\\uf7b4\";\n    public const string Ic_fluent_subtract_circle_32_regular = \"\\uf7b5\";\n    public const string Ic_fluent_subtract_circle_arrow_back_16_regular = \"\\uebd5\";\n    public const string Ic_fluent_subtract_circle_arrow_back_20_regular = \"\\uebd6\";\n    public const string Ic_fluent_subtract_circle_arrow_forward_16_regular = \"\\uebd7\";\n    public const string Ic_fluent_subtract_circle_arrow_forward_20_regular = \"\\uebd8\";\n    public const string Ic_fluent_subtract_square_20_regular = \"\\uebd9\";\n    public const string Ic_fluent_subtract_square_24_regular = \"\\uebda\";\n    public const string Ic_fluent_subtract_square_multiple_16_regular = \"\\uebdb\";\n    public const string Ic_fluent_subtract_square_multiple_20_regular = \"\\uebdc\";\n    public const string Ic_fluent_surface_earbuds_20_regular = \"\\uf738\";\n    public const string Ic_fluent_surface_earbuds_24_regular = \"\\uf739\";\n    public const string Ic_fluent_surface_hub_20_regular = \"\\uf73a\";\n    public const string Ic_fluent_surface_hub_24_regular = \"\\uf73b\";\n    public const string Ic_fluent_swipe_down_20_regular = \"\\uebdd\";\n    public const string Ic_fluent_swipe_down_24_regular = \"\\uf73c\";\n    public const string Ic_fluent_swipe_right_20_regular = \"\\uebde\";\n    public const string Ic_fluent_swipe_right_24_regular = \"\\uf73d\";\n    public const string Ic_fluent_swipe_up_20_regular = \"\\uebdf\";\n    public const string Ic_fluent_swipe_up_24_regular = \"\\uf73e\";\n    public const string Ic_fluent_symbols_16_regular = \"\\uebe0\";\n    public const string Ic_fluent_symbols_20_regular = \"\\uebe1\";\n    public const string Ic_fluent_symbols_24_regular = \"\\uf73f\";\n    public const string Ic_fluent_sync_off_16_regular = \"\\uf740\";\n    public const string Ic_fluent_sync_off_20_regular = \"\\uf741\";\n    public const string Ic_fluent_syringe_20_regular = \"\\uebe2\";\n    public const string Ic_fluent_syringe_24_regular = \"\\uebe3\";\n    public const string Ic_fluent_system_20_regular = \"\\uebe4\";\n    public const string Ic_fluent_system_24_regular = \"\\uf742\";\n    public const string Ic_fluent_tab_16_regular = \"\\uf743\";\n    public const string Ic_fluent_tab_20_regular = \"\\uf744\";\n    public const string Ic_fluent_tab_add_20_regular = \"\\uebe5\";\n    public const string Ic_fluent_tab_add_24_regular = \"\\uebe6\";\n    public const string Ic_fluent_tab_arrow_left_20_regular = \"\\uebe7\";\n    public const string Ic_fluent_tab_arrow_left_24_regular = \"\\uebe8\";\n    public const string Ic_fluent_tab_desktop_16_regular = \"\\uebe9\";\n    public const string Ic_fluent_tab_desktop_20_regular = \"\\uf747\";\n    public const string Ic_fluent_tab_desktop_24_regular = \"\\uebea\";\n    public const string Ic_fluent_tab_desktop_arrow_clockwise_16_regular = \"\\uf748\";\n    public const string Ic_fluent_tab_desktop_arrow_clockwise_20_regular = \"\\uf749\";\n    public const string Ic_fluent_tab_desktop_arrow_clockwise_24_regular = \"\\uf74a\";\n    public const string Ic_fluent_tab_desktop_arrow_left_20_regular = \"\\uebeb\";\n    public const string Ic_fluent_tab_desktop_bottom_20_regular = \"\\uebec\";\n    public const string Ic_fluent_tab_desktop_bottom_24_regular = \"\\uebed\";\n    public const string Ic_fluent_tab_desktop_clock_20_regular = \"\\uf74b\";\n    public const string Ic_fluent_tab_desktop_copy_20_regular = \"\\uf74c\";\n    public const string Ic_fluent_tab_desktop_image_16_regular = \"\\uf74d\";\n    public const string Ic_fluent_tab_desktop_image_20_regular = \"\\uf74e\";\n    public const string Ic_fluent_tab_desktop_image_24_regular = \"\\uf74f\";\n    public const string Ic_fluent_tab_desktop_multiple_20_regular = \"\\uf750\";\n    public const string Ic_fluent_tab_desktop_multiple_bottom_20_regular = \"\\uebee\";\n    public const string Ic_fluent_tab_desktop_multiple_bottom_24_regular = \"\\uebef\";\n    public const string Ic_fluent_tab_desktop_new_page_20_regular = \"\\uf751\";\n    public const string Ic_fluent_tab_in_private_16_regular = \"\\uf752\";\n    public const string Ic_fluent_tab_in_private_20_regular = \"\\uf753\";\n    public const string Ic_fluent_tab_in_private_24_regular = \"\\uf754\";\n    public const string Ic_fluent_tab_in_private_28_regular = \"\\uf755\";\n    public const string Ic_fluent_tab_inprivate_account_20_regular = \"\\uf756\";\n    public const string Ic_fluent_tab_inprivate_account_24_regular = \"\\uf757\";\n    public const string Ic_fluent_tab_prohibited_20_regular = \"\\uebf0\";\n    public const string Ic_fluent_tab_prohibited_24_regular = \"\\uebf1\";\n    public const string Ic_fluent_tab_shield_dismiss_20_regular = \"\\uebf2\";\n    public const string Ic_fluent_tab_shield_dismiss_24_regular = \"\\uebf3\";\n    public const string Ic_fluent_table_16_regular = \"\\uebf4\";\n    public const string Ic_fluent_table_20_regular = \"\\uf75d\";\n    public const string Ic_fluent_table_24_regular = \"\\uf75e\";\n    public const string Ic_fluent_table_28_regular = \"\\uebf5\";\n    public const string Ic_fluent_table_32_regular = \"\\uebf6\";\n    public const string Ic_fluent_table_48_regular = \"\\uebf7\";\n    public const string Ic_fluent_table_add_16_regular = \"\\uebf8\";\n    public const string Ic_fluent_table_add_20_regular = \"\\uebf9\";\n    public const string Ic_fluent_table_add_24_regular = \"\\uf75f\";\n    public const string Ic_fluent_table_add_28_regular = \"\\uebfa\";\n    public const string Ic_fluent_table_bottom_row_16_regular = \"\\uebfb\";\n    public const string Ic_fluent_table_bottom_row_20_regular = \"\\uebfc\";\n    public const string Ic_fluent_table_bottom_row_24_regular = \"\\uebfd\";\n    public const string Ic_fluent_table_bottom_row_28_regular = \"\\uebfe\";\n    public const string Ic_fluent_table_bottom_row_32_regular = \"\\uebff\";\n    public const string Ic_fluent_table_bottom_row_48_regular = \"\\uec00\";\n    public const string Ic_fluent_table_calculator_20_regular = \"\\ueeb6\";\n    public const string Ic_fluent_table_cell_edit_16_regular = \"\\uec01\";\n    public const string Ic_fluent_table_cell_edit_20_regular = \"\\uec02\";\n    public const string Ic_fluent_table_cell_edit_24_regular = \"\\uec03\";\n    public const string Ic_fluent_table_cell_edit_28_regular = \"\\uec04\";\n    public const string Ic_fluent_table_cells_merge_16_regular = \"\\uec05\";\n    public const string Ic_fluent_table_cells_merge_20_regular = \"\\uf760\";\n    public const string Ic_fluent_table_cells_merge_24_regular = \"\\uf761\";\n    public const string Ic_fluent_table_cells_merge_28_regular = \"\\uec06\";\n    public const string Ic_fluent_table_cells_split_16_regular = \"\\uec07\";\n    public const string Ic_fluent_table_cells_split_20_regular = \"\\uf762\";\n    public const string Ic_fluent_table_cells_split_24_regular = \"\\uf763\";\n    public const string Ic_fluent_table_cells_split_28_regular = \"\\uec08\";\n    public const string Ic_fluent_table_checker_20_regular = \"\\uec09\";\n    public const string Ic_fluent_table_copy_20_regular = \"\\uec0a\";\n    public const string Ic_fluent_table_delete_column_16_regular = \"\\uec0b\";\n    public const string Ic_fluent_table_delete_column_20_regular = \"\\uec0c\";\n    public const string Ic_fluent_table_delete_column_24_regular = \"\\uec0d\";\n    public const string Ic_fluent_table_delete_column_28_regular = \"\\uec0e\";\n    public const string Ic_fluent_table_delete_row_16_regular = \"\\uec0f\";\n    public const string Ic_fluent_table_delete_row_20_regular = \"\\uec10\";\n    public const string Ic_fluent_table_delete_row_24_regular = \"\\uec11\";\n    public const string Ic_fluent_table_delete_row_28_regular = \"\\uec12\";\n    public const string Ic_fluent_table_dismiss_16_regular = \"\\uec13\";\n    public const string Ic_fluent_table_dismiss_20_regular = \"\\uec14\";\n    public const string Ic_fluent_table_dismiss_24_regular = \"\\uec15\";\n    public const string Ic_fluent_table_dismiss_28_regular = \"\\uec16\";\n    public const string Ic_fluent_table_edit_16_regular = \"\\uec17\";\n    public const string Ic_fluent_table_edit_20_regular = \"\\uec18\";\n    public const string Ic_fluent_table_edit_24_regular = \"\\uf768\";\n    public const string Ic_fluent_table_edit_28_regular = \"\\uec19\";\n    public const string Ic_fluent_table_freeze_column_16_regular = \"\\uec1a\";\n    public const string Ic_fluent_table_freeze_column_20_regular = \"\\uec1b\";\n    public const string Ic_fluent_table_freeze_column_24_regular = \"\\uf76a\";\n    public const string Ic_fluent_table_freeze_column_28_regular = \"\\uec1c\";\n    public const string Ic_fluent_table_freeze_column_and_row_16_regular = \"\\uec1d\";\n    public const string Ic_fluent_table_freeze_column_and_row_20_regular = \"\\uec1e\";\n    public const string Ic_fluent_table_freeze_column_and_row_24_regular = \"\\uec1f\";\n    public const string Ic_fluent_table_freeze_column_and_row_28_regular = \"\\uec20\";\n    public const string Ic_fluent_table_freeze_row_16_regular = \"\\uec21\";\n    public const string Ic_fluent_table_freeze_row_20_regular = \"\\uec22\";\n    public const string Ic_fluent_table_freeze_row_24_regular = \"\\uf76b\";\n    public const string Ic_fluent_table_freeze_row_28_regular = \"\\uec23\";\n    public const string Ic_fluent_table_image_20_regular = \"\\uec24\";\n    public const string Ic_fluent_table_insert_column_16_regular = \"\\uec25\";\n    public const string Ic_fluent_table_insert_column_20_regular = \"\\uec26\";\n    public const string Ic_fluent_table_insert_column_24_regular = \"\\uec27\";\n    public const string Ic_fluent_table_insert_column_28_regular = \"\\uec28\";\n    public const string Ic_fluent_table_insert_row_16_regular = \"\\uec29\";\n    public const string Ic_fluent_table_insert_row_20_regular = \"\\uec2a\";\n    public const string Ic_fluent_table_insert_row_24_regular = \"\\uec2b\";\n    public const string Ic_fluent_table_insert_row_28_regular = \"\\uec2c\";\n    public const string Ic_fluent_table_lightning_16_regular = \"\\uec2d\";\n    public const string Ic_fluent_table_lightning_20_regular = \"\\uec2e\";\n    public const string Ic_fluent_table_lightning_24_regular = \"\\uec2f\";\n    public const string Ic_fluent_table_lightning_28_regular = \"\\uec30\";\n    public const string Ic_fluent_table_link_16_regular = \"\\uec31\";\n    public const string Ic_fluent_table_link_20_regular = \"\\uec32\";\n    public const string Ic_fluent_table_link_24_regular = \"\\uec33\";\n    public const string Ic_fluent_table_link_28_regular = \"\\uec34\";\n    public const string Ic_fluent_table_move_above_16_regular = \"\\uec35\";\n    public const string Ic_fluent_table_move_above_20_regular = \"\\uec36\";\n    public const string Ic_fluent_table_move_above_24_regular = \"\\uec37\";\n    public const string Ic_fluent_table_move_above_28_regular = \"\\uec38\";\n    public const string Ic_fluent_table_move_below_16_regular = \"\\uec39\";\n    public const string Ic_fluent_table_move_below_20_regular = \"\\uec3a\";\n    public const string Ic_fluent_table_move_below_24_regular = \"\\uec3b\";\n    public const string Ic_fluent_table_move_below_28_regular = \"\\uec3c\";\n    public const string Ic_fluent_table_move_left_16_regular = \"\\uec3d\";\n    public const string Ic_fluent_table_move_left_20_regular = \"\\uec3e\";\n    public const string Ic_fluent_table_move_left_24_regular = \"\\uf771\";\n    public const string Ic_fluent_table_move_left_28_regular = \"\\uec3f\";\n    public const string Ic_fluent_table_move_right_16_regular = \"\\uec40\";\n    public const string Ic_fluent_table_move_right_20_regular = \"\\uec41\";\n    public const string Ic_fluent_table_move_right_24_regular = \"\\uf772\";\n    public const string Ic_fluent_table_move_right_28_regular = \"\\uec42\";\n    public const string Ic_fluent_table_multiple_20_regular = \"\\uec43\";\n    public const string Ic_fluent_table_resize_column_16_regular = \"\\uec44\";\n    public const string Ic_fluent_table_resize_column_20_regular = \"\\uec45\";\n    public const string Ic_fluent_table_resize_column_24_regular = \"\\uec46\";\n    public const string Ic_fluent_table_resize_column_28_regular = \"\\uec47\";\n    public const string Ic_fluent_table_resize_row_16_regular = \"\\uec48\";\n    public const string Ic_fluent_table_resize_row_20_regular = \"\\uec49\";\n    public const string Ic_fluent_table_resize_row_24_regular = \"\\uec4a\";\n    public const string Ic_fluent_table_resize_row_28_regular = \"\\uec4b\";\n    public const string Ic_fluent_table_search_20_regular = \"\\uec4c\";\n    public const string Ic_fluent_table_settings_16_regular = \"\\uec4d\";\n    public const string Ic_fluent_table_settings_20_regular = \"\\uec4e\";\n    public const string Ic_fluent_table_settings_24_regular = \"\\uf777\";\n    public const string Ic_fluent_table_settings_28_regular = \"\\uec4f\";\n    public const string Ic_fluent_table_simple_16_regular = \"\\uec50\";\n    public const string Ic_fluent_table_simple_20_regular = \"\\uec51\";\n    public const string Ic_fluent_table_simple_24_regular = \"\\uec52\";\n    public const string Ic_fluent_table_simple_28_regular = \"\\uec53\";\n    public const string Ic_fluent_table_simple_48_regular = \"\\uec54\";\n    public const string Ic_fluent_table_split_20_regular = \"\\uec55\";\n    public const string Ic_fluent_table_stack_above_16_regular = \"\\uec56\";\n    public const string Ic_fluent_table_stack_above_20_regular = \"\\uec57\";\n    public const string Ic_fluent_table_stack_above_24_regular = \"\\uec58\";\n    public const string Ic_fluent_table_stack_above_28_regular = \"\\uec59\";\n    public const string Ic_fluent_table_stack_below_16_regular = \"\\uec5a\";\n    public const string Ic_fluent_table_stack_below_20_regular = \"\\uec5b\";\n    public const string Ic_fluent_table_stack_below_24_regular = \"\\uec5c\";\n    public const string Ic_fluent_table_stack_below_28_regular = \"\\uec5d\";\n    public const string Ic_fluent_table_stack_left_16_regular = \"\\uec5e\";\n    public const string Ic_fluent_table_stack_left_20_regular = \"\\uec5f\";\n    public const string Ic_fluent_table_stack_left_24_regular = \"\\uec60\";\n    public const string Ic_fluent_table_stack_left_28_regular = \"\\uec61\";\n    public const string Ic_fluent_table_stack_right_16_regular = \"\\uec62\";\n    public const string Ic_fluent_table_stack_right_20_regular = \"\\uec63\";\n    public const string Ic_fluent_table_stack_right_24_regular = \"\\uec64\";\n    public const string Ic_fluent_table_stack_right_28_regular = \"\\uec65\";\n    public const string Ic_fluent_table_switch_16_regular = \"\\uec66\";\n    public const string Ic_fluent_table_switch_20_regular = \"\\uec67\";\n    public const string Ic_fluent_table_switch_24_regular = \"\\uf778\";\n    public const string Ic_fluent_table_switch_28_regular = \"\\uec68\";\n    public const string Ic_fluent_tablet_12_regular = \"\\uec69\";\n    public const string Ic_fluent_tablet_16_regular = \"\\uec6a\";\n    public const string Ic_fluent_tablet_20_regular = \"\\uf779\";\n    public const string Ic_fluent_tablet_24_regular = \"\\uf77a\";\n    public const string Ic_fluent_tablet_32_regular = \"\\uec6b\";\n    public const string Ic_fluent_tablet_48_regular = \"\\uec6c\";\n    public const string Ic_fluent_tablet_speaker_20_regular = \"\\uec6d\";\n    public const string Ic_fluent_tablet_speaker_24_regular = \"\\uec6e\";\n    public const string Ic_fluent_tabs_20_regular = \"\\uec6f\";\n    public const string Ic_fluent_tabs_24_regular = \"\\uf77b\";\n    public const string Ic_fluent_tag_16_regular = \"\\uec70\";\n    public const string Ic_fluent_tag_20_regular = \"\\uf77c\";\n    public const string Ic_fluent_tag_24_regular = \"\\uf77d\";\n    public const string Ic_fluent_tag_28_regular = \"\\uec71\";\n    public const string Ic_fluent_tag_32_regular = \"\\uec72\";\n    public const string Ic_fluent_tag_circle_20_regular = \"\\uec73\";\n    public const string Ic_fluent_tag_dismiss_16_regular = \"\\uec74\";\n    public const string Ic_fluent_tag_dismiss_20_regular = \"\\uec75\";\n    public const string Ic_fluent_tag_dismiss_24_regular = \"\\uec76\";\n    public const string Ic_fluent_tag_error_16_regular = \"\\uec77\";\n    public const string Ic_fluent_tag_error_20_regular = \"\\uec78\";\n    public const string Ic_fluent_tag_error_24_regular = \"\\uec79\";\n    public const string Ic_fluent_tag_lock_16_regular = \"\\uec7a\";\n    public const string Ic_fluent_tag_lock_20_regular = \"\\uec7b\";\n    public const string Ic_fluent_tag_lock_24_regular = \"\\uec7c\";\n    public const string Ic_fluent_tag_lock_32_regular = \"\\uec7d\";\n    public const string Ic_fluent_tag_multiple_16_regular = \"\\uf7b6\";\n    public const string Ic_fluent_tag_multiple_20_regular = \"\\uec7e\";\n    public const string Ic_fluent_tag_multiple_24_regular = \"\\uec7f\";\n    public const string Ic_fluent_tag_off_20_regular = \"\\uec80\";\n    public const string Ic_fluent_tag_off_24_regular = \"\\uec81\";\n    public const string Ic_fluent_tag_question_mark_16_regular = \"\\uec82\";\n    public const string Ic_fluent_tag_question_mark_20_regular = \"\\uec83\";\n    public const string Ic_fluent_tag_question_mark_24_regular = \"\\uec84\";\n    public const string Ic_fluent_tag_question_mark_32_regular = \"\\uec85\";\n    public const string Ic_fluent_tag_reset_20_regular = \"\\uec86\";\n    public const string Ic_fluent_tag_reset_24_regular = \"\\uec87\";\n    public const string Ic_fluent_tag_search_20_regular = \"\\uec88\";\n    public const string Ic_fluent_tag_search_24_regular = \"\\uec89\";\n    public const string Ic_fluent_tap_double_20_regular = \"\\uec8a\";\n    public const string Ic_fluent_tap_double_24_regular = \"\\uf77e\";\n    public const string Ic_fluent_tap_double_32_regular = \"\\uec8b\";\n    public const string Ic_fluent_tap_double_48_regular = \"\\uec8c\";\n    public const string Ic_fluent_tap_single_20_regular = \"\\uec8d\";\n    public const string Ic_fluent_tap_single_24_regular = \"\\uf77f\";\n    public const string Ic_fluent_tap_single_32_regular = \"\\uec8e\";\n    public const string Ic_fluent_tap_single_48_regular = \"\\uec8f\";\n    public const string Ic_fluent_target_16_regular = \"\\uf780\";\n    public const string Ic_fluent_target_20_regular = \"\\uf781\";\n    public const string Ic_fluent_target_24_regular = \"\\uf782\";\n    public const string Ic_fluent_target_32_regular = \"\\uec90\";\n    public const string Ic_fluent_target_arrow_16_regular = \"\\uf7b7\";\n    public const string Ic_fluent_target_arrow_20_regular = \"\\uf7b8\";\n    public const string Ic_fluent_target_arrow_24_regular = \"\\uec91\";\n    public const string Ic_fluent_target_edit_16_regular = \"\\uf783\";\n    public const string Ic_fluent_target_edit_20_regular = \"\\uf784\";\n    public const string Ic_fluent_target_edit_24_regular = \"\\uf785\";\n    public const string Ic_fluent_task_list_add_20_regular = \"\\uf788\";\n    public const string Ic_fluent_task_list_add_24_regular = \"\\uf789\";\n    public const string Ic_fluent_task_list_ltr_20_regular = \"\\uec92\";\n    public const string Ic_fluent_task_list_ltr_24_regular = \"\\uec93\";\n    public const string Ic_fluent_task_list_rtl_20_regular = \"\\uec94\";\n    public const string Ic_fluent_task_list_rtl_24_regular = \"\\uec95\";\n    public const string Ic_fluent_task_list_square_add_20_regular = \"\\uec96\";\n    public const string Ic_fluent_task_list_square_add_24_regular = \"\\uec97\";\n    public const string Ic_fluent_task_list_square_database_20_regular = \"\\uec98\";\n    public const string Ic_fluent_task_list_square_ltr_20_regular = \"\\uec99\";\n    public const string Ic_fluent_task_list_square_ltr_24_regular = \"\\uec9a\";\n    public const string Ic_fluent_task_list_square_person_20_regular = \"\\uec9b\";\n    public const string Ic_fluent_task_list_square_rtl_20_regular = \"\\uec9c\";\n    public const string Ic_fluent_task_list_square_rtl_24_regular = \"\\uec9d\";\n    public const string Ic_fluent_task_list_square_settings_20_regular = \"\\uec9e\";\n    public const string Ic_fluent_tasks_app_20_regular = \"\\uec9f\";\n    public const string Ic_fluent_tasks_app_24_regular = \"\\uf78a\";\n    public const string Ic_fluent_tasks_app_28_regular = \"\\uf78b\";\n    public const string Ic_fluent_teddy_20_regular = \"\\ueca0\";\n    public const string Ic_fluent_teddy_24_regular = \"\\uf78e\";\n    public const string Ic_fluent_temperature_16_regular = \"\\ueca1\";\n    public const string Ic_fluent_temperature_20_regular = \"\\uf78f\";\n    public const string Ic_fluent_temperature_24_regular = \"\\uf790\";\n    public const string Ic_fluent_tent_12_regular = \"\\ueca2\";\n    public const string Ic_fluent_tent_16_regular = \"\\ueca3\";\n    public const string Ic_fluent_tent_20_regular = \"\\ueca4\";\n    public const string Ic_fluent_tent_24_regular = \"\\uf791\";\n    public const string Ic_fluent_tent_28_regular = \"\\ueca5\";\n    public const string Ic_fluent_tent_48_regular = \"\\ueca6\";\n    public const string Ic_fluent_tetris_app_16_regular = \"\\ueca7\";\n    public const string Ic_fluent_tetris_app_20_regular = \"\\ueca8\";\n    public const string Ic_fluent_tetris_app_24_regular = \"\\ueca9\";\n    public const string Ic_fluent_tetris_app_28_regular = \"\\uecaa\";\n    public const string Ic_fluent_tetris_app_32_regular = \"\\uecab\";\n    public const string Ic_fluent_tetris_app_48_regular = \"\\uecac\";\n    public const string Ic_fluent_text_12_regular = \"\\uecad\";\n    public const string Ic_fluent_text_16_regular = \"\\uecae\";\n    public const string Ic_fluent_text_32_regular = \"\\uecaf\";\n    public const string Ic_fluent_text_add_20_regular = \"\\uecb0\";\n    public const string Ic_fluent_text_add_space_after_20_regular = \"\\uf795\";\n    public const string Ic_fluent_text_add_space_after_24_regular = \"\\uf796\";\n    public const string Ic_fluent_text_add_space_before_20_regular = \"\\uf797\";\n    public const string Ic_fluent_text_add_space_before_24_regular = \"\\uf798\";\n    public const string Ic_fluent_text_add_t_24_regular = \"\\uecb1\";\n    public const string Ic_fluent_text_align_center_16_regular = \"\\uecb2\";\n    public const string Ic_fluent_text_align_center_20_regular = \"\\uf799\";\n    public const string Ic_fluent_text_align_center_24_regular = \"\\uf79a\";\n    public const string Ic_fluent_text_align_center_rotate_270_16_regular = \"\\uecb3\";\n    public const string Ic_fluent_text_align_center_rotate_270_20_regular = \"\\uecb4\";\n    public const string Ic_fluent_text_align_center_rotate_270_24_regular = \"\\uecb5\";\n    public const string Ic_fluent_text_align_center_rotate_90_16_regular = \"\\uecb6\";\n    public const string Ic_fluent_text_align_center_rotate_90_20_regular = \"\\uecb7\";\n    public const string Ic_fluent_text_align_center_rotate_90_24_regular = \"\\uecb8\";\n    public const string Ic_fluent_text_align_distributed_20_regular = \"\\uf79b\";\n    public const string Ic_fluent_text_align_distributed_24_regular = \"\\uf79c\";\n    public const string Ic_fluent_text_align_distributed_evenly_20_regular = \"\\uecb9\";\n    public const string Ic_fluent_text_align_distributed_evenly_24_regular = \"\\uecba\";\n    public const string Ic_fluent_text_align_distributed_vertical_20_regular = \"\\uecbb\";\n    public const string Ic_fluent_text_align_distributed_vertical_24_regular = \"\\uecbc\";\n    public const string Ic_fluent_text_align_justify_24_regular = \"\\uf79e\";\n    public const string Ic_fluent_text_align_justify_low_20_regular = \"\\uecbd\";\n    public const string Ic_fluent_text_align_justify_low_24_regular = \"\\uecbe\";\n    public const string Ic_fluent_text_align_justify_rotate_270_20_regular = \"\\uecbf\";\n    public const string Ic_fluent_text_align_justify_rotate_270_24_regular = \"\\uecc0\";\n    public const string Ic_fluent_text_align_justify_rotate_90_20_regular = \"\\uecc1\";\n    public const string Ic_fluent_text_align_justify_rotate_90_24_regular = \"\\uecc2\";\n    public const string Ic_fluent_text_align_left_16_regular = \"\\uecc3\";\n    public const string Ic_fluent_text_align_left_20_regular = \"\\uf79f\";\n    public const string Ic_fluent_text_align_left_24_regular = \"\\uf7a0\";\n    public const string Ic_fluent_text_align_left_rotate_270_16_regular = \"\\uecc4\";\n    public const string Ic_fluent_text_align_left_rotate_270_20_regular = \"\\uecc5\";\n    public const string Ic_fluent_text_align_left_rotate_270_24_regular = \"\\uecc6\";\n    public const string Ic_fluent_text_align_left_rotate_90_16_regular = \"\\uecc7\";\n    public const string Ic_fluent_text_align_left_rotate_90_20_regular = \"\\uecc8\";\n    public const string Ic_fluent_text_align_left_rotate_90_24_regular = \"\\uecc9\";\n    public const string Ic_fluent_text_align_right_16_regular = \"\\uecca\";\n    public const string Ic_fluent_text_align_right_20_regular = \"\\uf7a1\";\n    public const string Ic_fluent_text_align_right_24_regular = \"\\uf7a2\";\n    public const string Ic_fluent_text_align_right_rotate_270_16_regular = \"\\ueccb\";\n    public const string Ic_fluent_text_align_right_rotate_270_20_regular = \"\\ueccc\";\n    public const string Ic_fluent_text_align_right_rotate_270_24_regular = \"\\ueccd\";\n    public const string Ic_fluent_text_align_right_rotate_90_16_regular = \"\\uecce\";\n    public const string Ic_fluent_text_align_right_rotate_90_20_regular = \"\\ueccf\";\n    public const string Ic_fluent_text_align_right_rotate_90_24_regular = \"\\uecd0\";\n    public const string Ic_fluent_text_asterisk_20_regular = \"\\uf7a3\";\n    public const string Ic_fluent_text_baseline_20_regular = \"\\uecd1\";\n    public const string Ic_fluent_text_bold_16_regular = \"\\uecd2\";\n    public const string Ic_fluent_text_bold_20_regular = \"\\uf7a4\";\n    public const string Ic_fluent_text_bold_24_regular = \"\\uf7a5\";\n    public const string Ic_fluent_text_box_settings_20_regular = \"\\uecd3\";\n    public const string Ic_fluent_text_box_settings_24_regular = \"\\uecd4\";\n    public const string Ic_fluent_text_bullet_list_add_20_regular = \"\\uecd5\";\n    public const string Ic_fluent_text_bullet_list_add_24_regular = \"\\uf7a8\";\n    public const string Ic_fluent_text_bullet_list_checkmark_20_regular = \"\\uecd6\";\n    public const string Ic_fluent_text_bullet_list_dismiss_20_regular = \"\\uecd7\";\n    public const string Ic_fluent_text_bullet_list_ltr_16_regular = \"\\uecd8\";\n    public const string Ic_fluent_text_bullet_list_ltr_20_regular = \"\\uecd9\";\n    public const string Ic_fluent_text_bullet_list_ltr_24_regular = \"\\uecda\";\n    public const string Ic_fluent_text_bullet_list_rotate_270_20_regular = \"\\uecdb\";\n    public const string Ic_fluent_text_bullet_list_rotate_270_24_regular = \"\\uecdc\";\n    public const string Ic_fluent_text_bullet_list_rotate_90_20_regular = \"\\uecdd\";\n    public const string Ic_fluent_text_bullet_list_rotate_90_24_regular = \"\\uecde\";\n    public const string Ic_fluent_text_bullet_list_rtl_16_regular = \"\\uecdf\";\n    public const string Ic_fluent_text_bullet_list_rtl_20_regular = \"\\uece0\";\n    public const string Ic_fluent_text_bullet_list_rtl_24_regular = \"\\uece1\";\n    public const string Ic_fluent_text_bullet_list_square_20_regular = \"\\uece2\";\n    public const string Ic_fluent_text_bullet_list_square_24_regular = \"\\uf7a9\";\n    public const string Ic_fluent_text_bullet_list_square_clock_20_regular = \"\\uece3\";\n    public const string Ic_fluent_text_bullet_list_square_edit_20_regular = \"\\uf7b9\";\n    public const string Ic_fluent_text_bullet_list_square_edit_24_regular = \"\\uf7ba\";\n    public const string Ic_fluent_text_bullet_list_square_person_20_regular = \"\\uece4\";\n    public const string Ic_fluent_text_bullet_list_square_search_20_regular = \"\\uece5\";\n    public const string Ic_fluent_text_bullet_list_square_settings_20_regular = \"\\uece6\";\n    public const string Ic_fluent_text_bullet_list_square_shield_20_regular = \"\\uece7\";\n    public const string Ic_fluent_text_bullet_list_square_toolbox_20_regular = \"\\uece8\";\n    public const string Ic_fluent_text_bullet_list_square_warning_16_regular = \"\\uf7aa\";\n    public const string Ic_fluent_text_bullet_list_square_warning_20_regular = \"\\uf7ab\";\n    public const string Ic_fluent_text_bullet_list_square_warning_24_regular = \"\\uf7ac\";\n    public const string Ic_fluent_text_bullet_list_tree_16_regular = \"\\uf7ad\";\n    public const string Ic_fluent_text_bullet_list_tree_20_regular = \"\\uf7ae\";\n    public const string Ic_fluent_text_bullet_list_tree_24_regular = \"\\uf7af\";\n    public const string Ic_fluent_text_case_lowercase_16_regular = \"\\uece9\";\n    public const string Ic_fluent_text_case_lowercase_20_regular = \"\\uecea\";\n    public const string Ic_fluent_text_case_lowercase_24_regular = \"\\ueceb\";\n    public const string Ic_fluent_text_case_title_16_regular = \"\\uecec\";\n    public const string Ic_fluent_text_case_title_20_regular = \"\\ueced\";\n    public const string Ic_fluent_text_case_title_24_regular = \"\\uecee\";\n    public const string Ic_fluent_text_case_uppercase_16_regular = \"\\uecef\";\n    public const string Ic_fluent_text_case_uppercase_20_regular = \"\\uecf0\";\n    public const string Ic_fluent_text_case_uppercase_24_regular = \"\\uecf1\";\n    public const string Ic_fluent_text_change_case_16_regular = \"\\uecf2\";\n    public const string Ic_fluent_text_change_case_20_regular = \"\\uf7b2\";\n    public const string Ic_fluent_text_change_case_24_regular = \"\\uf7b3\";\n    public const string Ic_fluent_text_clear_formatting_16_regular = \"\\uecf3\";\n    public const string Ic_fluent_text_clear_formatting_20_regular = \"\\uf7bc\";\n    public const string Ic_fluent_text_clear_formatting_24_regular = \"\\uf7bd\";\n    public const string Ic_fluent_text_collapse_20_regular = \"\\uecf4\";\n    public const string Ic_fluent_text_collapse_24_regular = \"\\uf7be\";\n    public const string Ic_fluent_text_color_16_regular = \"\\uecf5\";\n    public const string Ic_fluent_text_color_20_regular = \"\\uf7bf\";\n    public const string Ic_fluent_text_color_24_regular = \"\\uf7c0\";\n    public const string Ic_fluent_text_column_one_20_regular = \"\\uf7c1\";\n    public const string Ic_fluent_text_column_one_24_regular = \"\\uf7c2\";\n    public const string Ic_fluent_text_column_one_narrow_20_regular = \"\\uecf6\";\n    public const string Ic_fluent_text_column_one_narrow_24_regular = \"\\uecf7\";\n    public const string Ic_fluent_text_column_one_wide_20_regular = \"\\uecf8\";\n    public const string Ic_fluent_text_column_one_wide_24_regular = \"\\uecf9\";\n    public const string Ic_fluent_text_column_one_wide_lightning_20_regular = \"\\uecfa\";\n    public const string Ic_fluent_text_column_one_wide_lightning_24_regular = \"\\uecfb\";\n    public const string Ic_fluent_text_column_three_20_regular = \"\\uf7c3\";\n    public const string Ic_fluent_text_column_three_24_regular = \"\\uf7c4\";\n    public const string Ic_fluent_text_column_two_20_regular = \"\\uf7c5\";\n    public const string Ic_fluent_text_column_two_24_regular = \"\\uf7c6\";\n    public const string Ic_fluent_text_column_two_left_20_regular = \"\\uf7c7\";\n    public const string Ic_fluent_text_column_two_left_24_regular = \"\\uf7c8\";\n    public const string Ic_fluent_text_column_two_right_20_regular = \"\\uf7c9\";\n    public const string Ic_fluent_text_column_two_right_24_regular = \"\\uf7ca\";\n    public const string Ic_fluent_text_continuous_20_regular = \"\\uecfc\";\n    public const string Ic_fluent_text_continuous_24_regular = \"\\uecfd\";\n    public const string Ic_fluent_text_density_16_regular = \"\\uecfe\";\n    public const string Ic_fluent_text_density_20_regular = \"\\uecff\";\n    public const string Ic_fluent_text_density_24_regular = \"\\ued00\";\n    public const string Ic_fluent_text_density_28_regular = \"\\ued01\";\n    public const string Ic_fluent_text_description_20_regular = \"\\uf7cb\";\n    public const string Ic_fluent_text_description_24_regular = \"\\uf7cc\";\n    public const string Ic_fluent_text_direction_horizontal_left_20_regular = \"\\ued02\";\n    public const string Ic_fluent_text_direction_horizontal_left_24_regular = \"\\ued03\";\n    public const string Ic_fluent_text_direction_horizontal_right_20_regular = \"\\ued04\";\n    public const string Ic_fluent_text_direction_horizontal_right_24_regular = \"\\ued05\";\n    public const string Ic_fluent_text_direction_rotate_270_right_20_regular = \"\\ued06\";\n    public const string Ic_fluent_text_direction_rotate_270_right_24_regular = \"\\ued07\";\n    public const string Ic_fluent_text_direction_rotate_90_left_20_regular = \"\\ued08\";\n    public const string Ic_fluent_text_direction_rotate_90_left_24_regular = \"\\ued09\";\n    public const string Ic_fluent_text_direction_rotate_90_right_20_regular = \"\\ued0a\";\n    public const string Ic_fluent_text_direction_rotate_90_right_24_regular = \"\\ued0b\";\n    public const string Ic_fluent_text_direction_vertical_20_regular = \"\\uf7d7\";\n    public const string Ic_fluent_text_direction_vertical_24_regular = \"\\uf7d8\";\n    public const string Ic_fluent_text_edit_style_20_regular = \"\\uf7d9\";\n    public const string Ic_fluent_text_edit_style_24_regular = \"\\uf7da\";\n    public const string Ic_fluent_text_effects_20_regular = \"\\uf7db\";\n    public const string Ic_fluent_text_effects_24_regular = \"\\uf7dc\";\n    public const string Ic_fluent_text_expand_20_regular = \"\\ued0c\";\n    public const string Ic_fluent_text_expand_24_regular = \"\\uf7dd\";\n    public const string Ic_fluent_text_field_16_regular = \"\\uf7de\";\n    public const string Ic_fluent_text_field_20_regular = \"\\uf7df\";\n    public const string Ic_fluent_text_field_24_regular = \"\\uf7e0\";\n    public const string Ic_fluent_text_first_line_20_regular = \"\\uf7e1\";\n    public const string Ic_fluent_text_first_line_24_regular = \"\\uf7e2\";\n    public const string Ic_fluent_text_font_16_regular = \"\\uf7e3\";\n    public const string Ic_fluent_text_font_20_regular = \"\\uf7e4\";\n    public const string Ic_fluent_text_font_24_regular = \"\\uf7e5\";\n    public const string Ic_fluent_text_font_info_16_regular = \"\\ued0d\";\n    public const string Ic_fluent_text_font_info_20_regular = \"\\ued0e\";\n    public const string Ic_fluent_text_font_info_24_regular = \"\\ued0f\";\n    public const string Ic_fluent_text_font_size_16_regular = \"\\ued10\";\n    public const string Ic_fluent_text_font_size_20_regular = \"\\uf7e6\";\n    public const string Ic_fluent_text_font_size_24_regular = \"\\uf7e7\";\n    public const string Ic_fluent_text_footnote_20_regular = \"\\uf7e8\";\n    public const string Ic_fluent_text_footnote_24_regular = \"\\uf7e9\";\n    public const string Ic_fluent_text_grammar_arrow_left_20_regular = \"\\ued11\";\n    public const string Ic_fluent_text_grammar_arrow_left_24_regular = \"\\ued12\";\n    public const string Ic_fluent_text_grammar_arrow_right_20_regular = \"\\ued13\";\n    public const string Ic_fluent_text_grammar_arrow_right_24_regular = \"\\ued14\";\n    public const string Ic_fluent_text_grammar_checkmark_20_regular = \"\\ued15\";\n    public const string Ic_fluent_text_grammar_checkmark_24_regular = \"\\ued16\";\n    public const string Ic_fluent_text_grammar_dismiss_20_regular = \"\\ued17\";\n    public const string Ic_fluent_text_grammar_dismiss_24_regular = \"\\ued18\";\n    public const string Ic_fluent_text_grammar_error_20_regular = \"\\ued19\";\n    public const string Ic_fluent_text_grammar_settings_20_regular = \"\\ued1a\";\n    public const string Ic_fluent_text_grammar_settings_24_regular = \"\\ued1b\";\n    public const string Ic_fluent_text_grammar_wand_16_regular = \"\\ued1c\";\n    public const string Ic_fluent_text_grammar_wand_20_regular = \"\\ued1d\";\n    public const string Ic_fluent_text_grammar_wand_24_regular = \"\\ued1e\";\n    public const string Ic_fluent_text_hanging_20_regular = \"\\uf7ed\";\n    public const string Ic_fluent_text_hanging_24_regular = \"\\uf7ee\";\n    public const string Ic_fluent_text_header_1_20_regular = \"\\uf7ef\";\n    public const string Ic_fluent_text_header_1_24_regular = \"\\ued1f\";\n    public const string Ic_fluent_text_header_2_20_regular = \"\\uf7f0\";\n    public const string Ic_fluent_text_header_2_24_regular = \"\\ued20\";\n    public const string Ic_fluent_text_header_3_20_regular = \"\\uf7f1\";\n    public const string Ic_fluent_text_header_3_24_regular = \"\\ued21\";\n    public const string Ic_fluent_text_indent_decrease_ltr_16_regular = \"\\ued22\";\n    public const string Ic_fluent_text_indent_decrease_ltr_20_regular = \"\\ued23\";\n    public const string Ic_fluent_text_indent_decrease_ltr_24_regular = \"\\ued24\";\n    public const string Ic_fluent_text_indent_decrease_rotate_270_20_regular = \"\\ued25\";\n    public const string Ic_fluent_text_indent_decrease_rotate_270_24_regular = \"\\ued26\";\n    public const string Ic_fluent_text_indent_decrease_rotate_90_20_regular = \"\\ued27\";\n    public const string Ic_fluent_text_indent_decrease_rotate_90_24_regular = \"\\ued28\";\n    public const string Ic_fluent_text_indent_decrease_rtl_16_regular = \"\\ued29\";\n    public const string Ic_fluent_text_indent_decrease_rtl_20_regular = \"\\ued2a\";\n    public const string Ic_fluent_text_indent_decrease_rtl_24_regular = \"\\ued2b\";\n    public const string Ic_fluent_text_indent_increase_ltr_16_regular = \"\\ued2c\";\n    public const string Ic_fluent_text_indent_increase_ltr_20_regular = \"\\ued2d\";\n    public const string Ic_fluent_text_indent_increase_ltr_24_regular = \"\\ued2e\";\n    public const string Ic_fluent_text_indent_increase_rotate_270_20_regular = \"\\ued2f\";\n    public const string Ic_fluent_text_indent_increase_rotate_270_24_regular = \"\\ued30\";\n    public const string Ic_fluent_text_indent_increase_rotate_90_20_regular = \"\\ued31\";\n    public const string Ic_fluent_text_indent_increase_rotate_90_24_regular = \"\\ued32\";\n    public const string Ic_fluent_text_indent_increase_rtl_16_regular = \"\\ued33\";\n    public const string Ic_fluent_text_indent_increase_rtl_20_regular = \"\\ued34\";\n    public const string Ic_fluent_text_indent_increase_rtl_24_regular = \"\\ued35\";\n    public const string Ic_fluent_text_italic_16_regular = \"\\ued36\";\n    public const string Ic_fluent_text_italic_20_regular = \"\\uf7f4\";\n    public const string Ic_fluent_text_italic_24_regular = \"\\uf7f5\";\n    public const string Ic_fluent_text_line_spacing_20_regular = \"\\uf7f6\";\n    public const string Ic_fluent_text_line_spacing_24_regular = \"\\uf7f7\";\n    public const string Ic_fluent_text_more_20_regular = \"\\ued37\";\n    public const string Ic_fluent_text_more_24_regular = \"\\ued38\";\n    public const string Ic_fluent_text_number_format_20_regular = \"\\ued39\";\n    public const string Ic_fluent_text_number_format_24_regular = \"\\uf7f8\";\n    public const string Ic_fluent_text_number_list_ltr_16_regular = \"\\ued3a\";\n    public const string Ic_fluent_text_number_list_ltr_20_regular = \"\\uf7f9\";\n    public const string Ic_fluent_text_number_list_ltr_24_regular = \"\\uf7fa\";\n    public const string Ic_fluent_text_number_list_rotate_270_20_regular = \"\\ued3b\";\n    public const string Ic_fluent_text_number_list_rotate_270_24_regular = \"\\ued3c\";\n    public const string Ic_fluent_text_number_list_rotate_90_20_regular = \"\\ued3d\";\n    public const string Ic_fluent_text_number_list_rotate_90_24_regular = \"\\ued3e\";\n    public const string Ic_fluent_text_number_list_rtl_16_regular = \"\\ued3f\";\n    public const string Ic_fluent_text_number_list_rtl_20_regular = \"\\ued40\";\n    public const string Ic_fluent_text_number_list_rtl_24_regular = \"\\uf7fb\";\n    public const string Ic_fluent_text_paragraph_16_regular = \"\\ued41\";\n    public const string Ic_fluent_text_paragraph_20_regular = \"\\ued42\";\n    public const string Ic_fluent_text_paragraph_24_regular = \"\\ued43\";\n    public const string Ic_fluent_text_paragraph_direction_20_regular = \"\\ued44\";\n    public const string Ic_fluent_text_paragraph_direction_24_regular = \"\\ued45\";\n    public const string Ic_fluent_text_paragraph_direction_left_16_regular = \"\\ued46\";\n    public const string Ic_fluent_text_paragraph_direction_left_20_regular = \"\\ued47\";\n    public const string Ic_fluent_text_paragraph_direction_right_16_regular = \"\\ued48\";\n    public const string Ic_fluent_text_paragraph_direction_right_20_regular = \"\\ued49\";\n    public const string Ic_fluent_text_period_asterisk_20_regular = \"\\ued4a\";\n    public const string Ic_fluent_text_position_behind_20_regular = \"\\ued4b\";\n    public const string Ic_fluent_text_position_behind_24_regular = \"\\ued4c\";\n    public const string Ic_fluent_text_position_front_20_regular = \"\\ued4d\";\n    public const string Ic_fluent_text_position_front_24_regular = \"\\ued4e\";\n    public const string Ic_fluent_text_position_line_20_regular = \"\\ued4f\";\n    public const string Ic_fluent_text_position_line_24_regular = \"\\ued50\";\n    public const string Ic_fluent_text_position_square_20_regular = \"\\ued51\";\n    public const string Ic_fluent_text_position_square_24_regular = \"\\ued52\";\n    public const string Ic_fluent_text_position_through_20_regular = \"\\ued53\";\n    public const string Ic_fluent_text_position_through_24_regular = \"\\ued54\";\n    public const string Ic_fluent_text_position_tight_20_regular = \"\\ued55\";\n    public const string Ic_fluent_text_position_tight_24_regular = \"\\ued56\";\n    public const string Ic_fluent_text_position_top_bottom_20_regular = \"\\ued57\";\n    public const string Ic_fluent_text_position_top_bottom_24_regular = \"\\ued58\";\n    public const string Ic_fluent_text_proofing_tools_20_regular = \"\\uf7fe\";\n    public const string Ic_fluent_text_proofing_tools_24_regular = \"\\uf7ff\";\n    public const string Ic_fluent_text_quote_16_regular = \"\\ued59\";\n    public const string Ic_fluent_text_quote_20_regular = \"\\uf800\";\n    public const string Ic_fluent_text_quote_24_regular = \"\\uf801\";\n    public const string Ic_fluent_text_sort_ascending_16_regular = \"\\ued5a\";\n    public const string Ic_fluent_text_sort_ascending_20_regular = \"\\uf802\";\n    public const string Ic_fluent_text_sort_ascending_24_regular = \"\\ued5b\";\n    public const string Ic_fluent_text_sort_descending_16_regular = \"\\ued5c\";\n    public const string Ic_fluent_text_sort_descending_20_regular = \"\\uf803\";\n    public const string Ic_fluent_text_sort_descending_24_regular = \"\\ued5d\";\n    public const string Ic_fluent_text_strikethrough_16_regular = \"\\ued5e\";\n    public const string Ic_fluent_text_strikethrough_20_regular = \"\\ued5f\";\n    public const string Ic_fluent_text_strikethrough_24_regular = \"\\ued60\";\n    public const string Ic_fluent_text_subscript_16_regular = \"\\ued61\";\n    public const string Ic_fluent_text_subscript_20_regular = \"\\uf806\";\n    public const string Ic_fluent_text_subscript_24_regular = \"\\uf807\";\n    public const string Ic_fluent_text_superscript_16_regular = \"\\ued62\";\n    public const string Ic_fluent_text_superscript_20_regular = \"\\uf808\";\n    public const string Ic_fluent_text_superscript_24_regular = \"\\uf809\";\n    public const string Ic_fluent_text_t_20_regular = \"\\ued63\";\n    public const string Ic_fluent_text_t_24_regular = \"\\ued64\";\n    public const string Ic_fluent_text_t_28_regular = \"\\ued65\";\n    public const string Ic_fluent_text_t_48_regular = \"\\ued66\";\n    public const string Ic_fluent_text_underline_16_regular = \"\\ued67\";\n    public const string Ic_fluent_text_underline_20_regular = \"\\uf80a\";\n    public const string Ic_fluent_text_underline_24_regular = \"\\uf80b\";\n    public const string Ic_fluent_text_whole_word_20_regular = \"\\ued68\";\n    public const string Ic_fluent_text_word_count_20_regular = \"\\uf80c\";\n    public const string Ic_fluent_text_word_count_24_regular = \"\\uf80d\";\n    public const string Ic_fluent_text_wrap_20_regular = \"\\ued69\";\n    public const string Ic_fluent_text_wrap_24_regular = \"\\uf80e\";\n    public const string Ic_fluent_textbox_16_regular = \"\\ued6a\";\n    public const string Ic_fluent_textbox_20_regular = \"\\uf80f\";\n    public const string Ic_fluent_textbox_24_regular = \"\\uf810\";\n    public const string Ic_fluent_textbox_align_bottom_20_regular = \"\\uf813\";\n    public const string Ic_fluent_textbox_align_bottom_24_regular = \"\\uf814\";\n    public const string Ic_fluent_textbox_align_bottom_rotate_90_20_regular = \"\\ued6b\";\n    public const string Ic_fluent_textbox_align_bottom_rotate_90_24_regular = \"\\ued6c\";\n    public const string Ic_fluent_textbox_align_center_20_regular = \"\\ued6d\";\n    public const string Ic_fluent_textbox_align_center_24_regular = \"\\ued6e\";\n    public const string Ic_fluent_textbox_align_middle_20_regular = \"\\uf815\";\n    public const string Ic_fluent_textbox_align_middle_24_regular = \"\\uf816\";\n    public const string Ic_fluent_textbox_align_middle_rotate_90_20_regular = \"\\ued6f\";\n    public const string Ic_fluent_textbox_align_middle_rotate_90_24_regular = \"\\ued70\";\n    public const string Ic_fluent_textbox_align_top_20_regular = \"\\uf817\";\n    public const string Ic_fluent_textbox_align_top_24_regular = \"\\uf818\";\n    public const string Ic_fluent_textbox_align_top_rotate_90_20_regular = \"\\ued71\";\n    public const string Ic_fluent_textbox_align_top_rotate_90_24_regular = \"\\ued72\";\n    public const string Ic_fluent_textbox_more_20_regular = \"\\ued73\";\n    public const string Ic_fluent_textbox_more_24_regular = \"\\ued74\";\n    public const string Ic_fluent_textbox_rotate_90_20_regular = \"\\ued75\";\n    public const string Ic_fluent_textbox_rotate_90_24_regular = \"\\ued76\";\n    public const string Ic_fluent_thinking_20_regular = \"\\uf81b\";\n    public const string Ic_fluent_thinking_24_regular = \"\\uf81c\";\n    public const string Ic_fluent_thumb_dislike_16_regular = \"\\ued77\";\n    public const string Ic_fluent_thumb_dislike_20_regular = \"\\uf81d\";\n    public const string Ic_fluent_thumb_dislike_24_regular = \"\\uf81e\";\n    public const string Ic_fluent_thumb_like_16_regular = \"\\ued78\";\n    public const string Ic_fluent_thumb_like_20_regular = \"\\uf81f\";\n    public const string Ic_fluent_thumb_like_24_regular = \"\\uf820\";\n    public const string Ic_fluent_thumb_like_28_regular = \"\\ued79\";\n    public const string Ic_fluent_thumb_like_48_regular = \"\\ued7a\";\n    public const string Ic_fluent_ticket_diagonal_16_regular = \"\\ued7b\";\n    public const string Ic_fluent_ticket_diagonal_20_regular = \"\\ued7c\";\n    public const string Ic_fluent_ticket_diagonal_24_regular = \"\\ued7d\";\n    public const string Ic_fluent_ticket_diagonal_28_regular = \"\\ued7e\";\n    public const string Ic_fluent_ticket_horizontal_20_regular = \"\\ued7f\";\n    public const string Ic_fluent_ticket_horizontal_24_regular = \"\\ued80\";\n    public const string Ic_fluent_time_and_weather_20_regular = \"\\ued81\";\n    public const string Ic_fluent_time_and_weather_24_regular = \"\\uf823\";\n    public const string Ic_fluent_time_picker_20_regular = \"\\ued82\";\n    public const string Ic_fluent_time_picker_24_regular = \"\\uf824\";\n    public const string Ic_fluent_timeline_20_regular = \"\\ued83\";\n    public const string Ic_fluent_timeline_24_regular = \"\\uf825\";\n    public const string Ic_fluent_timer_10_20_regular = \"\\ued84\";\n    public const string Ic_fluent_timer_10_24_regular = \"\\uf826\";\n    public const string Ic_fluent_timer_12_regular = \"\\ued85\";\n    public const string Ic_fluent_timer_16_regular = \"\\ued86\";\n    public const string Ic_fluent_timer_2_20_regular = \"\\ued87\";\n    public const string Ic_fluent_timer_2_24_regular = \"\\uf828\";\n    public const string Ic_fluent_timer_20_regular = \"\\ued88\";\n    public const string Ic_fluent_timer_24_regular = \"\\uf827\";\n    public const string Ic_fluent_timer_28_regular = \"\\ued89\";\n    public const string Ic_fluent_timer_3_20_regular = \"\\ued8a\";\n    public const string Ic_fluent_timer_3_24_regular = \"\\ued8b\";\n    public const string Ic_fluent_timer_32_regular = \"\\ued8c\";\n    public const string Ic_fluent_timer_48_regular = \"\\ued8d\";\n    public const string Ic_fluent_timer_off_20_regular = \"\\ued8e\";\n    public const string Ic_fluent_timer_off_24_regular = \"\\uf829\";\n    public const string Ic_fluent_toggle_left_16_regular = \"\\ued8f\";\n    public const string Ic_fluent_toggle_left_20_regular = \"\\ued90\";\n    public const string Ic_fluent_toggle_left_24_regular = \"\\ued91\";\n    public const string Ic_fluent_toggle_left_28_regular = \"\\ued92\";\n    public const string Ic_fluent_toggle_left_48_regular = \"\\ued93\";\n    public const string Ic_fluent_toggle_multiple_16_regular = \"\\ued94\";\n    public const string Ic_fluent_toggle_multiple_20_regular = \"\\ued95\";\n    public const string Ic_fluent_toggle_multiple_24_regular = \"\\ued96\";\n    public const string Ic_fluent_toggle_right_16_regular = \"\\uf82a\";\n    public const string Ic_fluent_toggle_right_20_regular = \"\\uf82b\";\n    public const string Ic_fluent_toggle_right_24_regular = \"\\uf82c\";\n    public const string Ic_fluent_toggle_right_28_regular = \"\\ued97\";\n    public const string Ic_fluent_toggle_right_48_regular = \"\\ued98\";\n    public const string Ic_fluent_toolbox_12_regular = \"\\ued99\";\n    public const string Ic_fluent_toolbox_16_regular = \"\\uf82d\";\n    public const string Ic_fluent_toolbox_20_regular = \"\\uf82e\";\n    public const string Ic_fluent_toolbox_24_regular = \"\\uf82f\";\n    public const string Ic_fluent_toolbox_28_regular = \"\\uf830\";\n    public const string Ic_fluent_tooltip_quote_20_regular = \"\\uf7bb\";\n    public const string Ic_fluent_tooltip_quote_24_regular = \"\\ued9a\";\n    public const string Ic_fluent_top_speed_20_regular = \"\\ued9b\";\n    public const string Ic_fluent_top_speed_24_regular = \"\\uf831\";\n    public const string Ic_fluent_translate_16_regular = \"\\uf832\";\n    public const string Ic_fluent_translate_20_regular = \"\\uf833\";\n    public const string Ic_fluent_translate_24_regular = \"\\uf834\";\n    public const string Ic_fluent_transmission_20_regular = \"\\ued9c\";\n    public const string Ic_fluent_transmission_24_regular = \"\\ued9d\";\n    public const string Ic_fluent_tray_item_add_20_regular = \"\\ued9e\";\n    public const string Ic_fluent_tray_item_add_24_regular = \"\\ued9f\";\n    public const string Ic_fluent_tray_item_remove_20_regular = \"\\ueda0\";\n    public const string Ic_fluent_tray_item_remove_24_regular = \"\\ueda1\";\n    public const string Ic_fluent_tree_deciduous_20_regular = \"\\ueda2\";\n    public const string Ic_fluent_tree_evergreen_20_regular = \"\\ueda3\";\n    public const string Ic_fluent_triangle_12_regular = \"\\ueda4\";\n    public const string Ic_fluent_triangle_16_regular = \"\\ueda5\";\n    public const string Ic_fluent_triangle_20_regular = \"\\ueda6\";\n    public const string Ic_fluent_triangle_32_regular = \"\\ueda7\";\n    public const string Ic_fluent_triangle_48_regular = \"\\ueda8\";\n    public const string Ic_fluent_triangle_down_12_regular = \"\\ueda9\";\n    public const string Ic_fluent_triangle_down_16_regular = \"\\uedaa\";\n    public const string Ic_fluent_triangle_down_20_regular = \"\\uedab\";\n    public const string Ic_fluent_triangle_down_32_regular = \"\\uedac\";\n    public const string Ic_fluent_triangle_down_48_regular = \"\\uedad\";\n    public const string Ic_fluent_triangle_left_12_regular = \"\\uedae\";\n    public const string Ic_fluent_triangle_left_16_regular = \"\\uedaf\";\n    public const string Ic_fluent_triangle_left_20_regular = \"\\uedb0\";\n    public const string Ic_fluent_triangle_left_32_regular = \"\\uedb1\";\n    public const string Ic_fluent_triangle_left_48_regular = \"\\uedb2\";\n    public const string Ic_fluent_triangle_right_12_regular = \"\\uedb3\";\n    public const string Ic_fluent_triangle_right_16_regular = \"\\uedb4\";\n    public const string Ic_fluent_triangle_right_20_regular = \"\\uedb5\";\n    public const string Ic_fluent_triangle_right_32_regular = \"\\uedb6\";\n    public const string Ic_fluent_triangle_right_48_regular = \"\\uedb7\";\n    public const string Ic_fluent_trophy_16_regular = \"\\uf835\";\n    public const string Ic_fluent_trophy_20_regular = \"\\uf836\";\n    public const string Ic_fluent_trophy_24_regular = \"\\uf837\";\n    public const string Ic_fluent_trophy_28_regular = \"\\uedb8\";\n    public const string Ic_fluent_trophy_32_regular = \"\\uedb9\";\n    public const string Ic_fluent_trophy_48_regular = \"\\uedba\";\n    public const string Ic_fluent_trophy_off_16_regular = \"\\uedbb\";\n    public const string Ic_fluent_trophy_off_20_regular = \"\\uedbc\";\n    public const string Ic_fluent_trophy_off_24_regular = \"\\uedbd\";\n    public const string Ic_fluent_trophy_off_28_regular = \"\\uedbe\";\n    public const string Ic_fluent_trophy_off_32_regular = \"\\uedbf\";\n    public const string Ic_fluent_trophy_off_48_regular = \"\\uedc0\";\n    public const string Ic_fluent_tv_16_regular = \"\\uedc1\";\n    public const string Ic_fluent_tv_20_regular = \"\\uedc2\";\n    public const string Ic_fluent_tv_24_regular = \"\\uedc3\";\n    public const string Ic_fluent_tv_28_regular = \"\\uedc4\";\n    public const string Ic_fluent_tv_48_regular = \"\\uedc5\";\n    public const string Ic_fluent_tv_arrow_right_20_regular = \"\\uedc6\";\n    public const string Ic_fluent_tv_usb_16_regular = \"\\uedc7\";\n    public const string Ic_fluent_tv_usb_20_regular = \"\\uedc8\";\n    public const string Ic_fluent_tv_usb_24_regular = \"\\uedc9\";\n    public const string Ic_fluent_tv_usb_28_regular = \"\\uedca\";\n    public const string Ic_fluent_tv_usb_48_regular = \"\\uedcb\";\n    public const string Ic_fluent_umbrella_20_regular = \"\\uedcc\";\n    public const string Ic_fluent_umbrella_24_regular = \"\\uedcd\";\n    public const string Ic_fluent_uninstall_app_20_regular = \"\\uedce\";\n    public const string Ic_fluent_uninstall_app_24_regular = \"\\uf838\";\n    public const string Ic_fluent_usb_plug_20_regular = \"\\uedcf\";\n    public const string Ic_fluent_usb_plug_24_regular = \"\\uedd0\";\n    public const string Ic_fluent_usb_stick_20_regular = \"\\uf83f\";\n    public const string Ic_fluent_usb_stick_24_regular = \"\\uf840\";\n    public const string Ic_fluent_vault_16_regular = \"\\uf841\";\n    public const string Ic_fluent_vault_20_regular = \"\\uf842\";\n    public const string Ic_fluent_vault_24_regular = \"\\uf843\";\n    public const string Ic_fluent_vehicle_bicycle_16_regular = \"\\uedd1\";\n    public const string Ic_fluent_vehicle_bicycle_20_regular = \"\\uedd2\";\n    public const string Ic_fluent_vehicle_bicycle_24_regular = \"\\uf844\";\n    public const string Ic_fluent_vehicle_bus_16_regular = \"\\uedd3\";\n    public const string Ic_fluent_vehicle_bus_20_regular = \"\\uedd4\";\n    public const string Ic_fluent_vehicle_bus_24_regular = \"\\uf845\";\n    public const string Ic_fluent_vehicle_cab_16_regular = \"\\uedd5\";\n    public const string Ic_fluent_vehicle_cab_20_regular = \"\\uedd6\";\n    public const string Ic_fluent_vehicle_cab_24_regular = \"\\uf846\";\n    public const string Ic_fluent_vehicle_cab_28_regular = \"\\uedd7\";\n    public const string Ic_fluent_vehicle_car_16_regular = \"\\uf847\";\n    public const string Ic_fluent_vehicle_car_20_regular = \"\\uf848\";\n    public const string Ic_fluent_vehicle_car_24_regular = \"\\uf849\";\n    public const string Ic_fluent_vehicle_car_28_regular = \"\\uedd8\";\n    public const string Ic_fluent_vehicle_car_48_regular = \"\\uedd9\";\n    public const string Ic_fluent_vehicle_car_collision_16_regular = \"\\uedda\";\n    public const string Ic_fluent_vehicle_car_collision_20_regular = \"\\ueddb\";\n    public const string Ic_fluent_vehicle_car_collision_24_regular = \"\\ueddc\";\n    public const string Ic_fluent_vehicle_car_collision_28_regular = \"\\ueddd\";\n    public const string Ic_fluent_vehicle_car_collision_32_regular = \"\\uedde\";\n    public const string Ic_fluent_vehicle_car_collision_48_regular = \"\\ueddf\";\n    public const string Ic_fluent_vehicle_car_profile_ltr_16_regular = \"\\uf7cd\";\n    public const string Ic_fluent_vehicle_car_profile_ltr_20_regular = \"\\uede0\";\n    public const string Ic_fluent_vehicle_car_profile_rtl_16_regular = \"\\uf7ce\";\n    public const string Ic_fluent_vehicle_car_profile_rtl_20_regular = \"\\uede1\";\n    public const string Ic_fluent_vehicle_ship_16_regular = \"\\uede2\";\n    public const string Ic_fluent_vehicle_ship_20_regular = \"\\uede3\";\n    public const string Ic_fluent_vehicle_ship_24_regular = \"\\uede4\";\n    public const string Ic_fluent_vehicle_subway_16_regular = \"\\uede5\";\n    public const string Ic_fluent_vehicle_subway_20_regular = \"\\uede6\";\n    public const string Ic_fluent_vehicle_subway_24_regular = \"\\uede7\";\n    public const string Ic_fluent_vehicle_truck_16_regular = \"\\uede8\";\n    public const string Ic_fluent_vehicle_truck_20_regular = \"\\uede9\";\n    public const string Ic_fluent_vehicle_truck_24_regular = \"\\uf84a\";\n    public const string Ic_fluent_vehicle_truck_bag_20_regular = \"\\uedea\";\n    public const string Ic_fluent_vehicle_truck_bag_24_regular = \"\\uedeb\";\n    public const string Ic_fluent_vehicle_truck_cube_20_regular = \"\\uedec\";\n    public const string Ic_fluent_vehicle_truck_cube_24_regular = \"\\ueded\";\n    public const string Ic_fluent_vehicle_truck_profile_16_regular = \"\\uf7ea\";\n    public const string Ic_fluent_vehicle_truck_profile_20_regular = \"\\uedee\";\n    public const string Ic_fluent_vehicle_truck_profile_24_regular = \"\\uedef\";\n    public const string Ic_fluent_video_16_regular = \"\\uf84b\";\n    public const string Ic_fluent_video_20_regular = \"\\uf84c\";\n    public const string Ic_fluent_video_24_regular = \"\\uf84d\";\n    public const string Ic_fluent_video_28_regular = \"\\uf84e\";\n    public const string Ic_fluent_video_32_regular = \"\\uedf0\";\n    public const string Ic_fluent_video_360_20_regular = \"\\uedf1\";\n    public const string Ic_fluent_video_360_24_regular = \"\\uedf2\";\n    public const string Ic_fluent_video_360_off_20_regular = \"\\uedf3\";\n    public const string Ic_fluent_video_48_regular = \"\\uedf4\";\n    public const string Ic_fluent_video_add_20_regular = \"\\uedf5\";\n    public const string Ic_fluent_video_add_24_regular = \"\\uedf6\";\n    public const string Ic_fluent_video_background_effect_20_regular = \"\\uedf7\";\n    public const string Ic_fluent_video_background_effect_24_regular = \"\\uf84f\";\n    public const string Ic_fluent_video_chat_16_regular = \"\\uedf8\";\n    public const string Ic_fluent_video_chat_20_regular = \"\\uedf9\";\n    public const string Ic_fluent_video_chat_24_regular = \"\\uedfa\";\n    public const string Ic_fluent_video_chat_28_regular = \"\\uedfb\";\n    public const string Ic_fluent_video_chat_32_regular = \"\\uedfc\";\n    public const string Ic_fluent_video_chat_48_regular = \"\\uedfd\";\n    public const string Ic_fluent_video_clip_16_regular = \"\\uedfe\";\n    public const string Ic_fluent_video_clip_20_regular = \"\\uedff\";\n    public const string Ic_fluent_video_clip_24_regular = \"\\uf850\";\n    public const string Ic_fluent_video_clip_multiple_16_regular = \"\\uee00\";\n    public const string Ic_fluent_video_clip_multiple_20_regular = \"\\uee01\";\n    public const string Ic_fluent_video_clip_multiple_24_regular = \"\\uee02\";\n    public const string Ic_fluent_video_clip_off_16_regular = \"\\uee03\";\n    public const string Ic_fluent_video_clip_off_20_regular = \"\\uee04\";\n    public const string Ic_fluent_video_clip_off_24_regular = \"\\uee05\";\n    public const string Ic_fluent_video_off_20_regular = \"\\uf851\";\n    public const string Ic_fluent_video_off_24_regular = \"\\uf852\";\n    public const string Ic_fluent_video_off_28_regular = \"\\uf853\";\n    public const string Ic_fluent_video_off_32_regular = \"\\uee06\";\n    public const string Ic_fluent_video_off_48_regular = \"\\uee07\";\n    public const string Ic_fluent_video_person_12_regular = \"\\uee08\";\n    public const string Ic_fluent_video_person_16_regular = \"\\uee09\";\n    public const string Ic_fluent_video_person_20_regular = \"\\uee0a\";\n    public const string Ic_fluent_video_person_24_regular = \"\\uf854\";\n    public const string Ic_fluent_video_person_28_regular = \"\\uee0b\";\n    public const string Ic_fluent_video_person_48_regular = \"\\uee0c\";\n    public const string Ic_fluent_video_person_call_16_regular = \"\\uee0d\";\n    public const string Ic_fluent_video_person_call_20_regular = \"\\uee0e\";\n    public const string Ic_fluent_video_person_call_24_regular = \"\\uee0f\";\n    public const string Ic_fluent_video_person_call_32_regular = \"\\uee10\";\n    public const string Ic_fluent_video_person_off_20_regular = \"\\uee11\";\n    public const string Ic_fluent_video_person_off_24_regular = \"\\uf855\";\n    public const string Ic_fluent_video_person_sparkle_16_regular = \"\\uee12\";\n    public const string Ic_fluent_video_person_sparkle_20_regular = \"\\uee13\";\n    public const string Ic_fluent_video_person_sparkle_24_regular = \"\\uee14\";\n    public const string Ic_fluent_video_person_sparkle_28_regular = \"\\uee15\";\n    public const string Ic_fluent_video_person_sparkle_48_regular = \"\\uee16\";\n    public const string Ic_fluent_video_person_star_20_regular = \"\\uee17\";\n    public const string Ic_fluent_video_person_star_24_regular = \"\\uf856\";\n    public const string Ic_fluent_video_person_star_off_20_regular = \"\\uee18\";\n    public const string Ic_fluent_video_person_star_off_24_regular = \"\\uee19\";\n    public const string Ic_fluent_video_play_pause_20_regular = \"\\uee1a\";\n    public const string Ic_fluent_video_play_pause_24_regular = \"\\uf857\";\n    public const string Ic_fluent_video_prohibited_16_regular = \"\\uee1b\";\n    public const string Ic_fluent_video_prohibited_20_regular = \"\\uee1c\";\n    public const string Ic_fluent_video_prohibited_24_regular = \"\\uee1d\";\n    public const string Ic_fluent_video_prohibited_28_regular = \"\\uee1e\";\n    public const string Ic_fluent_video_recording_20_regular = \"\\uee1f\";\n    public const string Ic_fluent_video_security_20_regular = \"\\uf858\";\n    public const string Ic_fluent_video_security_24_regular = \"\\uf859\";\n    public const string Ic_fluent_video_switch_20_regular = \"\\uee20\";\n    public const string Ic_fluent_video_switch_24_regular = \"\\uf85a\";\n    public const string Ic_fluent_video_sync_20_regular = \"\\uee21\";\n    public const string Ic_fluent_view_desktop_20_regular = \"\\uf85b\";\n    public const string Ic_fluent_view_desktop_24_regular = \"\\uf85c\";\n    public const string Ic_fluent_view_desktop_mobile_20_regular = \"\\uf85d\";\n    public const string Ic_fluent_view_desktop_mobile_24_regular = \"\\uf85e\";\n    public const string Ic_fluent_virtual_network_20_regular = \"\\uee22\";\n    public const string Ic_fluent_virtual_network_toolbox_20_regular = \"\\uee23\";\n    public const string Ic_fluent_voicemail_16_regular = \"\\uf862\";\n    public const string Ic_fluent_voicemail_20_regular = \"\\uf863\";\n    public const string Ic_fluent_voicemail_24_regular = \"\\uf864\";\n    public const string Ic_fluent_voicemail_28_regular = \"\\uee24\";\n    public const string Ic_fluent_voicemail_arrow_back_16_regular = \"\\uf7eb\";\n    public const string Ic_fluent_voicemail_arrow_back_20_regular = \"\\uee25\";\n    public const string Ic_fluent_voicemail_arrow_forward_16_regular = \"\\uf7ec\";\n    public const string Ic_fluent_voicemail_arrow_forward_20_regular = \"\\uee26\";\n    public const string Ic_fluent_voicemail_arrow_subtract_20_regular = \"\\uee27\";\n    public const string Ic_fluent_voicemail_subtract_16_regular = \"\\uf7fc\";\n    public const string Ic_fluent_vote_20_regular = \"\\uee28\";\n    public const string Ic_fluent_vote_24_regular = \"\\uee29\";\n    public const string Ic_fluent_walkie_talkie_20_regular = \"\\uee2a\";\n    public const string Ic_fluent_walkie_talkie_24_regular = \"\\uf865\";\n    public const string Ic_fluent_walkie_talkie_28_regular = \"\\uf866\";\n    public const string Ic_fluent_wallet_16_regular = \"\\uee2b\";\n    public const string Ic_fluent_wallet_20_regular = \"\\uee2c\";\n    public const string Ic_fluent_wallet_24_regular = \"\\uee2d\";\n    public const string Ic_fluent_wallet_28_regular = \"\\uee2e\";\n    public const string Ic_fluent_wallet_32_regular = \"\\uee2f\";\n    public const string Ic_fluent_wallet_48_regular = \"\\uee30\";\n    public const string Ic_fluent_wallet_credit_card_16_regular = \"\\uee31\";\n    public const string Ic_fluent_wallet_credit_card_20_regular = \"\\uee32\";\n    public const string Ic_fluent_wallet_credit_card_24_regular = \"\\uee33\";\n    public const string Ic_fluent_wallet_credit_card_32_regular = \"\\uee34\";\n    public const string Ic_fluent_wallpaper_20_regular = \"\\uee35\";\n    public const string Ic_fluent_wallpaper_24_regular = \"\\uf867\";\n    public const string Ic_fluent_wand_16_regular = \"\\uee36\";\n    public const string Ic_fluent_wand_20_regular = \"\\uee37\";\n    public const string Ic_fluent_wand_24_regular = \"\\uee38\";\n    public const string Ic_fluent_wand_28_regular = \"\\uee39\";\n    public const string Ic_fluent_wand_48_regular = \"\\uee3a\";\n    public const string Ic_fluent_warning_12_regular = \"\\uee3b\";\n    public const string Ic_fluent_warning_16_regular = \"\\uf868\";\n    public const string Ic_fluent_warning_20_regular = \"\\uf869\";\n    public const string Ic_fluent_warning_24_regular = \"\\uf86a\";\n    public const string Ic_fluent_warning_28_regular = \"\\uee3c\";\n    public const string Ic_fluent_warning_shield_20_regular = \"\\uee3d\";\n    public const string Ic_fluent_weather_blowing_snow_20_regular = \"\\uf86b\";\n    public const string Ic_fluent_weather_blowing_snow_24_regular = \"\\uf86c\";\n    public const string Ic_fluent_weather_blowing_snow_48_regular = \"\\uf86d\";\n    public const string Ic_fluent_weather_cloudy_20_regular = \"\\uf86e\";\n    public const string Ic_fluent_weather_cloudy_24_regular = \"\\uf86f\";\n    public const string Ic_fluent_weather_cloudy_48_regular = \"\\uf870\";\n    public const string Ic_fluent_weather_drizzle_20_regular = \"\\uee3e\";\n    public const string Ic_fluent_weather_drizzle_24_regular = \"\\uee3f\";\n    public const string Ic_fluent_weather_drizzle_48_regular = \"\\uee40\";\n    public const string Ic_fluent_weather_duststorm_20_regular = \"\\uf871\";\n    public const string Ic_fluent_weather_duststorm_24_regular = \"\\uf872\";\n    public const string Ic_fluent_weather_duststorm_48_regular = \"\\uf873\";\n    public const string Ic_fluent_weather_fog_20_regular = \"\\uf874\";\n    public const string Ic_fluent_weather_fog_24_regular = \"\\uf875\";\n    public const string Ic_fluent_weather_fog_48_regular = \"\\uf876\";\n    public const string Ic_fluent_weather_hail_day_20_regular = \"\\uf877\";\n    public const string Ic_fluent_weather_hail_day_24_regular = \"\\uf878\";\n    public const string Ic_fluent_weather_hail_day_48_regular = \"\\uf879\";\n    public const string Ic_fluent_weather_hail_night_20_regular = \"\\uf87a\";\n    public const string Ic_fluent_weather_hail_night_24_regular = \"\\uf87b\";\n    public const string Ic_fluent_weather_hail_night_48_regular = \"\\uf87c\";\n    public const string Ic_fluent_weather_haze_20_regular = \"\\uee41\";\n    public const string Ic_fluent_weather_haze_24_regular = \"\\uee42\";\n    public const string Ic_fluent_weather_haze_48_regular = \"\\uee43\";\n    public const string Ic_fluent_weather_moon_16_regular = \"\\uee44\";\n    public const string Ic_fluent_weather_moon_20_regular = \"\\uf87d\";\n    public const string Ic_fluent_weather_moon_24_regular = \"\\uf87e\";\n    public const string Ic_fluent_weather_moon_28_regular = \"\\uee45\";\n    public const string Ic_fluent_weather_moon_48_regular = \"\\uf87f\";\n    public const string Ic_fluent_weather_moon_off_16_regular = \"\\uee46\";\n    public const string Ic_fluent_weather_moon_off_20_regular = \"\\uee47\";\n    public const string Ic_fluent_weather_moon_off_24_regular = \"\\uee48\";\n    public const string Ic_fluent_weather_moon_off_28_regular = \"\\uee49\";\n    public const string Ic_fluent_weather_moon_off_48_regular = \"\\uee4a\";\n    public const string Ic_fluent_weather_partly_cloudy_day_16_regular = \"\\uee4b\";\n    public const string Ic_fluent_weather_partly_cloudy_day_20_regular = \"\\uf880\";\n    public const string Ic_fluent_weather_partly_cloudy_day_24_regular = \"\\uf881\";\n    public const string Ic_fluent_weather_partly_cloudy_day_48_regular = \"\\uf882\";\n    public const string Ic_fluent_weather_partly_cloudy_night_20_regular = \"\\uf883\";\n    public const string Ic_fluent_weather_partly_cloudy_night_24_regular = \"\\uf884\";\n    public const string Ic_fluent_weather_partly_cloudy_night_48_regular = \"\\uf885\";\n    public const string Ic_fluent_weather_rain_20_regular = \"\\uf886\";\n    public const string Ic_fluent_weather_rain_24_regular = \"\\uf887\";\n    public const string Ic_fluent_weather_rain_48_regular = \"\\uf888\";\n    public const string Ic_fluent_weather_rain_showers_day_20_regular = \"\\uf889\";\n    public const string Ic_fluent_weather_rain_showers_day_24_regular = \"\\uf88a\";\n    public const string Ic_fluent_weather_rain_showers_day_48_regular = \"\\uf88b\";\n    public const string Ic_fluent_weather_rain_showers_night_20_regular = \"\\uf88c\";\n    public const string Ic_fluent_weather_rain_showers_night_24_regular = \"\\uf88d\";\n    public const string Ic_fluent_weather_rain_showers_night_48_regular = \"\\uf88e\";\n    public const string Ic_fluent_weather_rain_snow_20_regular = \"\\uf88f\";\n    public const string Ic_fluent_weather_rain_snow_24_regular = \"\\uf890\";\n    public const string Ic_fluent_weather_rain_snow_48_regular = \"\\uf891\";\n    public const string Ic_fluent_weather_snow_20_regular = \"\\uf892\";\n    public const string Ic_fluent_weather_snow_24_regular = \"\\uf893\";\n    public const string Ic_fluent_weather_snow_48_regular = \"\\uf894\";\n    public const string Ic_fluent_weather_snow_shower_day_20_regular = \"\\uf895\";\n    public const string Ic_fluent_weather_snow_shower_day_24_regular = \"\\uf896\";\n    public const string Ic_fluent_weather_snow_shower_day_48_regular = \"\\uf897\";\n    public const string Ic_fluent_weather_snow_shower_night_20_regular = \"\\uf898\";\n    public const string Ic_fluent_weather_snow_shower_night_24_regular = \"\\uf899\";\n    public const string Ic_fluent_weather_snow_shower_night_48_regular = \"\\uf89a\";\n    public const string Ic_fluent_weather_snowflake_20_regular = \"\\uf89b\";\n    public const string Ic_fluent_weather_snowflake_24_regular = \"\\uf89c\";\n    public const string Ic_fluent_weather_snowflake_48_regular = \"\\uf89d\";\n    public const string Ic_fluent_weather_squalls_20_regular = \"\\uf89e\";\n    public const string Ic_fluent_weather_squalls_24_regular = \"\\uf89f\";\n    public const string Ic_fluent_weather_squalls_48_regular = \"\\uf8a0\";\n    public const string Ic_fluent_weather_sunny_16_regular = \"\\uee4c\";\n    public const string Ic_fluent_weather_sunny_28_regular = \"\\uee4d\";\n    public const string Ic_fluent_weather_sunny_32_regular = \"\\uee4e\";\n    public const string Ic_fluent_weather_sunny_48_regular = \"\\uf8a3\";\n    public const string Ic_fluent_weather_sunny_high_20_regular = \"\\uee4f\";\n    public const string Ic_fluent_weather_sunny_high_24_regular = \"\\uee50\";\n    public const string Ic_fluent_weather_sunny_high_48_regular = \"\\uee51\";\n    public const string Ic_fluent_weather_sunny_low_20_regular = \"\\uee52\";\n    public const string Ic_fluent_weather_sunny_low_24_regular = \"\\uee53\";\n    public const string Ic_fluent_weather_sunny_low_48_regular = \"\\uee54\";\n    public const string Ic_fluent_weather_thunderstorm_20_regular = \"\\uf8a4\";\n    public const string Ic_fluent_weather_thunderstorm_24_regular = \"\\uf8a5\";\n    public const string Ic_fluent_weather_thunderstorm_48_regular = \"\\uf8a6\";\n    public const string Ic_fluent_web_asset_20_regular = \"\\uee55\";\n    public const string Ic_fluent_web_asset_24_regular = \"\\uf8a7\";\n    public const string Ic_fluent_whiteboard_20_regular = \"\\uf8aa\";\n    public const string Ic_fluent_whiteboard_24_regular = \"\\uf8ab\";\n    public const string Ic_fluent_whiteboard_48_regular = \"\\uee56\";\n    public const string Ic_fluent_wifi_1_20_regular = \"\\uf8ac\";\n    public const string Ic_fluent_wifi_1_24_regular = \"\\uf8ad\";\n    public const string Ic_fluent_wifi_2_20_regular = \"\\uf8ae\";\n    public const string Ic_fluent_wifi_2_24_regular = \"\\uf8af\";\n    public const string Ic_fluent_wifi_3_20_regular = \"\\uf8b0\";\n    public const string Ic_fluent_wifi_3_24_regular = \"\\uf8b1\";\n    public const string Ic_fluent_wifi_4_20_regular = \"\\uf8b2\";\n    public const string Ic_fluent_wifi_4_24_regular = \"\\uf8b3\";\n    public const string Ic_fluent_wifi_lock_20_regular = \"\\uee57\";\n    public const string Ic_fluent_wifi_lock_24_regular = \"\\uee58\";\n    public const string Ic_fluent_wifi_off_20_regular = \"\\uee59\";\n    public const string Ic_fluent_wifi_off_24_regular = \"\\uee5a\";\n    public const string Ic_fluent_wifi_settings_20_regular = \"\\uee5b\";\n    public const string Ic_fluent_wifi_warning_20_regular = \"\\uee5c\";\n    public const string Ic_fluent_wifi_warning_24_regular = \"\\uf7fd\";\n    public const string Ic_fluent_window_16_regular = \"\\uee5d\";\n    public const string Ic_fluent_window_20_regular = \"\\uf8b5\";\n    public const string Ic_fluent_window_24_regular = \"\\uee5e\";\n    public const string Ic_fluent_window_28_regular = \"\\uee5f\";\n    public const string Ic_fluent_window_48_regular = \"\\uee61\";\n    public const string Ic_fluent_window_ad_20_regular = \"\\uf8b6\";\n    public const string Ic_fluent_window_ad_off_20_regular = \"\\uee62\";\n    public const string Ic_fluent_window_ad_person_20_regular = \"\\uee63\";\n    public const string Ic_fluent_window_apps_16_regular = \"\\uee64\";\n    public const string Ic_fluent_window_apps_20_regular = \"\\uee65\";\n    public const string Ic_fluent_window_apps_24_regular = \"\\uee66\";\n    public const string Ic_fluent_window_apps_28_regular = \"\\uee67\";\n    public const string Ic_fluent_window_apps_32_regular = \"\\uee68\";\n    public const string Ic_fluent_window_apps_48_regular = \"\\uee69\";\n    public const string Ic_fluent_window_arrow_up_16_regular = \"\\uee6a\";\n    public const string Ic_fluent_window_arrow_up_20_regular = \"\\uee6b\";\n    public const string Ic_fluent_window_arrow_up_24_regular = \"\\uee6c\";\n    public const string Ic_fluent_window_bullet_list_20_regular = \"\\uee6d\";\n    public const string Ic_fluent_window_bullet_list_add_20_regular = \"\\uee6e\";\n    public const string Ic_fluent_window_console_20_regular = \"\\uee6f\";\n    public const string Ic_fluent_window_database_20_regular = \"\\uee70\";\n    public const string Ic_fluent_window_dev_edit_16_regular = \"\\uee71\";\n    public const string Ic_fluent_window_dev_edit_20_regular = \"\\uee72\";\n    public const string Ic_fluent_window_dev_tools_16_regular = \"\\uf8b7\";\n    public const string Ic_fluent_window_dev_tools_20_regular = \"\\uf8b8\";\n    public const string Ic_fluent_window_dev_tools_24_regular = \"\\uf8b9\";\n    public const string Ic_fluent_window_edit_16_regular = \"\\uf804\";\n    public const string Ic_fluent_window_edit_20_regular = \"\\uee73\";\n    public const string Ic_fluent_window_header_horizontal_20_regular = \"\\uee74\";\n    public const string Ic_fluent_window_header_horizontal_off_20_regular = \"\\uee75\";\n    public const string Ic_fluent_window_header_vertical_20_regular = \"\\uee76\";\n    public const string Ic_fluent_window_inprivate_20_regular = \"\\uf8ba\";\n    public const string Ic_fluent_window_inprivate_account_20_regular = \"\\uf8bb\";\n    public const string Ic_fluent_window_location_target_20_regular = \"\\uee77\";\n    public const string Ic_fluent_window_multiple_16_regular = \"\\uee78\";\n    public const string Ic_fluent_window_multiple_20_regular = \"\\uf8bc\";\n    public const string Ic_fluent_window_multiple_swap_20_regular = \"\\uee79\";\n    public const string Ic_fluent_window_new_16_regular = \"\\uee7a\";\n    public const string Ic_fluent_window_new_20_regular = \"\\uf8bd\";\n    public const string Ic_fluent_window_new_24_regular = \"\\uee7b\";\n    public const string Ic_fluent_window_play_20_regular = \"\\uee7c\";\n    public const string Ic_fluent_window_settings_20_regular = \"\\uee7d\";\n    public const string Ic_fluent_window_shield_16_regular = \"\\uf8be\";\n    public const string Ic_fluent_window_shield_20_regular = \"\\uf8bf\";\n    public const string Ic_fluent_window_shield_24_regular = \"\\uf8c0\";\n    public const string Ic_fluent_window_text_20_regular = \"\\uee7e\";\n    public const string Ic_fluent_window_wrench_16_regular = \"\\uee7f\";\n    public const string Ic_fluent_window_wrench_20_regular = \"\\uee80\";\n    public const string Ic_fluent_window_wrench_24_regular = \"\\uee81\";\n    public const string Ic_fluent_window_wrench_28_regular = \"\\uee82\";\n    public const string Ic_fluent_window_wrench_32_regular = \"\\uee83\";\n    public const string Ic_fluent_window_wrench_48_regular = \"\\uee84\";\n    public const string Ic_fluent_wrench_16_regular = \"\\uee85\";\n    public const string Ic_fluent_wrench_20_regular = \"\\uee86\";\n    public const string Ic_fluent_wrench_24_regular = \"\\uf8c1\";\n    public const string Ic_fluent_wrench_screwdriver_20_regular = \"\\uee87\";\n    public const string Ic_fluent_wrench_screwdriver_24_regular = \"\\uee88\";\n    public const string Ic_fluent_xbox_console_20_regular = \"\\uf8c2\";\n    public const string Ic_fluent_xbox_console_24_regular = \"\\uf8c3\";\n    public const string Ic_fluent_xbox_controller_16_regular = \"\\ueeb7\";\n    public const string Ic_fluent_xbox_controller_20_regular = \"\\ueeb8\";\n    public const string Ic_fluent_xbox_controller_24_regular = \"\\ueeb9\";\n    public const string Ic_fluent_xbox_controller_28_regular = \"\\ueeba\";\n    public const string Ic_fluent_xbox_controller_32_regular = \"\\ueebb\";\n    public const string Ic_fluent_xbox_controller_48_regular = \"\\ueebc\";\n    public const string Ic_fluent_xray_20_regular = \"\\uee89\";\n    public const string Ic_fluent_xray_24_regular = \"\\uee8a\";\n    public const string Ic_fluent_zoom_fit_16_regular = \"\\uee8b\";\n    public const string Ic_fluent_zoom_fit_20_regular = \"\\uee8c\";\n    public const string Ic_fluent_zoom_fit_24_regular = \"\\uee8d\";\n    public const string Ic_fluent_zoom_in_16_regular = \"\\uee8e\";\n    public const string Ic_fluent_zoom_in_20_regular = \"\\uf8c4\";\n    public const string Ic_fluent_zoom_in_24_regular = \"\\uf8c5\";\n    public const string Ic_fluent_zoom_out_16_regular = \"\\uee8f\";\n    public const string Ic_fluent_zoom_out_20_regular = \"\\uf8c6\";\n    public const string Ic_fluent_zoom_out_24_regular = \"\\uf8c7\";\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/MAUIsland - Backup.Core.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk\">\n\n\t<PropertyGroup>\n\t\t<TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>\n\t\t<TargetFrameworks Condition=\"$([MSBuild]::IsOSPlatform('windows'))\">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks>\n\t\t<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->\n\t\t<!-- <TargetFrameworks>$(TargetFrameworks);net8.0-tizen</TargetFrameworks> -->\n\t\t<UseMaui>true</UseMaui>\n\t\t<SingleProject>true</SingleProject>\n\t\t<ImplicitUsings>enable</ImplicitUsings>\n\t\t<Nullable>enable</Nullable>\n\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'\">11.0</SupportedOSPlatformVersion>\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'\">13.1</SupportedOSPlatformVersion>\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'\">21.0</SupportedOSPlatformVersion>\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'\">10.0.17763.0</SupportedOSPlatformVersion>\n\t\t<TargetPlatformMinVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'\">10.0.17763.0</TargetPlatformMinVersion>\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'\">6.5</SupportedOSPlatformVersion>\n\t</PropertyGroup>\n\n\t<ItemGroup>\n\t\t<PackageReference Include=\"AcrylicView.Maui\" Version=\"2.1.3\" />\n\t\t<PackageReference Include=\"ColorCode.Core\" Version=\"2.0.15\" />\n\t\t<PackageReference Include=\"Material.Components.Maui\" Version=\"0.2.2-preview\" />\n\t\t<PackageReference Include=\"CommunityToolkit.Maui\" Version=\"7.0.1\" />\n\t\t<PackageReference Include=\"CommunityToolkit.Maui.Core\" Version=\"7.0.1\" />\n\t\t<PackageReference Include=\"CommunityToolkit.Mvvm\" Version=\"8.2.2\" />\n\t\t<PackageReference Include=\"CommunityToolkit.Maui.MediaElement\" Version=\"3.1.0\" />\n\t\t<PackageReference Include=\"Microsoft.Maui.Controls\" Version=\"8.0.10\" />\n\t\t<PackageReference Include=\"Microsoft.Maui.Controls.Compatibility\" Version=\"8.0.10\" />\n\t\t<PackageReference Include=\"SkiaSharp\" Version=\"2.88.7\" />\n\t\t<PackageReference Include=\"SkiaSharp.Extended.UI.Maui\" Version=\"2.0.0-preview.86\" />\n\t\t<PackageReference Include=\"SkiaSharp.Skottie\" Version=\"2.88.7\" />\n\t\t<PackageReference Include=\"SkiaSharp.Views.Maui.Controls\" Version=\"2.88.7\" />\n\t\t<PackageReference Include=\"SkiaSharp.Views.Maui.Controls.Compatibility\" Version=\"2.88.7\" />\n\t\t<PackageReference Include=\"SkiaSharp.Views.Maui.Core\" Version=\"2.88.7\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <ProjectReference Include=\"..\\..\\Features\\GitHubFeatures\\MAUIsland.GitHubFeatures\\MAUIsland.GitHubFeatures.csproj\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <Folder Include=\"Features\\Chat\\\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <MauiXaml Update=\"Views\\SourceCodeExpanderContent.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t</ItemGroup>\n\n</Project>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/MAUIsland.Core.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk\">\n\n\t<PropertyGroup>\n\t\t<TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks>\n\t\t<TargetFrameworks Condition=\"$([MSBuild]::IsOSPlatform('windows'))\">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks>\n\t\t<UseMaui>true</UseMaui>\n\t\t<SingleProject>true</SingleProject>\n\t\t<ImplicitUsings>enable</ImplicitUsings>\n\t\t<Nullable>enable</Nullable>\n\t\t<UseRidGraph>true</UseRidGraph>\n\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'\">15.0</SupportedOSPlatformVersion>\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'\">15.0</SupportedOSPlatformVersion>\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'\">21.0</SupportedOSPlatformVersion>\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'\">10.0.17763.0</SupportedOSPlatformVersion>\n\t\t<TargetPlatformMinVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'\">10.0.17763.0</TargetPlatformMinVersion>\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'\">6.5</SupportedOSPlatformVersion>\n\t</PropertyGroup>\n\n\t<ItemGroup>\n\t\t<PackageReference Include=\"akgul.Maui.DataGrid\" Version=\"4.0.5\" />\n\t\t<PackageReference Include=\"AcrylicView.Maui\" Version=\"2.1.3\" />\n\t\t<PackageReference Include=\"Bogus\" Version=\"35.6.1\" />\n\t\t<PackageReference Include=\"OverFlower\" Version=\"0.0.3\" />\n\t\t<PackageReference Include=\"ColorCode.Core\" Version=\"2.0.15\" />\n\t\t<PackageReference Include=\"DiscordRichPresence\" Version=\"1.2.1.24\" />\n\t\t<PackageReference Include=\"Material.Components.Maui\" Version=\"0.2.2-preview\" />\n\t\t<PackageReference Include=\"IconPacks.Material\" Version=\"1.0.8940.2-build\" />\n\t\t<PackageReference Include=\"CommunityToolkit.Maui\" Version=\"9.1.1\" />\n\t\t<PackageReference Include=\"CommunityToolkit.Maui.Core\" Version=\"9.1.1\" />\n\t\t<PackageReference Include=\"CommunityToolkit.Common\" Version=\"8.4.0-preview1\" />\n\t\t<PackageReference Include=\"CommunityToolkit.Diagnostics\" Version=\"8.4.0-preview1\" />\n\t\t<PackageReference Include=\"CommunityToolkit.Mvvm\" Version=\"8.3.2\" />\n\t\t<PackageReference Include=\"CommunityToolkit.Maui.MediaElement\" Version=\"4.1.2\" />\n\t\t<PackageReference Include=\"Microsoft.Maui.Controls\" Version=\"9.0.10\" />\n\t\t<PackageReference Include=\"Octokit\" Version=\"13.0.1\" />\n\t\t<PackageReference Include=\"LiveChartsCore.SkiaSharpView.Maui\" Version=\"2.0.0-rc4.5\" />\n\t\t<PackageReference Include=\"Plugin.Maui.OCR\" Version=\"1.0.15\" />\n\t\t<PackageReference Include=\"SkiaSharp\" Version=\"3.118.0-preview.1.2\" />\n\t\t<PackageReference Include=\"SkiaSharp.Extended.UI.Maui\" Version=\"3.0.0-preview.11\" />\n\t\t<PackageReference Include=\"SkiaSharp.Skottie\" Version=\"3.118.0-preview.1.2\" />\n\t\t<PackageReference Include=\"SkiaSharp.Views.Maui.Controls\" Version=\"3.118.0-preview.1.2\" />\n\t\t<PackageReference Include=\"SkiaSharp.Views.Maui.Controls.Compatibility\" Version=\"2.88.9\" />\n\t\t<PackageReference Include=\"SkiaSharp.Views.Maui.Core\" Version=\"3.118.0-preview.1.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.Backdrop\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.Barcode\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.Calendar\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.Charts\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.Core\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.DataForm\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.DataGrid\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.Gauges\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.Inputs\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.ListView\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.Maps\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.PdfViewer\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.ProgressBar\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.SignaturePad\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.Sliders\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.TabView\" Version=\"27.2.2\" />\n\t\t<PackageReference Include=\"Syncfusion.Maui.Toolkit\" Version=\"1.0.2\" />\n\t\t<PackageReference Include=\"ZXing.Net.Maui\" Version=\"0.4.0\" />\n\t\t<PackageReference Include=\"ZXing.Net.Maui.Controls\" Version=\"0.4.0\" />\n\t\t<PackageReference Include=\"sqlite-net-pcl\" Version=\"1.9.172\" />\n\t\t<PackageReference Include=\"Refit\" Version=\"8.0.0\" />\n\t\t<PackageReference Include=\"Refit.HttpClientFactory\" Version=\"8.0.0\" />\n\t\t<PackageReference Include=\"Refit.Newtonsoft.Json\" Version=\"8.0.0\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <ProjectReference Include=\"..\\..\\Features\\GitHubFeatures\\MAUIsland.GitHubFeatures\\MAUIsland.GitHubFeatures.csproj\" />\n\t  <ProjectReference Include=\"..\\..\\Features\\LocalDbFeatures\\GitHub\\MAUIsland.Features.LocalDbFeatures.GitHub\\MAUIsland.Features.LocalDbFeatures.GitHub.csproj\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\SearchBar\\ControlInfoListView.xaml.cs\">\n\t    <DependentUpon>%(Filename)</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\ControllInfoCollectionFourItemRowTemplateContentView.xaml.cs\">\n\t    <DependentUpon>%(Filename)</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\ControllInfoCollectionTemplateContentView.xaml.cs\">\n\t    <DependentUpon>%(Filename)</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\ControllInfoCollectionThreeItemRowTemplateContentView.xaml.cs\">\n\t    <DependentUpon>%(Filename)</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\ControllInfoCollectionTwoItemRowTemplateContentView.xaml.cs\">\n\t    <DependentUpon>%(Filename)</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\MrIncreadibleCollectionTemplateWithSwipeContentView.xaml.cs\">\n\t    <DependentUpon>%(Filename)</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\MrIncreadibleItemHorizontalTemplateContentView.xaml.cs\">\n\t    <DependentUpon>%(Filename)</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\MrIncreadibleItemTemplateContentView.xaml.cs\">\n\t    <DependentUpon>%(Filename)</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\MrIncreadibleItemVerticalSpan2TemplateContentView.xaml.cs\">\n\t    <DependentUpon>%(Filename)</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\MrIncreadibleItemVerticalTemplateContentView.xaml.cs\">\n\t    <DependentUpon>%(Filename)</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\NormalItemTemplateContentView.xaml.cs\">\n\t    <DependentUpon>%(Filename)</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\SelectedItemTemplateContentView.xaml.cs\">\n\t    <DependentUpon>%(Filename)</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Appearance\\SfCartesianChartAppearanceChart.xaml.cs\">\n\t    <DependentUpon>SfCartesianChartAppearanceChart.xaml</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Area\\SfCartesianChartArea.xaml.cs\">\n\t    <DependentUpon>SfCartesianChartArea.xaml</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Area\\SfCartesianChartStackingArea.xaml.cs\">\n\t    <DependentUpon>SfCartesianChartStackingArea.xaml</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Column\\Bar\\SfCartesianChartStackingBar.xaml.cs\">\n\t    <DependentUpon>SfCartesianChartStackingBar.xaml</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Trackball\\SfCartesianChartTrackball.xaml.cs\">\n\t    <DependentUpon>SfCartesianChartTrackball.xaml</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Views\\ContentViews\\DocumentAlert.xaml.cs\">\n\t    <DependentUpon>DocumentAlert.xaml</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Views\\ContentViews\\MockUps\\GooglePixel5ContentView.xaml.cs\">\n\t    <DependentUpon>GooglePixel5ContentView.xaml</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Views\\ContentViews\\MockUps\\GooglePixel6ProContentView.xaml.cs\">\n\t    <DependentUpon>GooglePixel6ProContentView.xaml</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Views\\ContentViews\\MockUps\\Iphone13MiniContentView.xaml.cs\">\n\t    <SubType>Code</SubType>\n\t    <DependentUpon>Iphone13MiniContentView.xaml</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Views\\ContentViews\\MockUps\\SamsungS8ContentView.xaml.cs\">\n\t    <SubType>Code</SubType>\n\t    <DependentUpon>SamsungS8ContentView.xaml</DependentUpon>\n\t  </Compile>\n\t  <Compile Update=\"Views\\ContentViews\\MockUps\\Iphone15ContentView.xaml.cs\">\n\t    <DependentUpon>Iphone15ContentView.xaml</DependentUpon>\n\t  </Compile>\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\SearchBar\\ControlInfoListView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\ControllInfoCollectionFourItemRowTemplateContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\ControllInfoCollectionTemplateContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\ControllInfoCollectionThreeItemRowTemplateContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\ControllInfoCollectionTwoItemRowTemplateContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\MrIncreadibleCollectionTemplateWithSwipeContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\MrIncreadibleItemHorizontalTemplateContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\MrIncreadibleItemTemplateContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\MrIncreadibleItemVerticalSpan2TemplateContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\MrIncreadibleItemVerticalTemplateContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\NormalItemTemplateContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CollectionView\\TemplateContentViews\\SelectedItemTemplateContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Annotation\\SfCartesianChartAnnotation.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Appearance\\SfCartesianChartAppearanceChart.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Appearance\\SfCartesianChartAppearanceSeries.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Appearance\\SfCartesianChartPlottingCustomization.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Axis\\SfCartesianChartCategoryAxis.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Axis\\SfCartesianChartDateTimeAxis.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Axis\\SfCartesianChartLogarithmicAxis.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Axis\\SfCartesianChartNumericalAxis.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Axis\\SfCartesianChartOtherAxis.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Area\\SfCartesianChartArea.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Area\\SfCartesianChartRangeArea.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Area\\SfCartesianChartSplineArea.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Area\\SfCartesianChartSplineRangeArea.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Area\\SfCartesianChartStackingArea.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Area\\SfCartesianChartStackingArea100.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Area\\SfCartesianChartStepArea.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\BoxPlot\\SfCartesianChartBoxAndWhisker.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Bubble\\SfCartesianChartBubble.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Financial\\SfCartesianChartCandle.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Column\\Bar\\SfCartesianChartBar.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Column\\Bar\\SfCartesianChartErrorBar.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Column\\Bar\\SfCartesianChartStackingBar.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Column\\Bar\\SfCartesianChartStackingBar100.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Column\\SfCartesianChartColumn.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Column\\Bar\\SfCartesianChartRangeBar.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Column\\SfCartesianChartRangeColumn.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Column\\SfCartesianChartStackingColumn.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Column\\SfCartesianChartStackingColumn100.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Financial\\SfCartesianChartOHLC.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Histogram\\SfCartesianChartHistogram.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Line\\SfCartesianChartFastLine.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Line\\SfCartesianChartLine.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Line\\SfCartesianChartSpline.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Line\\SfCartesianChartStackingLine.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Line\\SfCartesianChartStackingLine100.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Line\\SfCartesianChartStepLine.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Scatter\\SfCartesianChartScatter.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Chart\\Waterfall\\SfCartesianChartWaterfall.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\DataLabel\\SfCartesianChartDataLabel.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\DataLabel\\SfCartesianChartDataLabelContext.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\DataLabel\\SfCartesianChartDataLabelTemplate.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Legend\\SfCartesianChartLegend.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\PlotBand\\SfCartesianChartDateTimePlotBand.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\PlotBand\\SfCartesianChartNumericalPlotBand.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\PlotBand\\SfCartesianChartOtherPlotBand.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\PlotBand\\SfCartesianChartPlotBandPropertiesInfo.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Selection\\SfCartesianChartSelection.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Selection\\SfCartesianChartSeriesSelection.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Tooltip\\SfCartesianChartTooltip.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Trackball\\SfCartesianChartCustomTrackball.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Trackball\\SfCartesianChartTrackball.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Zooming\\SfCartesianChartSelectionZooming.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfCartesianChart\\ContentView\\Zooming\\SfCartesianChartZooming.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Views\\ContentViews\\DocumentAlert.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Views\\ContentViews\\MockUps\\AppleIphone15ProMaxContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Views\\ContentViews\\MockUps\\GooglePixel5ContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Views\\ContentViews\\MockUps\\GooglePixel6ProContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Views\\ContentViews\\MockUps\\Iphone13MiniContentView.xaml\">\n\t    <SubType>Designer</SubType>\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Views\\ContentViews\\MockUps\\SamsungGalaxyS22UltraContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Views\\ContentViews\\MockUps\\SamsungS8ContentView.xaml\">\n\t    <SubType>Designer</SubType>\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Views\\ContentViews\\MockUps\\Iphone15ContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Views\\ContentViews\\Showcases\\MobileAppShowcaseContentView.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t  <MauiXaml Update=\"Views\\ContentViews\\SourceCodeExpander\\SourceCodeExpanderContent.xaml\">\n\t    <Generator>MSBuild:Compile</Generator>\n\t  </MauiXaml>\n\t</ItemGroup>\n\n</Project>"
  },
  {
    "path": "src/Core/MAUIsland.Core/MAUIsland.Core.sln",
    "content": "﻿\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio Version 17\nVisualStudioVersion = 17.0.31903.59\nMinimumVisualStudioVersion = 10.0.40219.1\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"MAUIsland.Core\", \"MAUIsland.Core.csproj\", \"{F17849CD-1322-4054-AEFC-BEFE0E1C5409}\"\nEndProject\nGlobal\n\tGlobalSection(SolutionConfigurationPlatforms) = preSolution\n\t\tDebug|Any CPU = Debug|Any CPU\n\t\tRelease|Any CPU = Release|Any CPU\n\tEndGlobalSection\n\tGlobalSection(ProjectConfigurationPlatforms) = postSolution\n\t\t{F17849CD-1322-4054-AEFC-BEFE0E1C5409}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{F17849CD-1322-4054-AEFC-BEFE0E1C5409}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{F17849CD-1322-4054-AEFC-BEFE0E1C5409}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{F17849CD-1322-4054-AEFC-BEFE0E1C5409}.Release|Any CPU.Build.0 = Release|Any CPU\n\tEndGlobalSection\n\tGlobalSection(SolutionProperties) = preSolution\n\t\tHideSolutionNode = FALSE\n\tEndGlobalSection\nEndGlobal\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/MarkupExtensions/EdgeInsetsExtension.cs",
    "content": "﻿namespace MAUIsland.Core;\n\n[ContentProperty(nameof(All))]\npublic class EdgeInsetsExtension : IMarkupExtension\n{\n    public double Top { get; set; } = double.MinValue;\n    public double Left { get; set; } = double.MinValue;\n    public double Right { get; set; } = double.MinValue;\n    public double Bottom { get; set; } = double.MinValue;\n    public double All { get; set; } = 0d;\n    public double Vertical { get; set; } = double.MinValue;\n    public double Horizontal { get; set; } = double.MinValue;\n\n    public object ProvideValue(IServiceProvider serviceProvider)\n    {\n        return new Thickness(\n            GetValue(Left, Horizontal, All),\n            GetValue(Top, Vertical, All),\n            GetValue(Right, Horizontal, All),\n            GetValue(Bottom, Vertical, All)\n        );\n    }\n\n    private double GetValue(double value, double alternative1, double alternative2)\n    {\n        var valueSpecified = Math.Abs(value - double.MinValue) > double.Epsilon;\n        if (valueSpecified)\n        {\n            return value;\n        }\n\n        var alternative1Specified = Math.Abs(alternative1 - double.MinValue) > double.Epsilon;\n        return alternative1Specified ? alternative1 : alternative2;\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Platforms/Android/PlatformClass1.cs",
    "content": "﻿namespace MAUIsland.Core\n{\n    // All the code in this file is only included on Android.\n    public class PlatformClass1\n    {\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Platforms/MacCatalyst/PlatformClass1.cs",
    "content": "﻿namespace MAUIsland.Core\n{\n    // All the code in this file is only included on Mac Catalyst.\n    public class PlatformClass1\n    {\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Platforms/Tizen/PlatformClass1.cs",
    "content": "﻿using System;\n\nnamespace MAUIsland.Core\n{\n    // All the code in this file is only included on Tizen.\n    public class PlatformClass1\n    {\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Platforms/Windows/PlatformClass1.cs",
    "content": "﻿namespace MAUIsland.Core\n{\n    // All the code in this file is only included on Windows.\n    public class PlatformClass1\n    {\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Platforms/iOS/PlatformClass1.cs",
    "content": "﻿namespace MAUIsland.Core\n{\n    // All the code in this file is only included on iOS.\n    public class PlatformClass1\n    {\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/ServiceExtension.cs",
    "content": "﻿using CommunityToolkit.Maui;\nusing Material.Components.Maui.Extensions;\nusing MAUIsland.Features.LocalDbFeatures;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\nusing Plugin.Maui.OCR;\nusing SkiaSharp.Views.Maui.Controls.Hosting;\nusing Syncfusion.Maui.Toolkit.Hosting;\nusing Xe.AcrylicView;\nusing ZXing.Net.Maui.Controls;\n\nnamespace MAUIsland.Core;\n\npublic static class ServicesExtension\n{\n    public static MauiAppBuilder InitCore(this MauiAppBuilder builder, string gitHubFeatureAccessToken)\n    {\n\n        builder.UseOcr();\n        builder.UseAcrylicView();\n        builder.UseSkiaSharp(true);\n        builder.UseBarcodeReader();\n        builder.UseMaterialComponents();\n        builder.ConfigureSyncfusionToolkit();\n\n\n        builder.Services.RegisterGitHubFeatures(gitHubFeatureAccessToken);\n        builder.Services.AddSingleton<IFilePicker, FilePicker>();\n        builder.Services.AddTransient<IDialogService, DialogService>();\n        builder.Services.AddSingleton<IControlsService, ControlsService>();\n        builder.Services.AddTransient<IGitHubRepositorySyncService, GitHubRepositorySyncService>();\n        builder.Services.AddTransient<ICardInfoSyncService, CardInfoSyncService>();\n\n        #region [ LocalDb ]\n\n        var DbName = \"mauisland.db\";\n        var localDbPath = Path.Combine(FileSystem.AppDataDirectory, DbName);\n        builder.Services.RegisterLocalDbFeatures(localDbPath);\n        builder.Services.RegisterLocalDbFeaturesGitHub();\n        #endregion\n\n\n        return builder;\n    }\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/Controls/ControlsService.cs",
    "content": "﻿using System.Reflection;\n\nnamespace MAUIsland.Core;\n\npublic class ControlsService : IControlsService\n{\n\n    #region [ Fields ]\n\n    private readonly string mauiVersion;\n    private readonly IGalleryCardInfo[] controlInfos;\n    #endregion\n\n    #region [ CTor ]\n    public ControlsService(IEnumerable<IGalleryCardInfo> controlInfos)\n    {\n        this.mauiVersion = GetMauiVersion();\n        this.controlInfos = controlInfos.ToArray();\n    }\n    #endregion\n\n    #region [ Methods ]\n\n    private readonly IList<ControlGroupInfo> controlGroupInfos = new List<ControlGroupInfo>()\n    {\n        new (){\n            Name = ControlGroupInfo.SyncfusionControls,\n            Title = \"Syncfusion\",\n            Version = \"25.2.3\",\n            BrandColor = Color.FromArgb(\"#ff8900\"),\n            ButtonTextColor = Colors.White,\n            IconUrl = \"syncfusionlogo.png\",\n            Author = \"Syncfusion Inc.\",\n            Banner = \"syncfusion_banner.png\",\n            ProviderUrl = \"https://help.syncfusion.com/maui/introduction/overview\",\n            MicrosoftStoreLink=\"https://www.microsoft.com/store/productId/9P2P4D2BK270\",\n            Description = \"Syncfusion is a company that provides a set of controls for creating beautiful cross-platform, native mobile & desktop apps using .NET Multi-platform App UI (.NET MAUI). They offer a comprehensive collection of .NET MAUI components such as Charts, Gauge, and Tab View. You can add Syncfusion .NET MAUI components to your project by installing them from nuget.org. They also have a Visual Studio extension designed to streamline the creation of .NET MAUI applications.\"\n        },\n        new (){\n            Name = ControlGroupInfo.BuiltInControls,\n            Title = \"Built-in\",\n            Version = \"8.0.40\",\n            BrandColor = Color.FromArgb(\"#ac99ea\"),\n            ButtonTextColor = Color.FromArgb(\"#242424\"),\n            LottieUrl = \"island.json\",\n            Author = \"Microsoft\",\n            Banner = \"builtin_banner.png\",\n            ProviderUrl = \"https://learn.microsoft.com/en-us/dotnet/maui/what-is-maui?view=net-maui-7.0\",\n            Description = \".NET Multi-platform App UI (.NET MAUI) apps use objects that map to the native controls of each target platform to construct the user interface. The main control groups used are pages, layouts, and views. Pages generally occupy the full screen or window and usually contain a layout, which contains views and possibly other layouts. Some of the built-in pages in .NET MAUI include ContentPage, FlyoutPage, NavigationPage, and TabbedPage. Some of the built-in layouts include AbsoluteLayout, BindableLayout, FlexLayout, Grid, and StackLayout. Control templates enable the definition of the visual structure of custom controls and pages.\"\n        },\n        new (){\n            Name = ControlGroupInfo.CommunityToolkit,\n            Title = \"Toolkit\",\n            Version = \"9.0.0\",\n            BrandColor = Color.FromArgb(\"#2a0a96\"),\n            ButtonTextColor = Colors.White,\n            IconUrl = \"mauitoolkit_logo.png\",\n            Author = \"Microsoft\",\n            Banner = \"mauitoolkit_banner.png\",\n            ProviderUrl = \"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/\",\n            Description = \"The .NET MAUI Community Toolkit is a collection of reusable elements for application development with .NET MAUI, including animations, behaviors, converters, effects, and helpers. It simplifies and demonstrates common developer tasks when building iOS, Android, macOS and WinUI applications using .NET MAUI. The toolkit is available as a set of NuGet Packages for new or existing .NET MAUI projects. It is built as a set of open source projects hosted on GitHub by the community.\"\n        },\n        new (){\n            Name = ControlGroupInfo.GitHubCommunity,\n            Title = \"Community\",\n            Version= \"None\",\n            BrandColor = Color.FromArgb(\"#000000\"),\n            ButtonTextColor = Colors.White,\n            IconUrl = \"github_logo.png\",\n            Author = \"Community\",\n            Banner = \"github_banner.png\",\n            ProviderUrl = \"https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/\",\n            Description = \"Explore what the community is building with .NET MAUI. We collect a wide range of repositories and gather them here for you to easily explore and experiment with a variety of controls and capabilities, all in one convenient location. Whether you’re looking to build a new app from scratch or enhance an existing project\",\n        },\n        new() {\n            Name = ControlGroupInfo.MaterialComponent,\n            Title = \"Material\",\n            Version = \"0.2.2-preview\",\n            BrandColor = Color.FromArgb(\"#8674b6\"),\n            ButtonTextColor = Colors.White,\n            IconUrl = \"materialuilogo.png\",\n            Author = \"yiszza\",\n            Banner = \"materialui_banner.png\",\n            ProviderUrl = \"https://mdc-maui.github.io/\",\n            Description = \"Material design components for .NET MAUI. Material Design is a design language developed by Google that aims to provide a consistent user experience across all platforms and devices. It is guided by print-based design elements such as typography, grids, space, scale, color, and imagery to create hierarchy, meaning, and focus that immerse the user in the experience. Material Design adopts tools from the field of print design, like baseline grids and structural templates, encouraging consistency across environments by repeating visual elements, structural grids, and spacing across platforms and screen sizes. These layouts scale to fit any screen size, which simplifies the process of creating scalable apps.\"\n        }\n    };\n\n    public Task<IEnumerable<ControlGroupInfo>> GetControlGroupsAsync()\n    {\n        return Task.Run(() =>\n        {\n            return (IEnumerable<ControlGroupInfo>)controlGroupInfos;\n        });\n    }\n\n    public Task<IEnumerable<IGalleryCardInfo>> GetControlsAsync(string groupName)\n    {\n        return Task.Run(() =>\n        {\n            IEnumerable<IGalleryCardInfo> result = controlInfos\n                .Where(x => x.GroupName == groupName);\n\n            return string.IsNullOrWhiteSpace(groupName)\n                    ? controlInfos\n                    : controlInfos\n                        .Where(x => x.GroupName == groupName);\n        });\n    }\n\n    public Task<IGalleryCardInfo> GetControlByNameAsync(string groupName, string controlName)\n    {\n\n        return Task.Run(() =>\n        {\n            IEnumerable<IGalleryCardInfo> result = controlInfos\n                .Where(x => x.GroupName == groupName);\n\n            return controlInfos\n                        .Where(x => x.GroupName == groupName\n                                 && x.ControlName == controlName)\n                        .FirstOrDefault();\n        });\n    }\n\n    public Task<ControlIssueModel> GetControlIssues(string controlGroup, IEnumerable<string> labels)\n    {\n        // Perform get control issues by labels\n        // Save down to local db\n        throw new NotImplementedException();\n    }\n\n\n    private string GetMauiVersion()\n    {\n        var attr = typeof(MauiApp).Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>();\n        string version = attr.InformationalVersion;\n        return version;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/Controls/IControlsService.cs",
    "content": "﻿\nnamespace MAUIsland.Core;\n\npublic interface IControlsService\n{\n    Task<IEnumerable<ControlGroupInfo>> GetControlGroupsAsync();\n    Task<IEnumerable<IGalleryCardInfo>> GetControlsAsync(string groupName);\n    Task<IGalleryCardInfo> GetControlByNameAsync(string groupName, string controlName);\n    Task<ControlIssueModel> GetControlIssues(string controlGroup, IEnumerable<string> labels);\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/Dialog/DialogService.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class DialogService : IDialogService\n{\n    public Task<bool> ShowConfirmationAsync(string title, string message)\n    {\n        return Application.Current.MainPage.DisplayAlert(title, message, \"Yes\", \"Cancel\");\n    }\n\n    public Task ShowAlertAsync(string title, string message, string accept, string cancel)\n    {\n        return Application.Current.MainPage.DisplayAlert(title, message, accept, cancel);\n    }\n\n    public Task<string> ShowActionsAsync(string title, string message, string destruction, params string[] buttons)\n    {\n        return Application.Current.MainPage.DisplayActionSheet(title, \"Closed\", destruction, buttons);\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/Dialog/IDialogService.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic interface IDialogService\n{\n    Task<bool> ShowConfirmationAsync(string title, string message);\n    Task ShowAlertAsync(string title, string message, string accept, string cancel);\n    Task<string> ShowActionsAsync(string title, string message, string destruction, params string[] buttons);\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/FilePicker/FilePicker.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class FilePicker : IFilePicker\n{\n    /// <summary>\n    /// Convert byte[] to Stream\n    /// </summary>\n    /// <param name=\"bytes\">byte[]</param>\n    /// <returns>Stream</returns>\n    public Stream ByteArrayToStream(byte[] bytes)\n        => bytes is not null ? new MemoryStream(bytes) : null;\n\n    /// <summary>\n    /// Convert byte[] to string\n    /// </summary>\n    /// <param name=\"bytes\">byte[]</param>\n    /// <returns>string</returns>\n    public string ByteBase64ToString(byte[] bytes)\n        => bytes is not null ? Convert.ToBase64String(bytes) : null;\n\n    /// <summary>\n    /// Convert FileResult to Stream\n    /// </summary>\n    /// <param name=\"fileResult\">FileResult</param>\n    /// <returns>Stream</returns>\n    public Task<Stream> FileResultToStream(FileResult fileResult)\n        => fileResult == null ? null : fileResult.OpenReadAsync();\n\n    /// <summary>\n    /// Open Media Picker\n    /// </summary>\n    /// <returns>Task</returns>\n    public async Task<FileResult> OpenMediaPickerAsync()\n    {\n        try\n        {\n            var result = await MediaPicker.PickPhotoAsync(new MediaPickerOptions\n            {\n                Title = \"Please a pick photo\"\n            });\n\n            if (result != null)\n            {\n                if (result.ContentType == \"image/png\" ||\n                    result.ContentType == \"image/jpeg\" ||\n                    result.ContentType == \"image/jpg\")\n                    return result;\n            }\n            else\n                await Application.Current!.MainPage!.DisplayAlert(\"Error Type Image\", \"Please choose a new image\", \"Ok\");\n\n            return null;\n        }\n        catch (Exception ex)\n        {\n            Console.WriteLine(ex.Message);\n            return null;\n        }\n    }\n\n    /// <summary>\n    /// Convert string to byte[]\n    /// </summary>\n    /// <param name=\"text\">string</param>\n    /// <returns>byte[]</returns>\n    public byte[] StringToByteBase64(string text)\n        => text is not null ? Convert.FromBase64String(text) : null;\n\n    /// <summary>\n    /// Upload an image\n    /// </summary>\n    /// <param name=\"fileResult\">FileResult</param>\n    /// <returns>ImageFile class</returns>\n    public async Task<ImageFile> UploadImageFile(FileResult fileResult)\n    {\n        byte[] bytes;\n\n        try\n        {\n            using (var ms = new MemoryStream())\n            {\n                if (fileResult is not null)\n                {\n                    var stream = await FileResultToStream(fileResult);\n                    stream.CopyTo(ms);\n                    bytes = ms.ToArray();\n\n                    return new ImageFile\n                    {\n                        byteBase64 = ByteBase64ToString(bytes),\n                        ContentType = fileResult.ContentType,\n                        FileName = fileResult.FileName\n                    };\n                }\n                else return null;\n            }\n        }\n        catch (Exception ex)\n        {\n            Console.WriteLine(ex.Message);\n            return null;\n        }\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/FilePicker/IFilePicker.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic interface IFilePicker\n{\n    Task<FileResult> OpenMediaPickerAsync();\n    Task<Stream> FileResultToStream(FileResult fileResult);\n    Stream ByteArrayToStream(byte[] bytes);\n    string ByteBase64ToString(byte[] bytes);\n    byte[] StringToByteBase64(string text);\n    Task<ImageFile> UploadImageFile(FileResult fileResult);\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/FilePicker/ImageFile.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class ImageFile\n{\n    public string byteBase64 { get; set; }\n    public string ContentType { get; set; }\n    public string FileName { get; set; }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/LocalDb/Extensions/SyncRepositoryExtensions.cs",
    "content": "﻿using Bogus;\nusing Octokit;\n\nnamespace MAUIsland.Core;\n\npublic static class SyncRepositoryExtensions\n{\n    #region [ Public Static Methods - Map To Repository ]\n    public static Repository ToRepository(this GitHubRepositoryLocalDbModel model)\n    {\n        if (model == null)\n        {\n            return default;\n        }\n\n        var owner = GetUser(model.OwnerUrl, model.OwnerAvatarUrl);\n        var license = GetLicense(model.LicenseName);\n\n        var repo = new Faker<Repository>()\n            .RuleFor(x => x.SvnUrl, model.SvnUrl)\n            .RuleFor(x => x.Owner, owner)\n            .RuleFor(x => x.Name, model.Name)\n            .RuleFor(x => x.FullName, model.FullName)\n            .RuleFor(x => x.ForksCount, model.ForksCount)\n            .RuleFor(x => x.StargazersCount, model.StargazersCount)\n            .RuleFor(x => x.OpenIssuesCount, model.OpenIssuesCount)\n            .RuleFor(x => x.License, license)\n            .RuleFor(x => x.UpdatedAt, model.UpdatedAt);\n\n        return repo.Generate();\n    }\n    #endregion\n\n    #region [ Public Methods - Map To Model ]\n    public static GitHubRepositoryLocalDbModel ToRepositoryModel(this Repository repo)\n    {\n        if (repo == null)\n        {\n            return default;\n        }\n\n        var repoModel = new Faker<GitHubRepositoryLocalDbModel>()\n            .RuleFor(x => x.SvnUrl, repo.SvnUrl)\n            .RuleFor(x => x.OwnerUrl, repo.Owner.Url)\n            .RuleFor(x => x.OwnerAvatarUrl, repo.Owner.AvatarUrl)\n            .RuleFor(x => x.Name, repo.Name)\n            .RuleFor(x => x.FullName, repo.FullName)\n            .RuleFor(x => x.ForksCount, repo.ForksCount)\n            .RuleFor(x => x.StargazersCount, repo.StargazersCount)\n            .RuleFor(x => x.OpenIssuesCount, repo.OpenIssuesCount)\n            .RuleFor(x => x.LicenseName, repo.License is null ? string.Empty : repo.License.Name)\n            .RuleFor(x => x.UpdatedAt, repo.UpdatedAt);\n\n        return repoModel.Generate();\n    }\n    #endregion\n\n    #region [ Private Methods - Initialize Objects ]\n    private static User GetUser(string url, string avatarUrl)\n    {\n        var user = new Faker<User>()\n                        .RuleFor(x => x.Url, url)\n                        .RuleFor(x => x.AvatarUrl, avatarUrl);\n\n        return user.Generate();\n    }\n\n    private static License GetLicense(string name)\n    {\n        var license = new Faker<License>()\n                            .RuleFor(x => x.Name, name);\n\n        return license.Generate();\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/LocalDb/Implementations/CardInfoSyncService.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class CardInfoSyncService : SQLitePCLRawService<CardInfoSyncLocalDbModel>, ICardInfoSyncService\n{\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/LocalDb/Implementations/GitHubRepositorySyncService.cs",
    "content": "﻿using Octokit;\n\nnamespace MAUIsland.Core;\n\npublic class GitHubRepositorySyncService : SQLitePCLRawService<GitHubRepositoryLocalDbModel>, IGitHubRepositorySyncService\n{\n    #region [ Private Fields ]\n    private readonly ICardInfoSyncService _cardInfoSyncService;\n    #endregion\n\n    #region [ CTor ]\n    public GitHubRepositorySyncService(ICardInfoSyncService cardInfoSyncService)\n    {\n        _cardInfoSyncService = cardInfoSyncService;\n    }\n    #endregion\n\n    #region [ Public Methods - Get Single ]\n    public async Task<Repository> GetRepositoryAsync(string ownerName, string repoName, string headerValue = \"\")\n    {\n        try\n        {\n            // Test\n            //await _cardInfoSyncService.AddAsync(new() { ApplicationLastUpdate = DateTime.UtcNow });\n            var all = await _cardInfoSyncService.GetAllAsync();\n            var lastUpdateTime = all.OrderBy(x => x.ApplicationLastUpdate).LastOrDefault();\n            var now = DateTime.UtcNow;\n            var repository = new Repository();\n\n            if (lastUpdateTime != null)\n            {\n                // In case the time elapsed less than 1 hour => no need to call GitHub api.\n                if ((now - lastUpdateTime.ApplicationLastUpdate).TotalHours < 1)\n                {\n                    var syncedRepo = (await base.GetAllAsync()).FirstOrDefault(x => x.Name.Equals(repoName, StringComparison.InvariantCultureIgnoreCase));\n                    repository = syncedRepo.ToRepository();\n                    return repository;\n                }\n            }\n\n            // Reach this means lastUpdateTime = null or (now - lastUpdateTime) > 1 hour:\n            // Sync repo from GitHub\n            repository = await SyncRepoAsync(ownerName, repoName, headerValue);\n\n            // Update last update time\n            if (lastUpdateTime == null)\n            {\n                lastUpdateTime = new()\n                {\n                    ApplicationLastUpdate = now\n                };\n\n                await _cardInfoSyncService.AddAsync(lastUpdateTime);\n            }\n            else\n            {\n                lastUpdateTime.ApplicationLastUpdate = now;\n                await _cardInfoSyncService.UpdateAsync(lastUpdateTime);\n            }\n\n            return repository;\n        }\n        catch (Exception ex)\n        {\n            // This has been added with the purpose of handling errors during syncing process.\n            // Currently, it does nothing :)\n            return default;\n        }\n    }\n    #endregion\n\n    #region [ Methods - Sync ]\n    /// <summary>\n    /// Get repository, update localdb and return.\n    /// </summary>\n    /// <param name=\"ownerName\"> Owner's name.</param>\n    /// <param name=\"repoName\">Repository's name.</param>\n    /// <param name=\"headerValue\">Value of <see cref=\"ProductHeaderValue\"></see>.</param>\n    /// <returns></returns>\n    private async Task<Repository> SyncRepoAsync(string ownerName, string repoName, string headerValue = \"\")\n    {\n        if (string.IsNullOrEmpty(ownerName) || string.IsNullOrEmpty(repoName))\n        {\n            return default;\n        }\n\n        headerValue = string.IsNullOrEmpty(headerValue) ? headerValue : repoName;\n        var github = new GitHubClient(new ProductHeaderValue(headerValue));\n\n        var repository = await github.Repository.Get(ownerName, repoName);\n\n        var newModel = repository.ToRepositoryModel();\n        var oldModel = (await base.GetAllAsync()).FirstOrDefault(x => x.Name.Equals(repoName, StringComparison.InvariantCultureIgnoreCase));\n        if (oldModel != null)\n        {\n            await base.DeleteAsync(oldModel);\n        }\n        await base.AddAsync(newModel);\n\n        return repository;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/LocalDb/Implementations/SQLitePCLRawService.cs",
    "content": "﻿using SQLite;\n\nnamespace MAUIsland.Core;\n\npublic class SQLitePCLRawService<T> : ILocalDbService<T> where T : BaseLocalEntity, new()\n{\n    private const string DbName = \"mauisland.db\";\n    private readonly SQLiteAsyncConnection _connection;\n\n    public SQLitePCLRawService()\n    {\n        _connection = new SQLiteAsyncConnection(Path.Combine(FileSystem.AppDataDirectory, DbName));\n        _connection.CreateTableAsync<T>().Wait();\n    }\n\n    public async Task AddAsync(T entity)\n    {\n        await _connection.InsertAsync(entity);\n    }\n\n    public async Task AddRangeAsync(IEnumerable<T> entities)\n    {\n        await _connection.InsertAllAsync(entities);\n    }\n\n    public async Task DeleteAsync(T entity)\n    {\n        await _connection.DeleteAsync(entity);\n    }\n\n    public async Task<List<T>> GetAllAsync()\n    {\n        return await _connection.Table<T>().ToListAsync();\n    }\n\n    public async Task<T?> GetByIdAsync(int id)\n    {\n        return await _connection.Table<T>().FirstOrDefaultAsync(x => x.Id == id);\n    }\n\n    public async Task UpdateAsync(T entity)\n    {\n        await _connection.UpdateAsync(entity);\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/LocalDb/Interfaces/ICardInfoSyncService.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic interface ICardInfoSyncService : ILocalDbService<CardInfoSyncLocalDbModel>\n{\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/LocalDb/Interfaces/IGitHubRepositorySyncService.cs",
    "content": "﻿using Octokit;\n\nnamespace MAUIsland.Core;\n\npublic interface IGitHubRepositorySyncService : ILocalDbService<GitHubRepositoryLocalDbModel>\n{\n    #region [ Public Methods - Get Single ]\n    Task<Repository> GetRepositoryAsync(string ownerUrl, string repoName, string headerValue = \"\");\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/LocalDb/Interfaces/ILocalDbService.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic interface ILocalDbService<T> where T : class\n{\n    Task<List<T>> GetAllAsync();\n    Task<T?> GetByIdAsync(int id);\n    Task AddAsync(T entity);\n    Task AddRangeAsync(IEnumerable<T> entities);\n    Task UpdateAsync(T entity);\n    Task DeleteAsync(T entity);\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/LocalDb/Models/BaseLocalEntity.cs",
    "content": "﻿using SQLite;\n\nnamespace MAUIsland.Core;\n\npublic class BaseLocalEntity\n{\n    [PrimaryKey]\n    [AutoIncrement]\n    [Column(\"id\")]\n    public int Id { get; set; }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/LocalDb/Models/CardInfoSyncLocalDbModel.cs",
    "content": "﻿using SQLite;\n\nnamespace MAUIsland.Core;\n\npublic class CardInfoSyncLocalDbModel : BaseLocalEntity\n{\n\n    [Column(\"application_last_update\")]\n    public DateTime ApplicationLastUpdate { get; set; }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/LocalDb/Models/GitHubRepositoryLocalDbModel.cs",
    "content": "﻿using SQLite;\n\nnamespace MAUIsland.Core;\n\n[Table(\"RepositoryModel\")]\npublic class GitHubRepositoryLocalDbModel : BaseLocalEntity\n{\n    #region [ CTor ]\n    public GitHubRepositoryLocalDbModel()\n    {\n\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [Column(\"name\")]\n    public string Name { get; set; }\n\n    [Column(\"full_name\")]\n    public string FullName { get; set; }\n\n    [Column(\"svn_url\")]\n    public string SvnUrl { get; set; }\n\n    [Column(\"owner_url\")]\n    public string OwnerUrl { get; set; }\n\n    [Column(\"owner_avatar_url\")]\n    public string OwnerAvatarUrl { get; set; }\n\n    [Column(\"forks_count\")]\n    public int ForksCount { get; set; }\n\n    [Column(\"stargazers_count\")]\n    public int StargazersCount { get; set; }\n\n    [Column(\"open_issues_count\")]\n    public int OpenIssuesCount { get; set; }\n\n    [Column(\"license_name\")]\n    public string LicenseName { get; set; }\n\n    [Column(\"updated_at\")]\n    public DateTimeOffset UpdatedAt { get; set; }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/MrIncreadibleMeme/IMrIncreadibleMemeService.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic interface IMrIncreadibleMemeService\n{\n    ImageSource GetMemeImage(double age);\n    string GetMemeTitle(double age);\n    IDictionary<double, ImageSource> GetAllMemeImage();\n    IDictionary<double, string> GetAllMemeTitle();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Services/MrIncreadibleMeme/MrIncreadibleMemeService.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class MrIncreadibleMemeService : IMrIncreadibleMemeService\n{\n    private IDictionary<double, ImageSource> images = new Dictionary<double, ImageSource>()\n    {\n        { 12, ImageSource.FromFile(\"mrincredibleblackwhite.png\")},\n        { 13, ImageSource.FromFile(\"mrincredibleblackwhite1.png\")},\n        { 14, ImageSource.FromFile(\"mrincredibleblackwhite2.png\")},\n        { 15, ImageSource.FromFile(\"mrincredibleblackwhite3.png\")},\n        { 16, ImageSource.FromFile(\"mrincredibleblackwhite4.png\")},\n        { 17, ImageSource.FromFile(\"mrincredibleblackwhite5.png\")},\n        { 18, ImageSource.FromFile(\"mrincrediblesmile.png\")},\n        { 19, ImageSource.FromFile(\"mrincrediblesmile1.png\")},\n        { 20, ImageSource.FromFile(\"mrincrediblesmile2.png\")},\n        { 21, ImageSource.FromFile(\"mrincrediblesmile3.png\")},\n        { 22, ImageSource.FromFile(\"mrincrediblesmile4.png\")},\n        { 23, ImageSource.FromFile(\"mrincrediblesmile5.png\")},\n    };\n\n    private IDictionary<double, string> titles = new Dictionary<double, string>()\n    {\n        { 12, \"We send your IP Address to the FBI 🚓\"},\n        { 13, \"No stop !!! 🚫\"},\n        { 14, \"Bruh no !!! 🛑\"},\n        { 15, \"You kidding ? 🤡\"},\n        { 16, \"Really ? 💀\"},\n        { 17, \"Ok stop right there ✋🏽\"},\n        { 18, \"Lucky !!! 🍀\"},\n        { 19, \"Cool 😎\"},\n        { 20, \"Giggity ! 😏\"},\n        { 21, \"SOLID\"},\n        { 22, \"FINE\"},\n        { 23, \"MEH\"},\n    };\n\n    public IDictionary<double, ImageSource> GetAllMemeImage()\n    {\n        return images;\n    }\n\n    public IDictionary<double, string> GetAllMemeTitle()\n    {\n        return titles;\n    }\n\n    public ImageSource GetMemeImage(double age)\n    {\n        return !images.ContainsKey(age) ? ImageSource.FromFile(\"mrincredibleblackwhite.png\") : images[age];\n    }\n\n    public string GetMemeTitle(double age)\n    {\n        return !titles.ContainsKey(age) ? \"Well crap !! 💀\" : titles[age];\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Utils/MVVM/BaseFormModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic abstract class BaseFormModel : ObservableValidator\n{\n    protected virtual string[] ValidatableAndSupportPropertyNames => new string[0];\n\n    public virtual bool IsValid()\n    {\n        ValidateAllProperties();\n\n        foreach (var propertyName in ValidatableAndSupportPropertyNames)\n        {\n            OnPropertyChanged(propertyName);\n        }\n\n        return !HasErrors;\n    }\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Utils/MVVM/BaseModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class BaseModel : ObservableObject\n{\n    [ObservableProperty]\n    string id;\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Utils/MVVM/BasePage.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class BasePage : ContentPage\n{\n    public object NewWindowParameter { get; set; } = default!;\n    protected override void OnAppearing()\n    {\n        base.OnAppearing();\n\n        if (BindingContext is BaseViewModel vm)\n        {\n            vm.OnAppearingAsync();\n        }\n    }\n\n    protected override void OnDisappearing()\n    {\n        base.OnDisappearing();\n\n        if (BindingContext is BaseViewModel vm)\n        {\n            vm.OnDisappearingAsync();\n        }\n    }\n\n    public void SetNewWindowParameter(object parameter)\n    {\n        NewWindowParameter = parameter;\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Utils/MVVM/BasePopup.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic class BasePopup : BasePage { }\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Utils/MVVM/BaseViewModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic abstract partial class BaseViewModel : ObservableRecipient\n{\n    protected IAppNavigator AppNavigator { get; }\n\n    protected BaseViewModel(IAppNavigator appNavigator)\n    {\n        AppNavigator = appNavigator;\n    }\n\n    // ReSharper disable once UnusedParameter.Global\n    // ReSharper disable once UnusedMethodReturnValue.Global\n    // ReSharper disable once VirtualMemberNeverOverridden.Global\n    public virtual Task OnAppearingAsync()\n    {\n        System.Diagnostics.Debug.WriteLine($\"{GetType().Name}.{nameof(OnAppearingAsync)}\");\n\n        return Task.CompletedTask;\n    }\n\n    // ReSharper disable once UnusedParameter.Global\n    // ReSharper disable once UnusedMethodReturnValue.Global\n    // ReSharper disable once VirtualMemberNeverOverridden.Global\n    public virtual Task OnDisappearingAsync()\n    {\n        System.Diagnostics.Debug.WriteLine($\"{GetType().Name}.{nameof(OnDisappearingAsync)}\");\n\n        return Task.CompletedTask;\n    }\n\n    [RelayCommand]\n    protected virtual Task BackAsync() => AppNavigator.GoBackAsync();\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Utils/Navigation/AppNavigator.cs",
    "content": "﻿using CommunityToolkit.Maui.Alerts;\nusing CommunityToolkit.Maui.Core;\nusing Font = Microsoft.Maui.Font;\n\nnamespace MAUIsland.Core;\n\n[ExcludeFromCodeCoverage]\npublic class AppNavigator : IAppNavigator\n{\n    private readonly IServiceProvider serviceProvider;\n\n    public AppNavigator(\n        IServiceProvider serviceProvider)\n    {\n        this.serviceProvider = serviceProvider;\n    }\n\n    public Task GoBackAsync(bool animated = false, object data = default)\n    {\n        return NavigateAsync(UriHelper.GoBackSegment, animated, false, data);\n    }\n\n    public Task NavigateAsync(string target, bool animated = false, bool inNewWindow = false, object args = default)\n    {\n        var navArgs = new Dictionary<string, object>()\n        {\n            { \"source\", Shell.Current.CurrentState.Location.OriginalString },\n            { nameof(target), target },\n            { nameof(animated), animated }\n        };\n\n        if (args is not null)\n        {\n            navArgs.Add(UriHelper.DataQueryParameterName, args);\n        }\n\n        if (inNewWindow && AllowsInNewWindow())\n        {\n            return Task.Run(() =>\n            {\n                var page = Routing.GetOrCreateContent(target, serviceProvider) as Page;\n\n                if (page == null)\n                    throw new InvalidOperationException($\"Cannot find page at route {target}\");\n\n                var basePage = (BasePage)page;\n                var controlInformation = navArgs[\"__DATA__\"];\n                if (controlInformation is not null)\n                    basePage.SetNewWindowParameter(controlInformation);\n\n                return MainThread.InvokeOnMainThreadAsync(() =>\n                {\n                    var newWindow = new Window(basePage);\n                    Application.Current.OpenWindow(newWindow);\n                });\n            });\n        }\n\n        return MainThread.InvokeOnMainThreadAsync(() => Shell.Current.GoToAsync(\n            target,\n            animated,\n            navArgs\n        ).ContinueWith(x =>\n        {\n\n        }));\n    }\n\n    private static bool AllowsInNewWindow()\n    {\n        return DeviceInfo.Platform != DevicePlatform.iOS;\n    }\n\n    public Task<bool> OpenUrlAsync(string url)\n    {\n        return Launcher.OpenAsync(url);\n    }\n\n    public Task<bool> OpenNewWindow(string url)\n    {\n        var page = Shell.Current.Navigation;\n        return Task.FromResult(true);\n    }\n\n    public Task ShareAsync(string text, string title = default)\n    {\n        var request = new ShareTextRequest(text, title);\n\n        return Share.Default.RequestAsync(request);\n    }\n\n    public Task ShowSnackbarAsync(string message, Action action = null, string actionText = null)\n    {\n        var options = new SnackbarOptions\n        {\n            BackgroundColor = AppColors.Purple,\n            TextColor = AppColors.White,\n            ActionButtonTextColor = AppColors.Pink,\n            CornerRadius = new CornerRadius(Dimensions.ButtonCornerRadius),\n            Font = Font.OfSize(FontNames.InterRegular, Dimensions.FontSizeT6),\n            ActionButtonFont = Font.OfSize(FontNames.SmoochSansBold, Dimensions.FontSizeT6),\n            CharacterSpacing = 0.5\n        };\n        var snackbar = Snackbar.Make(message, action, actionText ?? \"OK\", TimeSpan.FromSeconds(5), options);\n        return snackbar.Show();\n    }\n\n    public void CloseCurrentWindow()\n    {\n        // Application.Current.Windows\n        var xwindow = Application.Current.Windows.Last();\n        var currentWindow = Shell.Current.GetParentWindow();\n        Application.Current.CloseWindow(currentWindow);\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Utils/Navigation/IAppNavigator.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic interface IAppNavigator\n{\n    Task GoBackAsync(bool animated = false, object data = default);\n\n    void CloseCurrentWindow();\n\n    Task NavigateAsync(string target, bool animated = false, bool inNewWindow = false, object args = default);\n\n    Task<bool> OpenUrlAsync(string url);\n\n    Task ShareAsync(string text, string title = default);\n\n    Task ShowSnackbarAsync(string message, Action action = null, string actionText = null);\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Utils/Navigation/NavigationAwareBaseViewModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic abstract class NavigationAwareBaseViewModel : BaseViewModel, IQueryAttributable\n{\n    protected bool Initialized { get; private set; }\n\n    protected NavigationAwareBaseViewModel(IAppNavigator appNavigator) : base(appNavigator)\n    {\n    }\n\n    public void ApplyQueryAttributes(IDictionary<string, object> query)\n    {\n        if (query.IsGoingBack())\n        {\n            System.Diagnostics.Debug.WriteLine($\"{GetType().Name}.{nameof(OnBack)}\");\n            OnBack(query);\n        }\n        else\n        {\n            System.Diagnostics.Debug.WriteLine($\"{GetType().Name}.{nameof(OnInit)}\");\n\n            if (Initialized) return;\n\n            Initialized = true;\n            OnInit(query);\n        }\n    }\n\n    public override Task OnAppearingAsync()\n    {\n        if (!Initialized)\n        {\n            Initialized = true;\n            OnInit(new Dictionary<string, object>());\n        }\n\n        return base.OnAppearingAsync();\n    }\n\n    protected virtual void OnBack(IDictionary<string, object> query)\n    {\n    }\n\n    protected virtual void OnInit(IDictionary<string, object> query)\n    {\n    }\n}\n\npublic interface IOnBackAwareViewModel\n{\n    Task OnBackAsync(IDictionary<string, object> query);\n}\n\npublic interface IOnInitAwareViewModel<in T>\n{\n    Task OnInitAsync(T args);\n}\n\npublic abstract class NavigationAwareViewModel<TInit>\n    : NavigationAwareBaseViewModel\n        , IOnInitAwareViewModel<TInit>\n        , IOnBackAwareViewModel\n{\n    protected NavigationAwareViewModel(IAppNavigator appNavigator) : base(appNavigator)\n    {\n    }\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        OnInitAsync(query.GetData<TInit>());\n    }\n\n    public virtual Task OnInitAsync(TInit args) => Task.CompletedTask;\n\n    protected override void OnBack(IDictionary<string, object> query)\n    {\n        OnBackAsync(query);\n    }\n\n    public virtual Task OnBackAsync(IDictionary<string, object> query) => Task.CompletedTask;\n}\n\n// ReSharper disable once UnusedType.Global\npublic abstract class OnBackAwareViewModel\n    : NavigationAwareBaseViewModel\n        , IOnBackAwareViewModel\n{\n    protected OnBackAwareViewModel(IAppNavigator appNavigator) : base(appNavigator)\n    {\n    }\n\n    protected override void OnBack(IDictionary<string, object> query)\n    {\n        OnBackAsync(query);\n    }\n\n    public virtual Task OnBackAsync(IDictionary<string, object> query) => Task.CompletedTask;\n}\n\n// ReSharper disable once UnusedType.Global\npublic abstract class OnInitAwareViewModel<TInit>\n    : NavigationAwareBaseViewModel\n        , IOnInitAwareViewModel<TInit>\n{\n    protected OnInitAwareViewModel(IAppNavigator appNavigator) : base(appNavigator)\n    {\n    }\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        OnInitAsync(query.GetData<TInit>());\n    }\n\n    public virtual Task OnInitAsync(TInit args) => Task.CompletedTask;\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Utils/Navigation/UriHelper.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic static class UriHelper\n{\n    public const string GoBackSegment = \"..\";\n\n    public const string GoBackQueryParameterName = \"__GOBACK__\";\n    public const string DataQueryParameterName = \"__DATA__\";\n\n    public static bool IsGoingBack(this IDictionary<string, object> query)\n    {\n        if (query == null) return false;\n\n        return query.ContainsKey(GoBackQueryParameterName);\n    }\n\n    public static T GetData<T>(this IDictionary<string, object> query)\n    {\n        if (query == null) return default;\n\n        var hasData = query.TryGetValue(DataQueryParameterName, out var arg);\n\n        if (hasData && arg is T tValue) return tValue;\n\n        return default;\n    }\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/DocumentAlert.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.DocumentAlert\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\"\n    x:DataType=\"app:DocumentAlert\"\n    Loaded=\"root_Loaded\">\n    <Border\n        Padding=\"10\"\n        BackgroundColor=\"{x:Binding ComponentColor,\n                                    Source={x:Reference root},\n                                    Mode=OneWay}\"\n        StrokeShape=\"RoundRectangle 4\">\n        <VerticalStackLayout>\n            <Label\n                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                Text=\"{x:Binding AlertType,\n                                 Source={x:Reference root},\n                                 Mode=OneWay}\"\n                TextColor=\"White\" />\n            <Label\n                Text=\"{x:Binding Text,\n                                 Source={x:Reference root},\n                                 Mode=OneWay}\"\n                TextColor=\"White\"\n                TextType=\"Html\" />\n        </VerticalStackLayout>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/DocumentAlert.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class DocumentAlert : ContentView\n{\n\n    #region [ CTor ]\n\n    public DocumentAlert()\n    {\n        InitializeComponent();\n    }\n\n    #endregion\n\n    #region [ Properties ]\n\n    private Color componentColor;\n    public Color ComponentColor\n    {\n        get => componentColor;\n        set\n        {\n            if (componentColor != value)\n            {\n                componentColor = value;\n                OnPropertyChanged();\n            }\n        }\n    }\n\n\n    public static readonly BindableProperty TextProperty = BindableProperty.Create(nameof(Text),\n                                                                                   typeof(string),\n                                                                                   typeof(IconLabel),\n                                                                                   default(string),\n                                                                                   BindingMode.OneWay);\n    public string Text\n    {\n        get => (string)GetValue(TextProperty);\n        set => SetValue(TextProperty, value);\n    }\n\n    public static readonly BindableProperty AlertTypeProperty = BindableProperty.Create(nameof(AlertType),\n                                                                               typeof(DocumentAlertType),\n                                                                               typeof(IconLabel),\n                                                                               default(DocumentAlertType),\n                                                                               BindingMode.OneWay);\n    public DocumentAlertType AlertType\n    {\n        get => (DocumentAlertType)GetValue(AlertTypeProperty);\n        set => SetValue(AlertTypeProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void root_Loaded(object sender, EventArgs e)\n    {\n        ComponentColor = ColorMatching(AlertType);\n    }\n    #endregion\n\n    #region [ Methods - Private ]\n\n    Color ColorMatching(DocumentAlertType type)\n        => type switch\n        {\n            DocumentAlertType.Note => Color.FromArgb(\"#3b2e58\"),\n            DocumentAlertType.Important => Color.FromArgb(\"#004173\"),\n            DocumentAlertType.Warning => Color.FromArgb(\"#6a4b16\"),\n            DocumentAlertType.Tip => Color.FromArgb(\"#054b16\")\n        };\n    #endregion\n}\npublic enum DocumentAlertType\n{\n    Note, Important, Warning, Tip\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/HorizontalIconButton.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.HorizontalIconButton\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:local=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\"\n    x:DataType=\"local:HorizontalIconButton\">\n\n    <Frame Padding=\"10,5,10,5\">\n        <HorizontalStackLayout>\n            <Image Source=\"{x:Binding PrefixIcon, Source={x:Reference root}}\" />\n            <Label\n                HorizontalOptions=\"Center\"\n                Text=\"{x:Binding Text,\n                                 Source={x:Reference root}}\"\n                TextColor=\"{x:Static local:AppColors.Black}\"\n                VerticalOptions=\"Center\" />\n        </HorizontalStackLayout>\n    </Frame>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/HorizontalIconButton.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class HorizontalIconButton : ContentView\n{\n    #region [ Ctor ]\n\n    public HorizontalIconButton()\n    {\n        InitializeComponent();\n    }\n\n    #endregion\n\n    #region [Bindable Properties]\n\n    public static readonly BindableProperty PrefixIconProperty = BindableProperty.Create(\n        nameof(PrefixIcon),\n        typeof(ImageSource),\n        typeof(HorizontalIconButton),\n        default(ImageSource)\n        );\n\n    public static readonly BindableProperty TextProperty = BindableProperty.Create(\n        nameof(Text),\n        typeof(string),\n        typeof(HorizontalIconButton),\n        default(string),\n        BindingMode.TwoWay\n        );\n    #endregion\n\n    #region [Properties]\n    public ImageSource PrefixIcon\n    {\n        get => (ImageSource)GetValue(PrefixIconProperty);\n        set => SetValue(PrefixIconProperty, value);\n    }\n\n    public string Text\n    {\n        get => (string)GetValue(TextProperty);\n        set => SetValue(TextProperty, value);\n    }\n\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/IconLabel.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.IconLabel\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\"\n    x:DataType=\"app:IconLabel\">\n    <HorizontalStackLayout>\n        <Image\n            Margin=\"{app:EdgeInsets Vertical={x:Static app:Dimensions.SpacingMd}}\"\n            HeightRequest=\"28\"\n            Source=\"{Binding PrefixIcon, Source={x:Reference root}}\"\n            WidthRequest=\"28\" />\n        <Label\n            HorizontalOptions=\"Center\"\n            Text=\"{x:Binding Text,\n                             Source={x:Reference root}}\"\n            TextColor=\"{x:Binding TextColor,\n                                  Source={x:Reference root}}\"\n            VerticalOptions=\"Center\" />\n    </HorizontalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/IconLabel.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class IconLabel : ContentView\n{\n\n    #region [CTor]\n\n    public IconLabel()\n    {\n        InitializeComponent();\n    }\n\n    #endregion\n\n    #region [Properties]\n    public static readonly BindableProperty PrefixIconProperty = BindableProperty.Create(nameof(PrefixIcon),\n                                                                                         typeof(ImageSource),\n                                                                                         typeof(IconLabel),\n                                                                                         default(ImageSource));\n    public ImageSource PrefixIcon\n    {\n        get => (ImageSource)GetValue(PrefixIconProperty);\n        set => SetValue(PrefixIconProperty, value);\n    }\n\n    public static readonly BindableProperty TextProperty = BindableProperty.Create(nameof(Text),\n                                                                                   typeof(string),\n                                                                                   typeof(IconLabel),\n                                                                                   default(string),\n                                                                                   BindingMode.OneWay);\n    public string Text\n    {\n        get => (string)GetValue(TextProperty);\n        set => SetValue(TextProperty, value);\n    }\n\n    public static readonly BindableProperty TextColorProperty = BindableProperty.Create(nameof(TextColor),\n                                                                               typeof(Color),\n                                                                               typeof(IconLabel),\n                                                                               default(Color),\n                                                                               BindingMode.OneWay);\n    public Color TextColor\n    {\n        get => (Color)GetValue(TextColorProperty);\n        set => SetValue(TextColorProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/AppleIphone15ProMaxContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.AppleIphone15ProMaxContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\"\n    Loaded=\"root_Loaded\">\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"BackIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_circle_left_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <FontImageSource\n            x:Key=\"NextIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_arrow_circle_right_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <core:InnerFrameDimensionConverter x:Key=\"InnerFrameDimensionConverter\" />\n    </ContentView.Resources>\n\n    <Grid>\n        <Border\n            Padding=\"{x:Binding CurrentBorderPadding,\n                                Source={x:Reference root},\n                                Mode=OneWay}\"\n            HeightRequest=\"{Binding Source={x:Reference Frame}, Path=Height, Converter={x:StaticResource InnerFrameDimensionConverter}, ConverterParameter='0'}\"\n            HorizontalOptions=\"Center\"\n            MinimumHeightRequest=\"400\"\n            SizeChanged=\"Border_SizeChanged\"\n            StrokeShape=\"RoundRectangle 30\"\n            StrokeThickness=\"0\"\n            WidthRequest=\"{Binding Source={x:Reference Frame}, Path=Width, Converter={x:StaticResource InnerFrameDimensionConverter}, ConverterParameter='2'}\">\n            <Image\n                Aspect=\"AspectFit\"\n                BindingContext=\"{x:Reference root}\"\n                HorizontalOptions=\"CenterAndExpand\"\n                IsAnimationPlaying=\"True\"\n                MinimumHeightRequest=\"400\"\n                Source=\"{x:Binding SelectedMockUp,\n                                   Mode=OneWay}\"\n                VerticalOptions=\"CenterAndExpand\" />\n        </Border>\n        <Image\n            x:Name=\"Frame\"\n            Aspect=\"AspectFit\"\n            HorizontalOptions=\"Center\"\n            InputTransparent=\"True\"\n            MinimumHeightRequest=\"400\"\n            Source=\"apple_iphone_15_pro_max.png\"\n            VerticalOptions=\"Center\" />\n        <ImageButton\n            x:Name=\"BackButton\"\n            Margin=\"22,0,0,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"BackButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"Start\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource BackIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n        <ImageButton\n            x:Name=\"NextButton\"\n            Margin=\"0,0,22,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"NextButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"End\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource NextIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n    </Grid>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/AppleIphone15ProMaxContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class AppleIphone15ProMaxContentView : ContentView\n{\n\n    #region [ CTor ]\n\n    public AppleIphone15ProMaxContentView()\n    {\n        InitializeComponent();\n    }\n\n    #endregion\n\n    #region [ Properties ]\n\n    private Thickness currentBorderPadding = new(10);\n    public Thickness CurrentBorderPadding\n    {\n        get => currentBorderPadding;\n        set\n        {\n            if (currentBorderPadding != value)\n            {\n                currentBorderPadding = value;\n                OnPropertyChanged();\n            }\n        }\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n\n\n    public static readonly BindableProperty SelectedMockUpProperty = BindableProperty.Create(\n    nameof(SelectedMockUp),\n    typeof(string),\n    typeof(Iphone13MiniContentView),\n    default(string),\n    BindingMode.TwoWay);\n\n    public string SelectedMockUp\n    {\n        get => (string)GetValue(SelectedMockUpProperty);\n        set => SetValue(SelectedMockUpProperty, value);\n    }\n\n    public static readonly BindableProperty ItemsSourceProperty = BindableProperty.Create(nameof(ItemsSource),\n                                                                                   typeof(ObservableCollection<string>),\n                                                                                   typeof(Iphone13MiniContentView),\n                                                                                   default(ObservableCollection<string>),\n                                                                                   BindingMode.OneWay);\n\n    public ObservableCollection<string> ItemsSource\n    {\n        get => (ObservableCollection<string>)GetValue(ItemsSourceProperty);\n        set => SetValue(ItemsSourceProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void root_Loaded(object sender, EventArgs e)\n    {\n\n        if (ItemsSource is null\n            ||\n           !ItemsSource.Any()\n            ||\n           ItemsSource.FirstOrDefault() is null)\n            return;\n\n        SelectedMockUp = ItemsSource.FirstOrDefault()!;\n    }\n\n    private void NextButton_Clicked(object sender, EventArgs e)\n    {\n        if (ItemsSource is null)\n            return;\n\n        var indexOfCurrent = ItemsSource.IndexOf(SelectedMockUp);\n        if (indexOfCurrent == ItemsSource.Count - 1)\n            return;\n\n        var nextIndex = indexOfCurrent + 1;\n        SelectedMockUp = ItemsSource[nextIndex];\n    }\n\n    private void BackButton_Clicked(object sender, EventArgs e)\n    {\n        if (ItemsSource is null)\n            return;\n\n        var indexOfCurrent = ItemsSource.IndexOf(SelectedMockUp);\n        if (indexOfCurrent <= 0)\n            return;\n\n        var prevIndex = indexOfCurrent - 1;\n        SelectedMockUp = ItemsSource[prevIndex];\n    }\n\n    private void PointerGestureRecognizer_PointerEntered(object sender, PointerEventArgs e)\n    {\n\n        if (ItemsSource is null || ItemsSource.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0.5, 1500);\n    }\n\n    private void PointerGestureRecognizer_PointerExited(object sender, PointerEventArgs e)\n    {\n        if (ItemsSource is null || ItemsSource.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0, 1500);\n    }\n\n    private void Border_SizeChanged(object sender, EventArgs e)\n    {\n        var view = sender as Border;\n        if (view != null)\n        {\n            double width = view.Width;\n            double height = view.Height;\n\n            if (height >= 521)\n                CurrentBorderPadding = new(8);\n            else if (height > 450)\n                CurrentBorderPadding = new(10);\n            else\n                CurrentBorderPadding = new(6.5);\n\n            System.Diagnostics.Debug.WriteLine($\"Image size changed - Width: {width}, Height: {height}\");\n            System.Diagnostics.Debug.WriteLine($\"Image size changed - Border padding: {view.Padding.Top}\");\n        }\n\n    }\n    #endregion\n\n    #region [ Methods - Private ]\n\n    private async Task ExportMockUp()\n    {\n        var result = await root.CaptureAsync();\n        using MemoryStream stream = new();\n\n        await result.CopyToAsync(stream);\n        File.WriteAllBytes(\"C:\\\\Users\\\\Strypper\\\\Desktop\\\\Bruh.png\", stream.ToArray());\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Converters/InnerFrameDimensionConverter.cs",
    "content": "﻿\nnamespace MAUIsland.Core;\n\npublic class InnerFrameDimensionConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        if (value is double frameWidth && parameter is string)\n        {\n            if (double.TryParse((string)parameter, out double subtractAmount))\n            {\n                return frameWidth - subtractAmount;\n            }\n        }\n\n        return Binding.DoNothing; // or return value, depending on what you want in case of conversion failure\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/GooglePixel5ContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.GooglePixel5ContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\"\n    x:DataType=\"core:GooglePixel5ContentView\"\n    Loaded=\"root_Loaded\">\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"BackIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_circle_left_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <FontImageSource\n            x:Key=\"NextIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_arrow_circle_right_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <core:InnerFrameDimensionConverter x:Key=\"InnerFrameDimensionConverter\" />\n    </ContentView.Resources>\n\n    <Grid>\n        <Border\n            Padding=\"0\"\n            HeightRequest=\"{Binding Source={x:Reference Frame}, Path=Height, Converter={x:StaticResource InnerFrameDimensionConverter}, ConverterParameter='14'}\"\n            HorizontalOptions=\"Center\"\n            MinimumHeightRequest=\"400\"\n            StrokeShape=\"RoundRectangle 40\"\n            StrokeThickness=\"0\"\n            WidthRequest=\"{Binding Source={x:Reference Frame}, Path=Width, Converter={x:StaticResource InnerFrameDimensionConverter}, ConverterParameter='2'}\">\n            <Image\n                Aspect=\"AspectFit\"\n                BindingContext=\"{x:Reference root}\"\n                HorizontalOptions=\"CenterAndExpand\"\n                IsAnimationPlaying=\"True\"\n                MinimumHeightRequest=\"400\"\n                Source=\"{x:Binding SelectedMockUp,\n                                   Mode=OneWay}\"\n                VerticalOptions=\"CenterAndExpand\" />\n        </Border>\n        <Image\n            x:Name=\"Frame\"\n            Aspect=\"AspectFit\"\n            HorizontalOptions=\"Center\"\n            InputTransparent=\"True\"\n            MinimumHeightRequest=\"400\"\n            Source=\"google_pixel_5.png\"\n            VerticalOptions=\"Center\" />\n        <ImageButton\n            x:Name=\"BackButton\"\n            Margin=\"22,0,0,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"BackButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"Start\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource BackIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n        <ImageButton\n            x:Name=\"NextButton\"\n            Margin=\"0,0,22,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"NextButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"End\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource NextIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n    </Grid>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/GooglePixel5ContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class GooglePixel5ContentView : ContentView\n{\n\n    #region [ CTor ]\n\n    public GooglePixel5ContentView()\n    {\n        InitializeComponent();\n    }\n\n    #endregion\n\n    #region [ Bindable Properties ]\n\n\n    public static readonly BindableProperty SelectedMockUpProperty = BindableProperty.Create(\n    nameof(SelectedMockUp),\n    typeof(string),\n    typeof(Iphone13MiniContentView),\n    default(string),\n    BindingMode.TwoWay);\n\n    public string SelectedMockUp\n    {\n        get => (string)GetValue(SelectedMockUpProperty);\n        set => SetValue(SelectedMockUpProperty, value);\n    }\n\n    public static readonly BindableProperty ItemsSourceProperty = BindableProperty.Create(nameof(ItemsSource),\n                                                                                   typeof(ObservableCollection<string>),\n                                                                                   typeof(Iphone13MiniContentView),\n                                                                                   default(ObservableCollection<string>),\n                                                                                   BindingMode.OneWay);\n\n    public ObservableCollection<string> ItemsSource\n    {\n        get => (ObservableCollection<string>)GetValue(ItemsSourceProperty);\n        set => SetValue(ItemsSourceProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void root_Loaded(object sender, EventArgs e)\n    {\n\n        if (ItemsSource is null\n            ||\n           !ItemsSource.Any()\n            ||\n           ItemsSource.FirstOrDefault() is null)\n            return;\n\n        SelectedMockUp = ItemsSource.FirstOrDefault()!;\n    }\n\n    private void NextButton_Clicked(object sender, EventArgs e)\n    {\n        if (ItemsSource is null)\n            return;\n\n        var indexOfCurrent = ItemsSource.IndexOf(SelectedMockUp);\n        if (indexOfCurrent == ItemsSource.Count - 1)\n            return;\n\n        var nextIndex = indexOfCurrent + 1;\n        SelectedMockUp = ItemsSource[nextIndex];\n    }\n\n    private void BackButton_Clicked(object sender, EventArgs e)\n    {\n        if (ItemsSource is null)\n            return;\n\n        var indexOfCurrent = ItemsSource.IndexOf(SelectedMockUp);\n        if (indexOfCurrent <= 0)\n            return;\n\n        var prevIndex = indexOfCurrent - 1;\n        SelectedMockUp = ItemsSource[prevIndex];\n    }\n\n    private void PointerGestureRecognizer_PointerEntered(object sender, PointerEventArgs e)\n    {\n\n        if (ItemsSource is null || ItemsSource.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0.5, 1500);\n    }\n\n    private void PointerGestureRecognizer_PointerExited(object sender, PointerEventArgs e)\n    {\n        if (ItemsSource is null || ItemsSource.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0, 1500);\n    }\n    #endregion\n\n    #region [ Methods - Private ]\n\n    private async Task ExportMockUp()\n    {\n        var result = await root.CaptureAsync();\n        using MemoryStream stream = new();\n\n        await result.CopyToAsync(stream);\n        File.WriteAllBytes(\"C:\\\\Users\\\\Strypper\\\\Desktop\\\\Bruh.png\", stream.ToArray());\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/GooglePixel6ProContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.GooglePixel6ProContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\"\n    x:DataType=\"core:GooglePixel6ProContentView\"\n    Loaded=\"root_Loaded\">\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"BackIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_circle_left_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <FontImageSource\n            x:Key=\"NextIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_arrow_circle_right_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <core:InnerFrameDimensionConverter x:Key=\"InnerFrameDimensionConverter\" />\n    </ContentView.Resources>\n\n    <Grid>\n        <Border\n            Margin=\"0,0,0,4\"\n            HeightRequest=\"{Binding Source={x:Reference Frame}, Path=Height, Converter={x:StaticResource InnerFrameDimensionConverter}, ConverterParameter='28'}\"\n            HorizontalOptions=\"Center\"\n            MinimumHeightRequest=\"400\"\n            StrokeShape=\"RoundRectangle 0\"\n            StrokeThickness=\"0\"\n            WidthRequest=\"{Binding Source={x:Reference Frame}, Path=Width, Converter={x:StaticResource InnerFrameDimensionConverter}, ConverterParameter='4'}\">\n            <Image\n                Aspect=\"AspectFit\"\n                BindingContext=\"{x:Reference root}\"\n                HorizontalOptions=\"CenterAndExpand\"\n                IsAnimationPlaying=\"True\"\n                MinimumHeightRequest=\"400\"\n                Source=\"{x:Binding SelectedMockUp,\n                                   Mode=OneWay}\"\n                VerticalOptions=\"CenterAndExpand\" />\n        </Border>\n        <Image\n            x:Name=\"Frame\"\n            Aspect=\"AspectFit\"\n            HorizontalOptions=\"Center\"\n            InputTransparent=\"True\"\n            MinimumHeightRequest=\"400\"\n            Source=\"google_pixel_6_pro.png\"\n            VerticalOptions=\"Center\" />\n        <ImageButton\n            x:Name=\"BackButton\"\n            Margin=\"22,0,0,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"BackButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"Start\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource BackIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n        <ImageButton\n            x:Name=\"NextButton\"\n            Margin=\"0,0,22,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"NextButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"End\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource NextIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n    </Grid>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/GooglePixel6ProContentView.xaml.cs",
    "content": "\nnamespace MAUIsland.Core;\n\npublic partial class GooglePixel6ProContentView : ContentView\n{\n\n    #region [ CTor ]\n\n    public GooglePixel6ProContentView()\n    {\n        InitializeComponent();\n    }\n\n    #endregion\n\n    #region [ Bindable Properties ]\n\n\n    public static readonly BindableProperty SelectedMockUpProperty = BindableProperty.Create(\n    nameof(SelectedMockUp),\n    typeof(string),\n    typeof(Iphone13MiniContentView),\n    default(string),\n    BindingMode.TwoWay);\n\n    public string SelectedMockUp\n    {\n        get => (string)GetValue(SelectedMockUpProperty);\n        set => SetValue(SelectedMockUpProperty, value);\n    }\n\n    public static readonly BindableProperty ItemsSourceProperty = BindableProperty.Create(nameof(ItemsSource),\n                                                                                   typeof(ObservableCollection<string>),\n                                                                                   typeof(Iphone13MiniContentView),\n                                                                                   default(ObservableCollection<string>),\n                                                                                   BindingMode.OneWay);\n\n    public ObservableCollection<string> ItemsSource\n    {\n        get => (ObservableCollection<string>)GetValue(ItemsSourceProperty);\n        set => SetValue(ItemsSourceProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void root_Loaded(object sender, EventArgs e)\n    {\n\n        if (ItemsSource is null\n            ||\n           !ItemsSource.Any()\n            ||\n           ItemsSource.FirstOrDefault() is null)\n            return;\n\n        SelectedMockUp = ItemsSource.FirstOrDefault()!;\n    }\n\n    private void NextButton_Clicked(object sender, EventArgs e)\n    {\n        if (ItemsSource is null)\n            return;\n\n        var indexOfCurrent = ItemsSource.IndexOf(SelectedMockUp);\n        if (indexOfCurrent == ItemsSource.Count - 1)\n            return;\n\n        var nextIndex = indexOfCurrent + 1;\n        SelectedMockUp = ItemsSource[nextIndex];\n    }\n\n    private void BackButton_Clicked(object sender, EventArgs e)\n    {\n        if (ItemsSource is null)\n            return;\n\n        var indexOfCurrent = ItemsSource.IndexOf(SelectedMockUp);\n        if (indexOfCurrent <= 0)\n            return;\n\n        var prevIndex = indexOfCurrent - 1;\n        SelectedMockUp = ItemsSource[prevIndex];\n    }\n\n    private void PointerGestureRecognizer_PointerEntered(object sender, PointerEventArgs e)\n    {\n\n        if (ItemsSource is null || ItemsSource.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0.5, 1500);\n    }\n\n    private void PointerGestureRecognizer_PointerExited(object sender, PointerEventArgs e)\n    {\n        if (ItemsSource is null || ItemsSource.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0, 1500);\n    }\n    #endregion\n\n    #region [ Methods - Private ]\n\n    private async Task ExportMockUp()\n    {\n        var result = await root.CaptureAsync();\n        using MemoryStream stream = new();\n\n        await result.CopyToAsync(stream);\n        File.WriteAllBytes(\"C:\\\\Users\\\\Strypper\\\\Desktop\\\\Bruh.png\", stream.ToArray());\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Iphone13MiniContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.Iphone13MiniContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\"\n    x:DataType=\"core:Iphone13MiniContentView\"\n    Loaded=\"root_Loaded\">\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"BackIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_circle_left_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <FontImageSource\n            x:Key=\"NextIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_arrow_circle_right_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <core:InnerFrameDimensionConverter x:Key=\"InnerFrameDimensionConverter\" />\n    </ContentView.Resources>\n\n    <Grid>\n        <Border\n            Padding=\"0\"\n            HeightRequest=\"{Binding Source={x:Reference Frame}, Path=Height, Converter={x:StaticResource InnerFrameDimensionConverter}, ConverterParameter='24'}\"\n            HorizontalOptions=\"Center\"\n            MinimumHeightRequest=\"400\"\n            StrokeShape=\"RoundRectangle 24\"\n            StrokeThickness=\"0\"\n            WidthRequest=\"{Binding Source={x:Reference Frame}, Path=Width, Converter={x:StaticResource InnerFrameDimensionConverter}, ConverterParameter='22'}\">\n            <Image\n                Aspect=\"AspectFit\"\n                BindingContext=\"{x:Reference root}\"\n                HorizontalOptions=\"CenterAndExpand\"\n                IsAnimationPlaying=\"True\"\n                MinimumHeightRequest=\"400\"\n                Source=\"{x:Binding SelectedMockUp,\n                                   Mode=OneWay}\"\n                VerticalOptions=\"CenterAndExpand\" />\n        </Border>\n        <Image\n            x:Name=\"Frame\"\n            Aspect=\"AspectFit\"\n            HorizontalOptions=\"Center\"\n            InputTransparent=\"True\"\n            MinimumHeightRequest=\"400\"\n            Source=\"apple_iphone_13_mini.png\"\n            VerticalOptions=\"Center\" />\n        <ImageButton\n            x:Name=\"BackButton\"\n            Margin=\"22,0,0,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"BackButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"Start\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource BackIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n        <ImageButton\n            x:Name=\"NextButton\"\n            Margin=\"0,0,22,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"NextButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"End\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource NextIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n    </Grid>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Iphone13MiniContentView.xaml.cs",
    "content": "\nnamespace MAUIsland.Core;\n\npublic partial class Iphone13MiniContentView : ContentView\n{\n\n    #region [ CTor ]\n\n    public Iphone13MiniContentView()\n    {\n        InitializeComponent();\n    }\n\n    #endregion\n\n    #region [ Bindable Properties ]\n\n\n    public static readonly BindableProperty SelectedMockUpProperty = BindableProperty.Create(\n    nameof(SelectedMockUp),\n    typeof(string),\n    typeof(Iphone13MiniContentView),\n    default(string),\n    BindingMode.TwoWay);\n\n    public string SelectedMockUp\n    {\n        get => (string)GetValue(SelectedMockUpProperty);\n        set => SetValue(SelectedMockUpProperty, value);\n    }\n\n    public static readonly BindableProperty ItemsSourceProperty = BindableProperty.Create(nameof(ItemsSource),\n                                                                                   typeof(ObservableCollection<string>),\n                                                                                   typeof(Iphone13MiniContentView),\n                                                                                   default(ObservableCollection<string>),\n                                                                                   BindingMode.OneWay);\n\n    public ObservableCollection<string> ItemsSource\n    {\n        get => (ObservableCollection<string>)GetValue(ItemsSourceProperty);\n        set => SetValue(ItemsSourceProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void root_Loaded(object sender, EventArgs e)\n    {\n\n        if (ItemsSource is null\n            ||\n           !ItemsSource.Any()\n            ||\n           ItemsSource.FirstOrDefault() is null)\n            return;\n\n        SelectedMockUp = ItemsSource.FirstOrDefault()!;\n    }\n\n    private void NextButton_Clicked(object sender, EventArgs e)\n    {\n        if (ItemsSource is null)\n            return;\n\n        var indexOfCurrent = ItemsSource.IndexOf(SelectedMockUp);\n        if (indexOfCurrent == ItemsSource.Count - 1)\n            return;\n\n        var nextIndex = indexOfCurrent + 1;\n        SelectedMockUp = ItemsSource[nextIndex];\n    }\n\n    private void BackButton_Clicked(object sender, EventArgs e)\n    {\n        if (ItemsSource is null)\n            return;\n\n        var indexOfCurrent = ItemsSource.IndexOf(SelectedMockUp);\n        if (indexOfCurrent <= 0)\n            return;\n\n        var prevIndex = indexOfCurrent - 1;\n        SelectedMockUp = ItemsSource[prevIndex];\n    }\n\n    private void PointerGestureRecognizer_PointerEntered(object sender, PointerEventArgs e)\n    {\n\n        if (ItemsSource is null || ItemsSource.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0.5, 1500);\n    }\n\n    private void PointerGestureRecognizer_PointerExited(object sender, PointerEventArgs e)\n    {\n        if (ItemsSource is null || ItemsSource.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0, 1500);\n    }\n    #endregion\n\n    #region [ Methods - Private ]\n\n    private async Task ExportMockUp()\n    {\n        var result = await root.CaptureAsync();\n        using MemoryStream stream = new();\n\n        await result.CopyToAsync(stream);\n        File.WriteAllBytes(\"C:\\\\Users\\\\Strypper\\\\Desktop\\\\Bruh.png\", stream.ToArray());\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Iphone15ContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.Iphone15ContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\"\n    x:DataType=\"core:Iphone15ContentView\"\n    Loaded=\"root_Loaded\">\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"BackIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_circle_left_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <FontImageSource\n            x:Key=\"NextIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_arrow_circle_right_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <core:InnerFrameDimensionConverter x:Key=\"InnerFrameDimensionConverter\" />\n    </ContentView.Resources>\n\n    <Grid>\n        <Border\n            Margin=\"0,0,0,0\"\n            BackgroundColor=\"Red\"\n            HeightRequest=\"{x:Binding Height,\n                                      Mode=OneWay,\n                                      Source={x:Reference Frame},\n                                      Converter={x:StaticResource InnerFrameDimensionConverter},\n                                      ConverterParameter='18'}\"\n            StrokeShape=\"RoundRectangle 30\"\n            StrokeThickness=\"0\"\n            WidthRequest=\"{x:Binding Width,\n                                     Mode=OneWay,\n                                     Source={x:Reference Frame},\n                                     Converter={x:StaticResource InnerFrameDimensionConverter},\n                                     ConverterParameter='8'}\">\n            <CollectionView\n                x:Name=\"MockUpCarousel\"\n                BindingContext=\"{x:Reference root}\"\n                HorizontalOptions=\"Fill\"\n                HorizontalScrollBarVisibility=\"Never\"\n                ItemsSource=\"{x:Binding ItemsSource,\n                                        Mode=OneWay}\"\n                ItemsUpdatingScrollMode=\"KeepItemsInView\"\n                SelectedItem=\"{x:Binding SelectedMockUp,\n                                         Mode=TwoWay}\"\n                SelectionMode=\"Single\"\n                VerticalOptions=\"Fill\">\n                <CollectionView.ItemsLayout>\n                    <LinearItemsLayout\n                        ItemSpacing=\"0\"\n                        Orientation=\"Horizontal\"\n                        SnapPointsAlignment=\"Center\"\n                        SnapPointsType=\"MandatorySingle\" />\n                </CollectionView.ItemsLayout>\n                <CollectionView.ItemTemplate>\n                    <DataTemplate x:DataType=\"{x:Type x:String}\">\n                        <Grid Padding=\"0\">\n                            <Image\n                                Aspect=\"AspectFill\"\n                                BackgroundColor=\"Red\"\n                                HorizontalOptions=\"CenterAndExpand\"\n                                IsAnimationPlaying=\"True\"\n                                Source=\"{x:Binding Mode=OneWay}\"\n                                VerticalOptions=\"CenterAndExpand\" />\n                        </Grid>\n                    </DataTemplate>\n                </CollectionView.ItemTemplate>\n            </CollectionView>\n        </Border>\n        <Image\n            x:Name=\"Frame\"\n            HorizontalOptions=\"Center\"\n            InputTransparent=\"True\"\n            Source=\"iphone_15.png\"\n            VerticalOptions=\"Center\" />\n        <ImageButton\n            x:Name=\"BackButton\"\n            Margin=\"22,0,0,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"BackButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"Start\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource BackIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n        <ImageButton\n            x:Name=\"NextButton\"\n            Margin=\"0,0,22,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"NextButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"End\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource NextIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n    </Grid>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Iphone15ContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class Iphone15ContentView : ContentView\n{\n\n    #region [ CTor ]\n\n    public Iphone15ContentView()\n    {\n        InitializeComponent();\n    }\n\n    #endregion\n\n    #region [ Properties ]\n\n    private string selectedMockUp;\n\n    public string SelectedMockUp\n    {\n        get { return selectedMockUp; }\n        set { selectedMockUp = value; OnPropertyChanged(\"SelectedMockUp\"); }\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n\n    public static readonly BindableProperty ItemsSourceProperty = BindableProperty.Create(nameof(ItemsSource),\n                                                                                   typeof(ObservableCollection<string>),\n                                                                                   typeof(Iphone15ContentView),\n                                                                                   default(ObservableCollection<string>),\n                                                                                   BindingMode.OneWay);\n    public ObservableCollection<string> ItemsSource\n    {\n        get => (ObservableCollection<string>)GetValue(ItemsSourceProperty);\n        set => SetValue(ItemsSourceProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void root_Loaded(object sender, EventArgs e)\n    {\n        if (ItemsSource is null\n            ||\n           !ItemsSource.Any()\n            ||\n           ItemsSource.FirstOrDefault() is null)\n            return;\n\n        SelectedMockUp = ItemsSource.FirstOrDefault()!;\n    }\n\n    private void NextButton_Clicked(object sender, EventArgs e)\n    {\n        var indexOfCurrent = ItemsSource.IndexOf(SelectedMockUp);\n        if (indexOfCurrent == ItemsSource.Count - 1)\n            return;\n\n        var nextIndex = indexOfCurrent + 1;\n        SelectedMockUp = ItemsSource[nextIndex];\n        MockUpCarousel.ScrollTo(nextIndex);\n    }\n\n    private void BackButton_Clicked(object sender, EventArgs e)\n    {\n        var indexOfCurrent = ItemsSource.IndexOf(SelectedMockUp);\n        if (indexOfCurrent <= 0)\n            return;\n\n        var prevIndex = indexOfCurrent - 1;\n        SelectedMockUp = ItemsSource[prevIndex];\n        MockUpCarousel.ScrollTo(prevIndex);\n    }\n    #endregion\n\n    #region [ Methods - Private ]\n\n\n    private void PointerGestureRecognizer_PointerEntered(object sender, PointerEventArgs e)\n    {\n\n        if (ItemsSource is null || ItemsSource.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0.5, 1500);\n    }\n\n    private void PointerGestureRecognizer_PointerExited(object sender, PointerEventArgs e)\n    {\n        if (ItemsSource is null || ItemsSource.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0, 1500);\n    }\n\n    private async Task ExportMockUp()\n    {\n        var result = await root.CaptureAsync();\n        using MemoryStream stream = new();\n\n        await result.CopyToAsync(stream);\n        File.WriteAllBytes(\"C:\\\\Users\\\\Strypper\\\\Desktop\\\\Bruh.png\", stream.ToArray());\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Models/AppleIphone15ProMaxModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\n\npublic partial class AppleIphone15ProMaxModel : BaseMockup\n{\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Models/BaseMockUp.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class BaseMockup : BaseModel\n{\n    [ObservableProperty]\n    string appName;\n\n    [ObservableProperty]\n    string authorGitHubUserName;\n\n    [ObservableProperty]\n    string authorAvatar;\n\n    [ObservableProperty]\n    string authorLinkUrl;\n\n    [ObservableProperty]\n    string gitHubRepoName;\n\n    [ObservableProperty]\n    int repoStarsCount;\n\n    [ObservableProperty]\n    string repoUrl;\n\n    [ObservableProperty]\n    ObservableCollection<string> mockups = new();\n\n    [ObservableProperty]\n    bool canMockupFrameChangeState = true;\n\n    [ObservableProperty]\n    string currentMockupFrameState;\n\n    [ObservableProperty]\n    ObservableCollection<string> platforms;\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Models/GooglePixel5Model.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class GooglePixel5Model : BaseMockup\n{\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Models/GooglePixel6ProModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class GooglePixel6ProModel : BaseMockup\n{\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Models/IPhone13MiniModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class IPhone13MiniModel : BaseMockup\n{\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Models/Iphone15Model.cs",
    "content": "﻿namespace MAUIsland.Core;\n\n\npublic partial class Iphone15Model : BaseMockup\n{\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Models/SamsungGalaxyS22UltraModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class SamsungGalaxyS22UltraModel : BaseMockup\n{\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/Models/SamsungS8Model.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class SamsungS8Model : BaseMockup\n{\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/SamsungGalaxyS22UltraContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.SamsungGalaxyS22UltraContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    x:Name=\"root\"\n    Loaded=\"root_Loaded\">\n\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"BackIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_circle_left_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <FontImageSource\n            x:Key=\"NextIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_arrow_circle_right_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <core:InnerFrameDimensionConverter x:Key=\"InnerFrameDimensionConverter\" />\n    </ContentView.Resources>\n\n\n    <Grid>\n        <Border\n            Padding=\"0\"\n            HeightRequest=\"{Binding Source={x:Reference Frame}, Path=Height, Converter={x:StaticResource InnerFrameDimensionConverter}, ConverterParameter='0'}\"\n            MinimumHeightRequest=\"400\"\n            StrokeShape=\"RoundRectangle 10\"\n            StrokeThickness=\"0\"\n            WidthRequest=\"{Binding Source={x:Reference Frame}, Path=Width, Converter={x:StaticResource InnerFrameDimensionConverter}, ConverterParameter='4'}\">\n            <Image\n                Aspect=\"AspectFit\"\n                BindingContext=\"{x:Reference root}\"\n                HorizontalOptions=\"CenterAndExpand\"\n                IsAnimationPlaying=\"True\"\n                MinimumHeightRequest=\"400\"\n                Source=\"{x:Binding SelectedMockUp,\n                                   Mode=OneWay}\"\n                VerticalOptions=\"CenterAndExpand\" />\n        </Border>\n        <Image\n            x:Name=\"Frame\"\n            Aspect=\"AspectFit\"\n            HorizontalOptions=\"Center\"\n            InputTransparent=\"True\"\n            MinimumHeightRequest=\"400\"\n            Source=\"samsung_galaxy_s22_ultra_2022.png\"\n            VerticalOptions=\"Center\" />\n        <ImageButton\n            x:Name=\"BackButton\"\n            Margin=\"22,0,0,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"BackButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"Start\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource BackIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n        <ImageButton\n            x:Name=\"NextButton\"\n            Margin=\"0,0,22,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"NextButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"End\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource NextIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n    </Grid>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/SamsungGalaxyS22UltraContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SamsungGalaxyS22UltraContentView : ContentView\n{\n    #region [ CTor ]\n\n    public SamsungGalaxyS22UltraContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n\n    public static readonly BindableProperty SelectedMockUpProperty = BindableProperty.Create(\n    nameof(SelectedMockUp),\n    typeof(string),\n    typeof(SamsungGalaxyS22UltraContentView),\n    default(string),\n    BindingMode.TwoWay);\n\n    public string SelectedMockUp\n    {\n        get => (string)GetValue(SelectedMockUpProperty);\n        set => SetValue(SelectedMockUpProperty, value);\n    }\n\n    public static readonly BindableProperty ItemsSourceProperty = BindableProperty.Create(nameof(ItemsSource),\n                                                                                   typeof(ObservableCollection<string>),\n                                                                                   typeof(SamsungGalaxyS22UltraContentView),\n                                                                                   default(ObservableCollection<string>),\n                                                                                   BindingMode.OneWay);\n    public ObservableCollection<string> ItemsSource\n    {\n        get => (ObservableCollection<string>)GetValue(ItemsSourceProperty);\n        set => SetValue(ItemsSourceProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void root_Loaded(object sender, EventArgs e)\n    {\n        if (ItemsSource is null\n            ||\n           !ItemsSource.Any()\n            ||\n           ItemsSource.FirstOrDefault() is null)\n            return;\n\n        SelectedMockUp = ItemsSource.FirstOrDefault()!;\n    }\n\n    private void NextButton_Clicked(object sender, EventArgs e)\n    {\n        if (ItemsSource is null)\n            return;\n\n        var indexOfCurrent = ItemsSource.IndexOf(SelectedMockUp);\n        if (indexOfCurrent == ItemsSource.Count - 1)\n            return;\n\n        var nextIndex = indexOfCurrent + 1;\n        SelectedMockUp = ItemsSource[nextIndex];\n    }\n\n    private void BackButton_Clicked(object sender, EventArgs e)\n    {\n        if (ItemsSource is null)\n            return;\n\n        var indexOfCurrent = ItemsSource.IndexOf(SelectedMockUp);\n        if (indexOfCurrent <= 0)\n            return;\n\n        var prevIndex = indexOfCurrent - 1;\n        SelectedMockUp = ItemsSource[prevIndex];\n    }\n\n    private void PointerGestureRecognizer_PointerEntered(object sender, PointerEventArgs e)\n    {\n\n        if (ItemsSource is null || ItemsSource.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0.5, 1500);\n    }\n\n    private void PointerGestureRecognizer_PointerExited(object sender, PointerEventArgs e)\n    {\n        if (ItemsSource is null || ItemsSource.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0, 1500);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/SamsungS8ContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.SamsungS8ContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\"\n    x:DataType=\"core:SamsungS8ContentView\"\n    Loaded=\"root_Loaded\">\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"BackIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_circle_left_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n\n        <FontImageSource\n            x:Key=\"NextIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_arrow_circle_right_24_regular}\"\n            Color=\"{x:Static core:AppColors.White}\" />\n    </ContentView.Resources>\n\n    <Grid HeightRequest=\"400\" WidthRequest=\"200\">\n        <Border\n            HeightRequest=\"315\"\n            StrokeShape=\"RoundRectangle 20\"\n            StrokeThickness=\"1\"\n            WidthRequest=\"160\">\n            <CollectionView\n                x:Name=\"MockUpCarousel\"\n                BackgroundColor=\"Black\"\n                BindingContext=\"{x:Reference root}\"\n                HorizontalOptions=\"FillAndExpand\"\n                HorizontalScrollBarVisibility=\"Never\"\n                InputTransparent=\"True\"\n                ItemsSource=\"{x:Binding ComponentData.Mockups,\n                                        Mode=OneWay}\"\n                ItemsUpdatingScrollMode=\"KeepItemsInView\"\n                SelectedItem=\"{x:Binding SelectedMockUp,\n                                         Mode=TwoWay}\"\n                SelectionMode=\"Single\"\n                VerticalOptions=\"Fill\">\n                <CollectionView.ItemsLayout>\n                    <LinearItemsLayout\n                        ItemSpacing=\"0\"\n                        Orientation=\"Horizontal\"\n                        SnapPointsAlignment=\"Center\"\n                        SnapPointsType=\"MandatorySingle\" />\n                </CollectionView.ItemsLayout>\n                <CollectionView.ItemTemplate>\n                    <DataTemplate x:DataType=\"{x:Type x:String}\">\n                        <Border\n                            Padding=\"0\"\n                            HeightRequest=\"315\"\n                            StrokeShape=\"RoundRectangle 20\"\n                            WidthRequest=\"160\">\n                            <Image\n                                Aspect=\"AspectFit\"\n                                HorizontalOptions=\"Center\"\n                                IsAnimationPlaying=\"True\"\n                                Source=\"{x:Binding Mode=OneWay}\"\n                                VerticalOptions=\"Center\" />\n                        </Border>\n                    </DataTemplate>\n                </CollectionView.ItemTemplate>\n            </CollectionView>\n        </Border>\n        <Image\n            HeightRequest=\"348\"\n            HorizontalOptions=\"Center\"\n            InputTransparent=\"True\"\n            Source=\"samsung_s8.png\"\n            VerticalOptions=\"Center\" />\n        <ImageButton\n            x:Name=\"BackButton\"\n            Margin=\"22,0,0,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"BackButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"Start\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource BackIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n        <ImageButton\n            x:Name=\"NextButton\"\n            Margin=\"0,0,22,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"2\"\n            Clicked=\"NextButton_Clicked\"\n            CornerRadius=\"20\"\n            HeightRequest=\"340\"\n            HorizontalOptions=\"End\"\n            Opacity=\"0\"\n            Source=\"{x:StaticResource NextIcon}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"40\">\n            <ImageButton.GestureRecognizers>\n                <PointerGestureRecognizer PointerEntered=\"PointerGestureRecognizer_PointerEntered\" PointerExited=\"PointerGestureRecognizer_PointerExited\" />\n            </ImageButton.GestureRecognizers>\n        </ImageButton>\n    </Grid>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/MockUps/SamsungS8ContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SamsungS8ContentView : ContentView\n{\n\n    #region [ CTor ]\n\n    public SamsungS8ContentView()\n    {\n        InitializeComponent();\n    }\n\n    #endregion\n\n    #region [ Properties ]\n\n    private string selectedMockUp;\n\n    public string SelectedMockUp\n    {\n        get { return selectedMockUp; }\n        set { selectedMockUp = value; OnPropertyChanged(\"SelectedMockUp\"); }\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(nameof(ComponentData),\n                                                                                   typeof(SamsungS8Model),\n                                                                                   typeof(Iphone15ContentView),\n                                                                                   default(SamsungS8Model),\n                                                                                   BindingMode.OneWay);\n    public SamsungS8Model ComponentData\n    {\n        get => (SamsungS8Model)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void root_Loaded(object sender, EventArgs e)\n    {\n        if (ComponentData is null\n            ||\n            ComponentData.Mockups is null\n            ||\n            !ComponentData.Mockups.Any()\n            ||\n            ComponentData.Mockups.FirstOrDefault() is null)\n            return;\n\n        SelectedMockUp = ComponentData.Mockups.FirstOrDefault();\n    }\n\n    private void NextButton_Clicked(object sender, EventArgs e)\n    {\n        var indexOfCurrent = ComponentData.Mockups.IndexOf(SelectedMockUp);\n        if (indexOfCurrent == ComponentData.Mockups.Count - 1)\n            return;\n\n        //if (indexOfCurrent >= ComponentData.Mockups.Count - 1)\n        //    indexOfCurrent = 0;\n\n        var nextIndex = indexOfCurrent + 1;\n        SelectedMockUp = ComponentData.Mockups[nextIndex];\n        MockUpCarousel.ScrollTo(nextIndex);\n    }\n\n    private void BackButton_Clicked(object sender, EventArgs e)\n    {\n        var indexOfCurrent = ComponentData.Mockups.IndexOf(SelectedMockUp);\n        if (indexOfCurrent == 0)\n            return;\n\n        var prevIndex = indexOfCurrent - 1;\n        SelectedMockUp = ComponentData.Mockups[prevIndex];\n        MockUpCarousel.ScrollTo(prevIndex);\n    }\n\n    private void PointerGestureRecognizer_PointerEntered(object sender, PointerEventArgs e)\n    {\n\n        if (ComponentData is null || ComponentData.Mockups.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0.5, 1500);\n    }\n\n    private void PointerGestureRecognizer_PointerExited(object sender, PointerEventArgs e)\n    {\n        if (ComponentData is null || ComponentData.Mockups.Count == 1)\n            return;\n\n        var button = (ImageButton)sender;\n        button.FadeTo(0, 1500);\n    }\n    #endregion\n\n    #region [ Methods - Private ]\n\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/RoundedEntry.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.RoundedEntry\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland.Core\"\n    x:Name=\"root\">\n    <Frame\n        x:Name=\"border\"\n        Padding=\"{app:EdgeInsets Horizontal={x:Static app:Dimensions.SpacingMd}}\"\n        BackgroundColor=\"{x:Static app:AppColors.White}\"\n        CornerRadius=\"{x:Static app:Dimensions.EntryCornerRadius}\"\n        MaximumHeightRequest=\"{x:Static app:Dimensions.EntryHeight}\"\n        MinimumHeightRequest=\"{x:Static app:Dimensions.EntryHeight}\"\n        Shadow=\"{x:Static app:Styles.Shadow1}\">\n        <StackLayout Orientation=\"Horizontal\" Spacing=\"0\">\n            <ImageButton\n                Margin=\"{app:EdgeInsets Vertical={x:Static app:Dimensions.SpacingMd}}\"\n                HeightRequest=\"28\"\n                Source=\"{Binding PrefixIcon, Source={x:Reference root}}\"\n                WidthRequest=\"28\" />\n            <Entry\n                Margin=\"{app:EdgeInsets Left={x:Static app:Dimensions.SpacingSm}}\"\n                Focused=\"Entry_Focused\"\n                FontSize=\"{x:Static app:Dimensions.FontSizeT5}\"\n                HorizontalOptions=\"FillAndExpand\"\n                IsPassword=\"{Binding IsPassword, Source={x:Reference root}}\"\n                Keyboard=\"{Binding Keyboard, Source={x:Reference root}}\"\n                Placeholder=\"{Binding Placeholder, Source={x:Reference root}}\"\n                PlaceholderColor=\"{x:Static app:AppColors.Grey20}\"\n                Text=\"{Binding Text, Source={x:Reference root}}\"\n                TextColor=\"{x:Static app:AppColors.Grey50}\"\n                Unfocused=\"Entry_Focused\"\n                VerticalOptions=\"Center\" />\n        </StackLayout>\n    </Frame>\n</ContentView>\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/RoundedEntry.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class RoundedEntry : ContentView\n{\n    public RoundedEntry()\n    {\n        InitializeComponent();\n    }\n\n    public static readonly BindableProperty PrefixIconProperty = BindableProperty.Create(\n        nameof(PrefixIcon),\n        typeof(ImageSource),\n        typeof(RoundedEntry),\n        default(ImageSource)\n        );\n    public ImageSource PrefixIcon\n    {\n        get => (ImageSource)GetValue(PrefixIconProperty);\n        set => SetValue(PrefixIconProperty, value);\n    }\n\n    public static readonly BindableProperty PlaceholderProperty = BindableProperty.Create(\n        nameof(Placeholder),\n        typeof(string),\n        typeof(RoundedEntry),\n        default(string)\n        );\n    public string Placeholder\n    {\n        get => (string)GetValue(PlaceholderProperty);\n        set => SetValue(PlaceholderProperty, value);\n    }\n\n    public static readonly BindableProperty TextProperty = BindableProperty.Create(\n        nameof(Text),\n        typeof(string),\n        typeof(RoundedEntry),\n        default(string),\n        BindingMode.TwoWay\n        );\n    public string Text\n    {\n        get => (string)GetValue(TextProperty);\n        set => SetValue(TextProperty, value);\n    }\n\n    public static readonly BindableProperty IsPasswordProperty = BindableProperty.Create(\n        nameof(IsPassword),\n        typeof(bool),\n        typeof(RoundedEntry),\n        default(bool)\n        );\n    public bool IsPassword\n    {\n        get => (bool)GetValue(IsPasswordProperty);\n        set => SetValue(IsPasswordProperty, value);\n    }\n\n    public static readonly BindableProperty KeyboardProperty = BindableProperty.Create(\n        nameof(Keyboard),\n        typeof(Keyboard),\n        typeof(RoundedEntry),\n        Keyboard.Default\n    );\n    public Keyboard Keyboard\n    {\n        get => (Keyboard)GetValue(KeyboardProperty);\n        set => SetValue(KeyboardProperty, value);\n    }\n\n    public static readonly BindableProperty IsValidProperty = BindableProperty.Create(\n        nameof(IsValid),\n        typeof(bool),\n        typeof(RoundedEntry),\n        true,\n        BindingMode.OneWay,\n        propertyChanged: HandleIsValidChanged\n    );\n    private static void HandleIsValidChanged(BindableObject bindable, object oldValue, object newValue)\n    {\n        if (bindable is not RoundedEntry entry) return;\n\n        entry.border.BorderColor = (bool)newValue ? AppColors.Green : AppColors.Red;\n    }\n\n    public bool IsValid\n    {\n        get => (bool)GetValue(IsValidProperty);\n        set => SetValue(IsValidProperty, value);\n    }\n\n    void Entry_Focused(System.Object sender, Microsoft.Maui.Controls.FocusEventArgs e)\n    {\n        if (e.IsFocused)\n        {\n            border.BorderColor = Colors.Transparent;\n            return;\n        }\n\n        border.BorderColor = IsValid ? AppColors.Green : AppColors.Red;\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/Showcases/Enums/PhoneModelEnum.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic enum PhoneModelEnum\n{\n    iPhone15, GalaxyS8\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/Showcases/MobileAppShowcaseContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.MobileAppShowcaseContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"root_Loaded\">\n\n    <Border\n        Padding=\"13,0,28,28\"\n        HorizontalOptions=\"Center\"\n        MaximumWidthRequest=\"320\"\n        StrokeShape=\"RoundRectangle 14\"\n        VerticalOptions=\"Center\">\n        <Grid\n            ColumnDefinitions=\"*, 65\"\n            RowDefinitions=\"*, 34\"\n            RowSpacing=\"50\">\n            <VerticalStackLayout toolkit:StateContainer.CanStateChange=\"{x:Binding CanStateChange, Mode=OneWay, Source={x:Reference root}}\" toolkit:StateContainer.CurrentState=\"{x:Binding CurrentState, Mode=OneWay, Source={x:Reference root}}\">\n                <toolkit:StateContainer.StateViews>\n                    <core:Iphone15ContentView\n                        toolkit:StateView.StateKey=\"iPhone15\"\n                        HeightRequest=\"400\"\n                        HorizontalOptions=\"Center\" />\n                    <core:SamsungS8ContentView\n                        toolkit:StateView.StateKey=\"SamsungS8\"\n                        HeightRequest=\"400\"\n                        HorizontalOptions=\"Center\" />\n                </toolkit:StateContainer.StateViews>\n            </VerticalStackLayout>\n            <Label\n                Margin=\"0,0,0,-22\"\n                FontAttributes=\"Bold\"\n                FontSize=\"18\"\n                HorizontalOptions=\"Center\"\n                Text=\"Radio Shopping App\"\n                VerticalOptions=\"End\" />\n            <HorizontalStackLayout\n                Grid.Row=\"1\"\n                Grid.ColumnSpan=\"2\"\n                HorizontalOptions=\"Center\"\n                Spacing=\"28\"\n                VerticalOptions=\"Center\">\n                <Image\n                    HeightRequest=\"28\"\n                    Source=\"windowslogo.png\"\n                    WidthRequest=\"28\" />\n                <Image\n                    HeightRequest=\"28\"\n                    Source=\"android_logo.png\"\n                    WidthRequest=\"28\" />\n                <Image\n                    HeightRequest=\"28\"\n                    Source=\"ios_logo.png\"\n                    WidthRequest=\"28\" />\n                <Image\n                    HeightRequest=\"28\"\n                    Source=\"tizen_logo.png\"\n                    WidthRequest=\"28\" />\n            </HorizontalStackLayout>\n            <VerticalStackLayout\n                Grid.Column=\"1\"\n                Margin=\"13,30,0,0\"\n                Spacing=\"28\"\n                VerticalOptions=\"Start\">\n                <Border StrokeShape=\"RoundRectangle 25\">\n                    <Image\n                        HeightRequest=\"48\"\n                        Source=\"member_tan.png\"\n                        WidthRequest=\"48\" />\n                </Border>\n                <VerticalStackLayout>\n                    <ImageButton\n                        CornerRadius=\"25\"\n                        HeightRequest=\"50\"\n                        Source=\"{x:StaticResource ShowcasesIcon}\"\n                        WidthRequest=\"50\" />\n                    <Label\n                        HorizontalOptions=\"Center\"\n                        Text=\"1.3k\"\n                        VerticalOptions=\"Center\" />\n                </VerticalStackLayout>\n                <VerticalStackLayout>\n                    <ImageButton\n                        Padding=\"0\"\n                        CornerRadius=\"25\"\n                        HeightRequest=\"50\"\n                        Source=\"dotnet_maui_logo.png\"\n                        ToolTipProperties.Text=\".NET MAUI\"\n                        WidthRequest=\"50\" />\n                    <Label\n                        HorizontalOptions=\"Center\"\n                        Text=\"Tech\"\n                        VerticalOptions=\"Center\" />\n                </VerticalStackLayout>\n                <VerticalStackLayout>\n                    <ImageButton\n                        x:Name=\"GitHubButton\"\n                        Padding=\"8\"\n                        CornerRadius=\"25\"\n                        HeightRequest=\"50\"\n                        Source=\"github_logo.png\"\n                        WidthRequest=\"50\" />\n                    <Label\n                        HorizontalOptions=\"Center\"\n                        Text=\"Source\"\n                        VerticalOptions=\"Center\" />\n                </VerticalStackLayout>\n            </VerticalStackLayout>\n        </Grid>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/Showcases/MobileAppShowcaseContentView.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class MobileAppShowcaseContentView : ContentView\n{\n    #region [ CTor ]\n    public MobileAppShowcaseContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Properties ]\n\n\n    private bool canStateChange = true;\n\n    public bool CanStateChange\n    {\n        get { return canStateChange; }\n        set { canStateChange = value; OnPropertyChanged(\"CanStateChange\"); }\n    }\n\n    private string currentState;\n\n    public string CurrentState\n    {\n        get { return currentState; }\n        set { currentState = value; OnPropertyChanged(\"CurrentState\"); }\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n\n\n    public static readonly BindableProperty PhoneModelProperty = BindableProperty.Create(nameof(PhoneModel),\n                                                                                   typeof(string),\n                                                                                   typeof(MobileAppShowcaseContentView),\n                                                                                   default(string),\n                                                                                   BindingMode.TwoWay,\n                                                                                   propertyChanged: PhoneModelChanged);\n\n    public string PhoneModel\n    {\n        get => (string)GetValue(PhoneModelProperty);\n        set => SetValue(PhoneModelProperty, value);\n    }\n\n    public static readonly BindableProperty ItemsSourceProperty = BindableProperty.Create(nameof(ItemsSource),\n                                                                                   typeof(ObservableCollection<MockupImage>),\n                                                                                   typeof(MobileAppShowcaseContentView),\n                                                                                   default(ObservableCollection<MockupImage>),\n                                                                                   BindingMode.TwoWay);\n    public ObservableCollection<MockupImage> ItemsSource\n    {\n        get => (ObservableCollection<MockupImage>)GetValue(ItemsSourceProperty);\n        set => SetValue(ItemsSourceProperty, value);\n    }\n    #endregion\n\n\n    #region [ Event Handlers ]\n\n    private void root_Loaded(object sender, EventArgs e)\n    {\n\n    }\n\n    private static void PhoneModelChanged(BindableObject bindable, object oldValue, object newValue)\n    {\n\n        var contentView = bindable as MobileAppShowcaseContentView;\n        if (contentView != null)\n        {\n            if (newValue is null || newValue.ToString() is null)\n                return;\n\n            string newModel = newValue.ToString();\n            contentView.HandlePhoneModelChanged(newModel);\n        }\n    }\n\n\n    private void HandlePhoneModelChanged(string newModel)\n        => CurrentState = newModel;\n    #endregion\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/Showcases/Models/MobileAppShowcaseModel.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class MobileAppShowcaseModel : BaseModel\n{\n    [ObservableProperty]\n    PhoneModelEnum phoneModel;\n\n    [ObservableProperty]\n    ObservableCollection<MockupImage> images;\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/Showcases/Models/MockupImage.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic partial class MockupImage : BaseModel\n{\n    [ObservableProperty]\n    string image;\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/SourceCodeExpander/LazyViewSourceCodeExpanderContent.cs",
    "content": "﻿using CommunityToolkit.Maui.Views;\n\nnamespace MAUIsland.Core;\n\npublic class LazyViewSourceCodeExpanderContent : LazyView<SourceCodeExpanderContent>\n{\n    #region [ Overrides ]\n\n    public override async ValueTask LoadViewAsync(CancellationToken token)\n    {\n        await base.LoadViewAsync(token);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/SourceCodeExpander/SourceCodeExpander.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.SourceCodeExpander\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core\"\n    xmlns:mct=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\"\n    x:DataType=\"core:SourceCodeExpander\"\n    Loaded=\"root_Loaded\">\n\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"CopyIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_copy_24_regular}\"\n            Color=\"{x:Static core:AppColors.Black}\" />\n    </ContentView.Resources>\n\n    <Frame\n        x:Name=\"ComponentFrame\"\n        BackgroundColor=\"{x:Static core:AppColors.Black}\"\n        Style=\"{x:StaticResource DocumentContentFrameStyle}\">\n        <toolkit:Expander\n            x:Name=\"CodeExpander\"\n            ExpandedChanged=\"CodeExpander_ExpandedChanged\"\n            IsExpanded=\"{x:Binding IsExpanding,\n                                   Source={x:Reference root},\n                                   Mode=TwoWay}\">\n            <toolkit:Expander.Header>\n                <Grid>\n                    <Label\n                        x:Name=\"CodeTypeLabel\"\n                        FontAttributes=\"Bold\"\n                        IsVisible=\"{x:Binding ShowCodeType,\n                                              Source={x:Reference root}}\"\n                        TextColor=\"#ce8557\"\n                        VerticalOptions=\"Center\" />\n                    <HorizontalStackLayout HorizontalOptions=\"End\" Spacing=\"5\">\n                        <Label\n                            BindingContext=\"{x:Reference root}\"\n                            Text=\"{x:Binding CopyStatus,\n                                             Mode=OneWay}\"\n                            TextColor=\"Black\"\n                            VerticalOptions=\"Center\" />\n                        <ImageButton\n                            Padding=\"5\"\n                            BackgroundColor=\"{x:StaticResource White}\"\n                            BorderColor=\"Black\"\n                            BorderWidth=\"2\"\n                            Clicked=\"Copy_Clicked\"\n                            CornerRadius=\"5\"\n                            HeightRequest=\"8\"\n                            HorizontalOptions=\"End\"\n                            Source=\"{x:StaticResource CopyIcon}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"8\">\n\n                            <ImageButton.Behaviors>\n                                <mct:AnimationBehavior EventName=\"Clicked\">\n                                    <mct:AnimationBehavior.AnimationType>\n                                        <core:SampleScaleAnimation Easing=\"{x:Static Easing.Linear}\" Length=\"100\" />\n                                    </mct:AnimationBehavior.AnimationType>\n                                </mct:AnimationBehavior>\n                            </ImageButton.Behaviors>\n                        </ImageButton>\n                    </HorizontalStackLayout>\n                </Grid>\n            </toolkit:Expander.Header>\n            <core:LazyViewSourceCodeExpanderContent BindingContext=\"{x:Binding OutputFormattedString, Source={x:Reference root}}\" />\n        </toolkit:Expander>\n    </Frame>\n</ContentView>\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/SourceCodeExpander/SourceCodeExpander.xaml.cs",
    "content": "using ColorCode;\nusing CommunityToolkit.Maui.Views;\nusing System.ComponentModel;\n\nnamespace MAUIsland.Core;\n\npublic partial class SourceCodeExpander : ContentView, INotifyPropertyChanged\n{\n    #region [ Fields ]\n\n    private IAppNavigator appNavigator;\n\n    private FormattedString outputFormattedString;\n    #endregion\n\n    #region [ CTor ]\n    public SourceCodeExpander()\n    {\n        InitializeComponent();\n\n\n        appNavigator = ServiceHelper.GetService<IAppNavigator>();\n    }\n    #endregion\n\n    #region [ Properties ]\n    public FormattedString OutputFormattedString\n    {\n        get { return outputFormattedString; }\n        set { outputFormattedString = value; OnPropertyChanged(\"OutputFormattedString\"); }\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty CodeProperty = BindableProperty.Create(nameof(Code),\n                                                                                           typeof(string),\n                                                                                           typeof(SourceCodeExpander),\n                                                                                           default(string));\n    public string Code\n    {\n        get => (string)GetValue(CodeProperty);\n        set => SetValue(CodeProperty, value);\n    }\n\n\n    public static readonly BindableProperty CopyStatusProperty = BindableProperty.Create(nameof(CopyStatus),\n                                                                                           typeof(string),\n                                                                                           typeof(SourceCodeExpander),\n                                                                                           default(string));\n    public string CopyStatus\n    {\n        get => (string)GetValue(CopyStatusProperty);\n        set => SetValue(CopyStatusProperty, value);\n    }\n\n\n    public static readonly BindableProperty CodeTypeProperty = BindableProperty.Create(nameof(CodeType),\n                                                                                       typeof(CodeType),\n                                                                                       typeof(SourceCodeExpander),\n                                                                                       CodeType.Xaml);\n    public CodeType CodeType\n    {\n        get => (CodeType)GetValue(CodeTypeProperty);\n        set => SetValue(CodeTypeProperty, value);\n    }\n\n    public static readonly BindableProperty ShowCodeTypeProperty = BindableProperty.Create(nameof(ShowCodeType),\n                                                                                   typeof(bool),\n                                                                                   typeof(SourceCodeExpander),\n                                                                                   true);\n    public bool ShowCodeType\n    {\n        get => (bool)GetValue(ShowCodeTypeProperty);\n        set => SetValue(ShowCodeTypeProperty, value);\n    }\n\n    public static readonly BindableProperty IsExpandingProperty = BindableProperty.Create(nameof(IsExpanding),\n                                                                               typeof(bool),\n                                                                               typeof(SourceCodeExpander),\n                                                                               false);\n    public bool IsExpanding\n    {\n        get => (bool)GetValue(IsExpandingProperty);\n        set => SetValue(IsExpandingProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private async void Copy_Clicked(object sender, EventArgs e)\n    {\n        await Clipboard.Default.SetTextAsync(Code);\n        CopyStatus = $\"Copied at: {DateTime.Now:HH:mm:ss}\";\n        await appNavigator.ShowSnackbarAsync(\"Code copied to clipboard\", null, null);\n    }\n    private void root_Loaded(object sender, EventArgs e)\n    {\n        CodeTypeLabel.Text = CodeType == CodeType.Xaml ? \"Xaml Code\" : \"C# Code\";\n        ApplyColor(Code, CodeType == CodeType.Xaml ? Languages.Xml : Languages.CSharp);\n        ComponentFrame.BackgroundColor = CodeType == CodeType.Xaml\n                                        ? Color.FromRgba(\"#ffffff\") // Hex color for XAML type\n                                        : Color.FromRgba(\"#2f2f2f\");\n        //CodeExpander.BackgroundColor = CodeType == CodeType.Xaml\n        //                            ? Color.FromHex(\"#ffffff\") // Hex color for XAML type\n        //                            : Color.FromHex(\"#00B1EE\");\n\n    }\n    private async void CodeExpander_ExpandedChanged(object sender, CommunityToolkit.Maui.Core.ExpandedChangedEventArgs e)\n    {\n        var expander = (Expander)sender;\n        if (expander.Content is not null)\n        {\n            var lazyView = (LazyViewSourceCodeExpanderContent)expander.Content;\n            if (expander.IsExpanded)\n            {\n                var cts = new CancellationTokenSource(TimeSpan.FromSeconds(5));\n                await lazyView.LoadViewAsync(cts.Token);\n            }\n        }\n    }\n\n    #endregion\n\n    #region [ Methods ]\n    private void ApplyColor(string code, ILanguage language)\n    {\n        var formatter = new FormattedStringFormatter();\n        var fs = new FormattedString();\n        formatter.FormatString(code, language, fs);\n\n        //Output = XamlServices.Save(fs);\n\n        OutputFormattedString = fs;\n    }\n    #endregion\n\n}\n\npublic partial class SourceCodeForSample : BaseModel\n{\n    [ObservableProperty]\n    string codeContent;\n\n    [ObservableProperty]\n    CodeType codeType;\n}\n\npublic enum CodeType\n{\n    CSharp, Xaml\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/SourceCodeExpander/SourceCodeExpanderContent.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Core.SourceCodeExpanderContent\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    x:Name=\"root\">\n    <VerticalStackLayout>\n        <Label FormattedText=\"{x:Binding Mode=OneWay}\" />\n    </VerticalStackLayout>\n</ContentView>"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/ContentViews/SourceCodeExpander/SourceCodeExpanderContent.xaml.cs",
    "content": "namespace MAUIsland.Core;\n\npublic partial class SourceCodeExpanderContent : ContentView\n{\n\n    #region [ CTor ]\n\n    public SourceCodeExpanderContent()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnBindingContextChanged()\n    {\n        base.OnBindingContextChanged();\n        BindingContext = (FormattedString)BindingContext;\n    }\n\n    #endregion\n\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/DesignSystem/AppColors.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic static class AppColors\n{\n    public static readonly Color MauilandPrimary = Color.FromArgb(\"#53b1fd\");\n\n    public static readonly Color BlackGrey = Color.FromArgb(\"#1f1f1f\");\n    // Tím\n    public static readonly Color Purple = Color.FromRgb(0x57, 0x5F, 0xCC);\n    // Hồng \n    public static readonly Color Pink = Color.FromRgb(0xFF, 0x5C, 0x9E);\n    // FFF8F3\n    public static readonly Color Secondary1 = Color.FromRgb(0xFF, 0xF8, 0xF3);\n    // Xanh lá nhạt\n    public static readonly Color Green = Color.FromRgb(0x68, 0xD1, 0xA2);\n    // Xanh dương nhạt\n    public static readonly Color LightBlue = Color.FromRgb(0x73, 0x9E, 0xF1);\n    // Vàng nhạt\n    public static readonly Color LightYellow = Color.FromRgb(0xFA, 0xBF, 0x48);\n\n    public static readonly Color White = Color.FromRgb(0xFF, 0xFF, 0xFF);\n\n    public static readonly Color BrColor = Color.FromRgb(0xF9, 0xFA, 0xFE);\n    public static readonly Color Background = Color.FromRgb(0xE5, 0xE5, 0xE5);\n\n    public static readonly Color Grey10 = Color.FromRgb(0xEB, 0xEC, 0xF4);\n    public static readonly Color Grey20 = Color.FromRgb(0xDA, 0xDB, 0xE7);\n    public static readonly Color Grey30 = Color.FromRgb(0xC7, 0xC7, 0xD7);\n    public static readonly Color Grey40 = Color.FromRgb(0x93, 0x93, 0xAB);\n    public static readonly Color Grey50 = Color.FromRgb(0x55, 0x56, 0x70);\n    public static readonly Color Grey60 = Color.FromRgb(0x59, 0x59, 0x59);\n    public static readonly Color Black = Color.FromRgb(0x26, 0x26, 0x26);\n\n    public static readonly Color Red = Color.FromRgb(0xD3, 0x28, 0x14);\n    public static readonly Color PopBackground = Black.WithAlpha(0.25f);\n\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/DesignSystem/AppConverters.cs",
    "content": "﻿using CommunityToolkit.Maui.Converters;\n\nnamespace MAUIsland.Core;\n\npublic static class AppConverters\n{\n    public static readonly RatioValueConverter Ratio = new RatioValueConverter();\n    public static readonly AllTrueValueConverter AllTrue = new AllTrueValueConverter();\n    public static readonly BoolToOpacityValueConverter BoolToOpacity = new BoolToOpacityValueConverter();\n    public static readonly BoolToOpacityValueConverter InversedBoolToOpacity = new BoolToOpacityValueConverter(true);\n\n    public static readonly AllBoolsToOpacityValueConverter AllBoolsToOpacity = new AllBoolsToOpacityValueConverter();\n    public static readonly AllBoolsToOpacityValueConverter InversedAllBoolsToOpacity = new AllBoolsToOpacityValueConverter(true);\n    public static readonly AnyFalseToOpacityValueConverter AnyFalseToOpacity = new AnyFalseToOpacityValueConverter();\n\n    public static readonly FirstItemValueConverter FirstItem = new FirstItemValueConverter();\n\n    public static readonly IsListNullOrEmptyConverter IsListNullOrEmpty = new IsListNullOrEmptyConverter();\n}\n\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/DesignSystem/Dimensions.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic static class Dimensions\n{\n    public static readonly double ImageRatioOfHeightOnWidth = 3.0 / 4;\n\n    public static readonly double SpacingXs = 4;\n    public static readonly double SpacingSm = 8;\n    public static readonly double SpacingMd = 16;\n    public static readonly double SpacingLg = 24;\n    public static readonly double SpacingXl = 32;\n    public static readonly double SpacingXxl = 48;\n\n    public static readonly double FontSizeT9 = 10;\n    public static readonly double FontSizeT8 = 11;\n    public static readonly double FontSizeT7 = 12;\n    public static readonly double FontSizeT6 = 14;\n    public static readonly double FontSizeT5 = 16;\n    public static readonly double FontSizeT4 = 24;\n    public static readonly double FontSizeT3 = 32;\n    public static readonly double FontSizeT2 = 40;\n    public static readonly double FontSizeT1 = 48;\n\n    public static readonly double LineHeightT1 = 48;\n    public static readonly double LineHeightT2 = 32;\n    public static readonly double LineHeightT3 = 28;\n    public static readonly double LineHeightT4 = 24;\n    public static readonly double LineHeightT5 = 24;\n    public static readonly double LineHeightT6 = 22;\n    public static readonly double LineHeightT7 = 22;\n    public static readonly double LineHeightT8 = 22;\n\n    public static readonly int ButtonCornerRadius = 16;\n    public static readonly int ButtonCornerRadiusXs = 12;\n    public static readonly double ButtonHeight = 48;\n    public static readonly double ButtonHeightSm = 46;\n    public static readonly double ButtonHeightXs = 36;\n    public static readonly double ButtonWidth = 252;\n\n    public static readonly double EntryHeight = 56;\n    public static readonly float EntryCornerRadius = 12;\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/DesignSystem/FontNames.cs",
    "content": "﻿namespace MAUIsland.Core;\n\npublic static class FontNames\n{\n    public const string FluentSystemIconsRegular = nameof(FluentSystemIconsRegular);\n\n    public const string SmoochSansRegular = nameof(SmoochSansRegular);\n    public const string SmoochSansBold = nameof(SmoochSansBold);\n\n    public const string InterBlack = nameof(InterBlack);\n    public const string InterBold = nameof(InterBold);\n    public const string InterExtraBold = nameof(InterExtraBold);\n    public const string InterExtraLight = nameof(InterExtraLight);\n    public const string InterLight = nameof(InterLight); \n    public const string InterMedium = nameof(InterMedium);\n    public const string InterRegular = nameof(InterRegular);\n    public const string InterSemiBold = nameof(InterSemiBold);\n    public const string InterThin = nameof(InterThin);\n}"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/DesignSystem/Styles.cs",
    "content": "﻿using Microsoft.Maui.Controls.Shapes;\n\nnamespace MAUIsland.Core;\n\n\npublic partial class Styles\n{\n    public readonly static Shadow Shadow1 = new Shadow()\n    {\n        Offset = new Point(0, 4),\n        Brush = new SolidColorBrush(AppColors.Purple),\n        Opacity = 0.1f\n    };\n    public readonly static Shadow Shadow2 = new Shadow()\n    {\n        Offset = new Point(0, 4),\n        Brush = new SolidColorBrush(AppColors.Purple),\n        Opacity = 0.1f\n    };\n\n    public static readonly Style BorderMd = CreateStyle<Border>()\n        .Set(Border.StrokeProperty, AppColors.Green)\n        .Set(Border.StrokeThicknessProperty, 1)\n        .Set(Border.StrokeShapeProperty, new RoundRectangle\n        {\n            CornerRadius = new CornerRadius(16)\n        });\n\n    static readonly Style ButtonBase = CreateStyle<Button>()\n        .Set(VisualElement.BackgroundColorProperty, AppColors.Purple)\n        .Set(Button.TextColorProperty, AppColors.Secondary1)\n        .Set(VisualElement.MaximumHeightRequestProperty, Dimensions.ButtonHeight)\n        .Set(VisualElement.MaximumWidthRequestProperty, Dimensions.ButtonWidth)\n        .Set(Button.CornerRadiusProperty, Dimensions.ButtonCornerRadius)\n        .Set(Button.FontSizeProperty, Dimensions.FontSizeT5)\n        .Set(Button.FontFamilyProperty, FontNames.SmoochSansRegular);\n\n    public static readonly Style ButtonPrimary = CreateStyle<Button>()\n        .BaseOn(ButtonBase)\n        .Set(VisualElement.BackgroundColorProperty, AppColors.Purple)\n        .Set(Button.TextColorProperty, AppColors.Secondary1)\n        .Set(VisualElement.MinimumHeightRequestProperty, Dimensions.ButtonHeight)\n        .Set(VisualElement.HeightRequestProperty, Dimensions.ButtonHeight)\n        .Set(VisualElement.WidthRequestProperty, Dimensions.ButtonWidth);\n\n    public static readonly Style ButtonSecondary = CreateStyle<Button>()\n        .BaseOn(ButtonPrimary)\n        .Set(VisualElement.BackgroundColorProperty, AppColors.Grey20)\n        .Set(Button.TextColorProperty, AppColors.Grey50);\n\n    public static readonly Style ButtonFlat = CreateStyle<Button>()\n        .BaseOn(ButtonPrimary)\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Button.TextColorProperty, AppColors.Grey50)\n        ;\n\n    public static readonly Style ButtonAccent = CreateStyle<Button>()\n        .BaseOn(ButtonPrimary)\n        .Set(VisualElement.BackgroundColorProperty, AppColors.Pink);\n\n    public static readonly Style ButtonPrimarySm = CreateStyle<Button>()\n        .BaseOn(ButtonBase)\n        .Set(VisualElement.HeightRequestProperty, Dimensions.ButtonHeightSm)\n        .Set(VisualElement.MaximumHeightRequestProperty, Dimensions.ButtonHeightSm)\n        .Set(VisualElement.MinimumHeightRequestProperty, Dimensions.ButtonHeightSm)\n        .Set(VisualElement.MaximumWidthRequestProperty, Dimensions.ButtonWidth)\n        .Set(Button.TextColorProperty, AppColors.White)\n        ;\n    public static readonly Style ButtonSecondarySm = CreateStyle<Button>()\n        .BaseOn(ButtonPrimarySm)\n        .Set(VisualElement.BackgroundColorProperty, AppColors.Grey20)\n        .Set(Button.TextColorProperty, AppColors.Grey50);\n\n    public static readonly Style ButtonFlatSm = CreateStyle<Button>()\n        .BaseOn(ButtonPrimarySm)\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Button.TextColorProperty, AppColors.Grey50)\n        ;\n    public static readonly Style ButtonAccentSm = CreateStyle<Button>()\n        .BaseOn(ButtonPrimarySm)\n        .Set(VisualElement.BackgroundColorProperty, AppColors.Pink)\n        ;\n\n    public static readonly Style ButtonPrimaryXs = CreateStyle<Button>()\n        .BaseOn(ButtonBase)\n        .Set(VisualElement.HeightRequestProperty, Dimensions.ButtonHeightXs)\n        .Set(VisualElement.MaximumHeightRequestProperty, Dimensions.ButtonHeightXs)\n        .Set(VisualElement.MinimumHeightRequestProperty, Dimensions.ButtonHeightXs)\n        .Set(VisualElement.MaximumWidthRequestProperty, Dimensions.ButtonWidth)\n        .Set(Button.CornerRadiusProperty, Dimensions.ButtonCornerRadiusXs)\n        .Set(Button.FontSizeProperty, Dimensions.FontSizeT6)\n        .Set(Button.TextColorProperty, AppColors.Grey50)\n        ;\n    public static readonly Style ButtonFlatXs = CreateStyle<Button>()\n        .BaseOn(ButtonPrimaryXs)\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Button.TextColorProperty, AppColors.Grey50)\n        ;\n    public static readonly Style ButtonAccentXs = CreateStyle<Button>()\n        .BaseOn(ButtonPrimaryXs)\n        .Set(VisualElement.BackgroundColorProperty, AppColors.Pink)\n        ;\n    public static readonly Style ButtonOutlinedXs = CreateStyle<Button>()\n        .BaseOn(ButtonPrimaryXs)\n        .Set(Button.FontSizeProperty, Dimensions.FontSizeT6)\n        .Set(Button.TextColorProperty, AppColors.Pink)\n        .Set(Button.BorderColorProperty, AppColors.Pink)\n        .Set(Button.BorderWidthProperty, 1)\n        .Set(Button.BackgroundColorProperty, Colors.Transparent)\n        ;\n\n}\n\npublic partial class Styles\n{\n    static readonly Color textPrimaryColor = AppColors.Black;\n\n    public static readonly Style Title1 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT1)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansBold)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT1)\n        ;\n\n    public static readonly Style Title2 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT2)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansBold)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT2)\n        ;\n\n    public static readonly Style Title3 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT3)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansBold)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT3)\n        ;\n\n    public static readonly Style Title4 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT4)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansBold)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT4)\n        ;\n\n    public static readonly Style Title5 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT5)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansBold)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT5)\n        ;\n\n    public static readonly Style Title6 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT6)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansBold)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT6)\n        ;\n\n    public static readonly Style Title7 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT7)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansBold)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT7)\n        ;\n\n    public static readonly Style Subtitle1 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT1)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansRegular)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT1)\n        ;\n\n    public static readonly Style Subtitle2 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT2)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansRegular)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT2)\n        ;\n\n    public static readonly Style Subtitle3 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT3)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansRegular)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT3)\n        ;\n\n    public static readonly Style Subtitle4 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT4)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansRegular)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT4)\n        ;\n\n    public static readonly Style Subtitle5 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT5)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansRegular)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT5)\n        ;\n\n    public static readonly Style Subtitle6 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT6)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansRegular)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT6)\n        ;\n\n    public static readonly Style Subtitle7 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT7)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansRegular)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT6)\n        ;\n\n    public static readonly Style Body1 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT5)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansRegular)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT3)\n        ;\n\n    public static readonly Style Body2 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT6)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansRegular)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT6)\n        ;\n\n    public static readonly Style Body3 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT7)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansRegular)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT7)\n        ;\n\n    public static readonly Style Body4 = CreateStyle<Label>()\n        .Set(VisualElement.BackgroundColorProperty, Colors.Transparent)\n        .Set(Label.TextColorProperty, textPrimaryColor)\n        .Set(Label.FontSizeProperty, Dimensions.FontSizeT8)\n        .Set(Label.FontFamilyProperty, FontNames.SmoochSansRegular)\n        //.Set(Label.LineHeightProperty, Dimensions.LineHeightT8)\n        ;\n}\n\n\npublic static partial class Styles\n{\n    public static Style CreateStyle<T>()\n    {\n        return new Style(typeof(T));\n    }\n\n    public static Style BaseOn(this Style style, Style basedOn)\n    {\n        style.BasedOn = basedOn;\n        return style;\n    }\n\n    public static Style Set(this Style style, BindableProperty property, object value)\n    {\n        style.Setters.Add(new Setter\n        {\n            Property = property,\n            Value = value\n        });\n        return style;\n    }\n\n    public static Style BindTrigger(this Style style, Binding binding, object value, params (BindableProperty p, object value)[] setters)\n    {\n        var dataTrigger = new DataTrigger(style.TargetType)\n        {\n            Binding = binding,\n            Value = value\n        };\n\n        for (int i = 0; i < setters.Length; i++)\n        {\n            dataTrigger.Setters.Add(new Setter\n            {\n                Property = setters[i].p,\n                Value = setters[i].value\n            });\n        }\n\n        style.Triggers.Add(dataTrigger);\n\n        return style;\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/Layouts/HorizontalWrapLayout.cs",
    "content": "﻿using Microsoft.Maui.Layouts;\n\nnamespace MAUIsland.Core;\n\npublic class HorizontalWrapLayout : StackLayout\n{\n    public HorizontalWrapLayout()\n    {\n    }\n\n    protected override ILayoutManager CreateLayoutManager()\n    {\n        return new HorizontalWrapLayoutManager(this);\n    }\n}\n"
  },
  {
    "path": "src/Core/MAUIsland.Core/Views/Layouts/HorizontalWrapLayoutManager.cs",
    "content": "﻿using Microsoft.Maui.Layouts;\nusing StackLayoutManager = Microsoft.Maui.Layouts.StackLayoutManager;\n\nnamespace MAUIsland.Core;\n\npublic class HorizontalWrapLayoutManager : StackLayoutManager\n{\n    HorizontalWrapLayout _layout;\n\n    public HorizontalWrapLayoutManager(HorizontalWrapLayout horizontalWrapLayout) : base(horizontalWrapLayout)\n    {\n        _layout = horizontalWrapLayout;\n    }\n\n    public override Size Measure(double widthConstraint, double heightConstraint)\n    {\n        var padding = _layout.Padding;\n\n        widthConstraint -= padding.HorizontalThickness;\n\n        var rows = new Dictionary<int, List<Size>>();\n        var currentRowIndex = 0;\n        var currentRow = new List<Size>();\n\n        rows.Add(currentRowIndex, currentRow);\n\n        foreach (var child in _layout)\n        {\n            if (child.Visibility == Visibility.Collapsed)\n            {\n                continue;\n            }\n\n            var childSize = child.Measure(double.PositiveInfinity, heightConstraint);\n            var childWidth = childSize.Width + (currentRow.Any() ? _layout.Spacing : 0);\n\n            var rowWidth = currentRow.Aggregate(0.0, (w, x) => w + x.Width);\n            if (rowWidth + childWidth > widthConstraint)\n            {\n                if (currentRow.Any())\n                {\n                    currentRowIndex++;\n                    currentRow = new List<Size>();\n                    rows.Add(currentRowIndex, currentRow);\n                }\n            }\n            else if (currentRow.Any())\n            {\n                currentRow.Add(new Size(_layout.Spacing, 0));\n            }\n\n            currentRow.Add(childSize);\n        }\n\n        var totalWidth = 0.0;\n        var totalHeight = 0.0;\n\n        if (rows.Any())\n        {\n            var rowWidths = rows.Select(x => x.Value.Aggregate(0.0, (result, item) => result + item.Width)).ToList();\n            var rowHeights = rows.Select(x => x.Value.Any() ? x.Value.Max(i => i.Height) : 0).ToList();\n\n            totalWidth = rowWidths.Any() ? rowWidths.Max() : 0;\n            totalHeight = rowHeights.Any() ? rowHeights.Sum() : 0;\n            if (rows.Keys.Count > 1)\n            {\n                totalHeight += _layout.Spacing * (rows.Keys.Count - 1);\n            }\n        }\n\n        totalWidth += padding.HorizontalThickness;\n        totalHeight += padding.VerticalThickness;\n\n        var finalHeight = ResolveConstraints(heightConstraint, Stack.Height, totalHeight, Stack.MinimumHeight, Stack.MaximumHeight);\n        var finalWidth = ResolveConstraints(widthConstraint, Stack.Width, totalWidth, Stack.MinimumWidth, Stack.MaximumWidth);\n\n        return new Size(finalWidth, finalHeight);\n    }\n\n    public override Size ArrangeChildren(Rect bounds)\n    {\n        var padding = Stack.Padding;\n        double top = padding.Top + bounds.Top;\n        double left = padding.Left + bounds.Left;\n\n        double currentRowTop = top;\n        double currentX = left;\n        double currentRowHeight = 0;\n\n        double maxStackWidth = currentX;\n\n        for (int n = 0; n < _layout.Count; n++)\n        {\n            var child = _layout[n];\n\n            if (child.Visibility == Visibility.Collapsed)\n            {\n                continue;\n            }\n\n            if (currentX + child.DesiredSize.Width > bounds.Right)\n            {\n                // Keep track of our maximum width so far\n                maxStackWidth = Math.Max(maxStackWidth, currentX);\n\n                // Move down to the next row\n                currentX = left;\n                currentRowTop += currentRowHeight + _layout.Spacing;\n                currentRowHeight = 0;\n            }\n\n            var destination = new Rect(currentX, currentRowTop, child.DesiredSize.Width, child.DesiredSize.Height);\n            child.Arrange(destination);\n\n            currentX += destination.Width + _layout.Spacing;\n            currentRowHeight = Math.Max(currentRowHeight, destination.Height);\n        }\n\n        var actual = new Size(maxStackWidth, currentRowTop + currentRowHeight);\n\n        return actual.AdjustForFill(bounds, Stack);\n    }\n\n}\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/Constants.cs",
    "content": "﻿namespace MAUIsland.GitHubFeatures;\n\npublic static class Constants\n{\n    public const string NotAvailable = \"N/A\";\n    public const string GetRepositorySuccess = \"GET_REPOSITORY_SUCCESS!\";\n    public const string GetRepositoryFailure = \"GET_REPOSITORY_FAILURE!\";\n    public const string GetAuthorSuccess = \"GET_AUTHOR_SUCCESS!\";\n    public const string GetAuthorFailure = \"GET_AUTHOR_FAILURE!\";\n    public const string GetGitHubIssueByNoSuccess = \"GET_GITHUB_ISSUE_BY_NO_SUCCESS!\";\n    public const string GetGitHubIssueByNoFailure = \"GET_GITHUB_ISSUE_BY_NO_FAILURE!\";\n    public const string GetGitHubIssuesSuccess = \"GET_GITHUB_ISSUES_SUCCESS!\";\n    public const string GetGitHubIssuesFailure = \"GET_GITHUB_ISSUES_FAILURE!\";\n    public const string GetGitHubIssuesByLabelsSuccess = \"GET_GITHUB_ISSUES_BY_LABELS_SUCCESS!\";\n    public const string GetGitHubIssuesByLabelsFailure = \"GET_GITHUB_ISSUES_BY_LABELS_FAILURE!\";\n\n}\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/FeatureSettings.cs",
    "content": "﻿namespace MAUIsland.GitHubFeatures;\n\npublic class FeatureSettings\n{\n    public string AccessToken { get; set; }\n}\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/GlobalUsings.cs",
    "content": "﻿global using CommunityToolkit.Mvvm.ComponentModel;\nglobal using Octokit;\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/IGitHubService.cs",
    "content": "﻿using OneOf;\n\nnamespace MAUIsland.GitHubFeatures;\n\npublic interface IGitHubService\n{\n    Task<OneOf<ServiceSuccess, SerivceError>> GetRepository(string owner, string repository);\n\n    Task<OneOf<ServiceSuccess, SerivceError>> GetLatestRelease(string owner, string repository);\n\n    Task<OneOf<ServiceSuccess, SerivceError>> GetAuthor(string owner);\n\n    Task<OneOf<ServiceSuccess, SerivceError>> GetGitHubIssues(string owner, string repository);\n\n    Task<OneOf<ServiceSuccess, SerivceError>> GetGitHubIssuesByLabels(string owner, string repository, IEnumerable<string> labels);\n\n    Task<OneOf<ServiceSuccess, SerivceError>> GetGitHubIssueByNo(string owner, string repository, int issueNumber);\n}\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/Implementations/OctokitGitHubClient.cs",
    "content": "﻿using OneOf;\n\nnamespace MAUIsland.GitHubFeatures;\n\npublic class OctokitGitHubClient : IGitHubService\n{\n    #region [ Fields ]\n\n    private readonly GitHubClient gitClient;\n    private readonly string httpHeader = \"totechs-corp\";\n    #endregion\n\n    #region [ CTor ]\n\n    public OctokitGitHubClient(FeatureSettings featureSettings)\n    {\n        this.gitClient = new GitHubClient(new ProductHeaderValue(httpHeader));\n\n\n        var tokenAuth = new Credentials(featureSettings.AccessToken);\n        this.gitClient.Credentials = tokenAuth;\n    }\n    #endregion\n\n    #region [ Methods ]\n\n    public async Task<OneOf<ServiceSuccess, SerivceError>> GetAuthor(string owner)\n    {\n        try\n        {\n            var author = await this.gitClient.User.Get(owner);\n            var attachedData = new GitHubAuthorModel\n            {\n                AvatarUrl = author.AvatarUrl,\n                Bio = author.Bio,\n                Blog = author.Blog,\n                Company = author.Company,\n                CreatedAt = author.CreatedAt.Date,\n                Email = author.Email,\n                Followers = author.Followers,\n                Following = author.Following,\n                Hireable = author.Hireable,\n                HtmlUrl = author.HtmlUrl,\n                OwnerId = author.Id,\n                Location = author.Location,\n                Login = author.Login,\n                Name = author.Name,\n                Url = author.Url\n            };\n            return new ServiceSuccess(Constants.GetAuthorSuccess,\n                                      Constants.NotAvailable,\n                                      nameof(OctokitGitHubClient),\n                                      nameof(GetAuthor),\n                                      Constants.NotAvailable,\n                                      DateTime.UtcNow,\n                                      attachedData);\n\n        }\n        catch (Exception e)\n        {\n            return new SerivceError(Constants.GetAuthorFailure,\n                                    Constants.NotAvailable,\n                                    nameof(OctokitGitHubClient),\n                                    nameof(GetAuthor),\n                                    Constants.NotAvailable,\n                                    e.Message,\n                                    DateTime.UtcNow);\n        }\n    }\n\n    public async Task<OneOf<ServiceSuccess, SerivceError>> GetLatestRelease(string owner, string repository)\n    {\n        try\n        {\n            var releases = await this.gitClient.Repository.Release.GetAll(owner, repository);\n            var latestRelease = releases.FirstOrDefault();\n\n            if (latestRelease is null)\n                return new ServiceSuccess(Constants.GetAuthorSuccess,\n                                          Constants.NotAvailable,\n                                          nameof(OctokitGitHubClient),\n                                          nameof(GetLatestRelease),\n                                          Constants.NotAvailable,\n                                          DateTime.UtcNow,\n                                          new List<GitHubRepositoryReleaseModel>());\n\n            var attachedData = new GitHubRepositoryReleaseModel()\n            {\n                Id = latestRelease.Id,\n                Url = latestRelease.Url,\n                HtmlUrl = latestRelease.HtmlUrl,\n                AssetsUrl = latestRelease.AssetsUrl,\n                UploadUrl = latestRelease.UploadUrl,\n                NodeId = latestRelease.NodeId,\n                TagName = latestRelease.TagName,\n                TargetCommitish = latestRelease.TargetCommitish,\n                Name = latestRelease.Name,\n                Body = latestRelease.Body,\n                Draft = latestRelease.Draft,\n                Author = latestRelease.Author is not null ? new GitHubAuthorModel()\n                {\n                    AvatarUrl = latestRelease.Author.AvatarUrl,\n                    HtmlUrl = latestRelease.Author.HtmlUrl,\n                    OwnerId = latestRelease.Author.Id,\n                    Login = latestRelease.Author.Login,\n                    Url = latestRelease.Author.Url\n                } : null,\n                Prerelease = latestRelease.Prerelease,\n                CreatedAt = latestRelease.CreatedAt,\n                PublishedAt = latestRelease.PublishedAt,\n                TarballUrl = latestRelease.TarballUrl,\n                ZipballUrl = latestRelease.ZipballUrl,\n                Assets = latestRelease.Assets,\n            };\n            return new ServiceSuccess(Constants.GetAuthorSuccess,\n                                      Constants.NotAvailable,\n                                      nameof(OctokitGitHubClient),\n                                      nameof(GetLatestRelease),\n                                      Constants.NotAvailable,\n                                      DateTime.UtcNow,\n                                      attachedData);\n        }\n        catch (Exception e)\n        {\n            return new SerivceError(Constants.GetAuthorFailure,\n                                    Constants.NotAvailable,\n                                    nameof(OctokitGitHubClient),\n                                    nameof(GetLatestRelease),\n                                    Constants.NotAvailable,\n                                    e.Message,\n                                    DateTime.UtcNow);\n        }\n    }\n\n    public async Task<OneOf<ServiceSuccess, SerivceError>> GetGitHubIssueByNo(string owner, string repository, int issueNumber)\n    {\n        try\n        {\n            var issue = await this.gitClient.Issue.Get(owner, repository, issueNumber);\n            var attachedData = new GitHubIssueModel\n            {\n                Id = issue.Id,\n                Url = issue.Url,\n                RepositoryUrl = issue.Url,\n                CommentsUrl = issue.CommentsUrl,\n                EventsUrl = issue.EventsUrl,\n                HtmlUrl = issue.HtmlUrl,\n                Number = issue.Number,\n                State = issue.State.StringValue,\n                Title = issue.Title,\n                Body = issue.Body,\n                User = new GitHubAuthorModel\n                {\n                    Id = issue.User.Id,\n                    Login = issue.User.Login,\n                    AvatarUrl = issue.User.AvatarUrl,\n                    Url = issue.User.Url,\n                    HtmlUrl = issue.User.HtmlUrl\n                },\n                Labels = issue.Labels.Any() ? issue.Labels.Select(label => new GitHubLabelModel\n                {\n                    Id = label.Id,\n                    Name = label.Name,\n                    Color = label.Color,\n                    Description = label.Description,\n                    IsDefault = label.Default\n                }).ToList() : new List<GitHubLabelModel>(),\n                Assignee = issue.Assignee is not null ? new GitHubAuthorModel\n                {\n                    Id = issue.Assignee.Id,\n                    Login = issue.Assignee.Login,\n                    AvatarUrl = issue.Assignee.AvatarUrl,\n                    Url = issue.Assignee.Url,\n                    HtmlUrl = issue.Assignee.HtmlUrl\n                } : null,\n                Assignees = issue.Assignees.Any() ? issue.Assignees.Select(assignee => new GitHubAuthorModel\n                {\n                    Id = assignee.Id,\n                    Login = assignee.Login,\n                    AvatarUrl = assignee.AvatarUrl,\n                    Url = assignee.Url,\n                    HtmlUrl = assignee.HtmlUrl\n                }).ToList() : new List<GitHubAuthorModel>(),\n                Milestone = issue.Milestone is not null ? new GitHubMilestoneModel\n                {\n                    Id = issue.Milestone.Id,\n                    Number = issue.Milestone.Number,\n                    Title = issue.Milestone.Title,\n                    Description = issue.Milestone.Description,\n                    State = issue.Milestone.State.StringValue,\n                    CreatedAt = issue.Milestone.CreatedAt,\n                    UpdatedAt = issue.Milestone.UpdatedAt,\n                    ClosedAt = issue.Milestone.ClosedAt\n                } : null,\n                Locked = issue.Locked,\n                Comments = issue.Comments,\n                ClosedAt = issue.ClosedAt,\n                CreatedAt = issue.CreatedAt,\n                UpdatedAt = issue.UpdatedAt,\n            };\n            return new ServiceSuccess(Constants.GetGitHubIssueByNoSuccess,\n                                      Constants.NotAvailable,\n                                      nameof(OctokitGitHubClient),\n                                      nameof(GetGitHubIssueByNo),\n                                      Constants.NotAvailable,\n                                      DateTime.UtcNow,\n                                      attachedData);\n        }\n        catch (Exception e)\n        {\n            return new SerivceError(Constants.GetGitHubIssueByNoFailure,\n                                    Constants.NotAvailable,\n                                    nameof(OctokitGitHubClient),\n                                    nameof(GetGitHubIssueByNo),\n                                    Constants.NotAvailable,\n                                    e.Message,\n                                    DateTime.UtcNow);\n        }\n    }\n\n    public async Task<OneOf<ServiceSuccess, SerivceError>> GetGitHubIssues(string owner, string repository)\n    {\n        try\n        {\n            var issues = await this.gitClient.Issue.GetAllForRepository(owner, repository);\n            var attachedData = issues.Select(issue => new GitHubIssueModel\n            {\n                Id = issue.Id,\n                Url = issue.Url,\n                RepositoryUrl = issue.Url,\n                CommentsUrl = issue.CommentsUrl,\n                EventsUrl = issue.EventsUrl,\n                HtmlUrl = issue.HtmlUrl,\n                Number = issue.Number,\n                State = issue.State.StringValue,\n                Title = issue.Title,\n                Body = issue.Body,\n                IsOpen = issue.ClosedAt is null ? true : false,\n                User = new GitHubAuthorModel\n                {\n                    Id = issue.User.Id,\n                    Login = issue.User.Login,\n                    AvatarUrl = issue.User.AvatarUrl,\n                    Url = issue.User.Url,\n                    HtmlUrl = issue.User.HtmlUrl\n                },\n                Labels = issue.Labels.Any() ? issue.Labels.Select(label => new GitHubLabelModel\n                {\n                    Id = label.Id,\n                    Name = label.Name,\n                    Color = label.Color,\n                    Description = label.Description,\n                    IsDefault = label.Default\n                }).ToList() : new List<GitHubLabelModel>(),\n                Assignee = issue.Assignee is not null ? new GitHubAuthorModel\n                {\n                    Id = issue.Assignee.Id,\n                    Login = issue.Assignee.Login,\n                    AvatarUrl = issue.Assignee.AvatarUrl,\n                    Url = issue.Assignee.Url,\n                    HtmlUrl = issue.Assignee.HtmlUrl\n                } : null,\n                Assignees = issue.Assignees.Any() ? issue.Assignees.Select(assignee => new GitHubAuthorModel\n                {\n                    Id = assignee.Id,\n                    Login = assignee.Login,\n                    AvatarUrl = assignee.AvatarUrl,\n                    Url = assignee.Url,\n                    HtmlUrl = assignee.HtmlUrl\n                }).ToList() : new List<GitHubAuthorModel>(),\n                Milestone = issue.Milestone is not null ? new GitHubMilestoneModel\n                {\n                    Id = issue.Milestone.Id,\n                    Number = issue.Milestone.Number,\n                    Title = issue.Milestone.Title,\n                    Description = issue.Milestone.Description,\n                    State = issue.Milestone.State.StringValue,\n                    CreatedAt = issue.Milestone.CreatedAt,\n                    UpdatedAt = issue.Milestone.UpdatedAt,\n                    ClosedAt = issue.Milestone.ClosedAt\n                } : null,\n                Locked = issue.Locked,\n                Comments = issue.Comments,\n                ClosedAt = issue.ClosedAt,\n                CreatedAt = issue.CreatedAt,\n                UpdatedAt = issue.UpdatedAt,\n            });\n            return new ServiceSuccess(Constants.GetGitHubIssuesSuccess,\n                                      Constants.NotAvailable,\n                                      nameof(OctokitGitHubClient),\n                                      nameof(GetGitHubIssues),\n                                      Constants.NotAvailable,\n                                      DateTime.UtcNow,\n                                      attachedData);\n        }\n        catch (Exception e)\n        {\n            return new SerivceError(Constants.GetGitHubIssuesFailure,\n                                    Constants.NotAvailable,\n                                    nameof(OctokitGitHubClient),\n                                    nameof(GetGitHubIssues),\n                                    Constants.NotAvailable,\n                                    e.Message,\n                                    DateTime.UtcNow);\n        }\n    }\n\n    public async Task<OneOf<ServiceSuccess, SerivceError>> GetGitHubIssuesByLabels(string owner, string repository, IEnumerable<string> labels)\n    {\n        try\n        {\n            var request = new RepositoryIssueRequest\n            {\n                State = ItemStateFilter.Open,\n            };\n            foreach (var label in labels)\n            {\n                request.Labels.Add(label);\n            }\n\n            var issues = await this.gitClient.Issue.GetAllForRepository(owner, repository, request);\n            var attachedData = issues.Select(issue => new GitHubIssueModel\n            {\n                Id = issue.Id,\n                Url = issue.Url,\n                RepositoryUrl = issue.Url,\n                CommentsUrl = issue.CommentsUrl,\n                EventsUrl = issue.EventsUrl,\n                HtmlUrl = issue.HtmlUrl,\n                Number = issue.Number,\n                State = issue.State.StringValue,\n                Title = issue.Title,\n                Body = issue.Body,\n                User = new GitHubAuthorModel\n                {\n                    Id = issue.User.Id,\n                    Name = issue.User.Name,\n                    Bio = issue.User.Bio,\n                    Email = issue.User.Email,\n                    Location = issue.User.Location,\n                    Login = issue.User.Login,\n                    AvatarUrl = issue.User.AvatarUrl,\n                    Url = issue.User.Url,\n                    HtmlUrl = issue.User.HtmlUrl\n                },\n                Labels = issue.Labels.Select(label => new GitHubLabelModel\n                {\n                    Id = label.Id,\n                    Name = label.Name,\n                    Color = label.Color,\n                    Description = label.Description,\n                    IsDefault = label.Default\n                }).ToList(),\n                Assignee = issue.Assignee is not null ? new GitHubAuthorModel\n                {\n                    Id = issue.Assignee.Id,\n                    Login = issue.Assignee.Login,\n                    AvatarUrl = issue.Assignee.AvatarUrl,\n                    Url = issue.Assignee.Url,\n                    HtmlUrl = issue.Assignee.HtmlUrl\n                } : null,\n                Assignees = issue.Assignees.Any() ? issue.Assignees.Select(assignee => new GitHubAuthorModel\n                {\n                    Id = assignee.Id,\n                    Login = assignee.Login,\n                    AvatarUrl = assignee.AvatarUrl,\n                    Url = assignee.Url,\n                    HtmlUrl = assignee.HtmlUrl\n                }).ToList() : new List<GitHubAuthorModel>(),\n                Milestone = issue.Milestone is not null ? new GitHubMilestoneModel\n                {\n                    Id = issue.Milestone.Id,\n                    Number = issue.Milestone.Number,\n                    Title = issue.Milestone.Title,\n                    Description = issue.Milestone.Description,\n                    State = issue.Milestone.State.StringValue,\n                    CreatedAt = issue.Milestone.CreatedAt,\n                    UpdatedAt = issue.Milestone.UpdatedAt,\n                    ClosedAt = issue.Milestone.ClosedAt\n                } : null,\n                Locked = issue.Locked,\n                IsOpen = issue.State == ItemState.Open ? true : false,\n                Comments = issue.Comments,\n                ClosedAt = issue.ClosedAt,\n                CreatedAt = issue.CreatedAt,\n                UpdatedAt = issue.UpdatedAt,\n            });\n            return new ServiceSuccess(Constants.GetGitHubIssuesByLabelsSuccess,\n                                      Constants.NotAvailable,\n                                      nameof(OctokitGitHubClient),\n                                      nameof(GetGitHubIssuesByLabels),\n                                      Constants.NotAvailable,\n                                      DateTime.UtcNow,\n                                      attachedData);\n        }\n        catch (Exception e)\n        {\n            return new SerivceError(Constants.GetGitHubIssuesByLabelsFailure,\n                                    Constants.NotAvailable,\n                                    nameof(OctokitGitHubClient),\n                                    nameof(GetGitHubIssuesByLabels),\n                                    Constants.NotAvailable,\n                                    e.Message,\n                                    DateTime.UtcNow);\n        }\n    }\n\n    public async Task<OneOf<ServiceSuccess, SerivceError>> GetRepository(string owner, string repository)\n    {\n        try\n        {\n            var repo = await this.gitClient.Repository.Get(owner, repository);\n            var attachedData = new GitHubRepositoryModel\n            {\n                GitHubId = repo.Id,\n                Name = repo.Name,\n                Url = repo.Url,\n                CloneUrl = repo.CloneUrl,\n                GitUrl = repo.GitUrl,\n                SvnUrl = repo.SvnUrl,\n                Description = repo.Description,\n                AuthorName = repo.Owner.Name,\n                AuthorUrl = repo.Owner.Url,\n                AuthorAvatarUrl = repo.Owner.AvatarUrl,\n                StarCount = repo.StargazersCount\n            };\n            return new ServiceSuccess(Constants.GetRepositorySuccess,\n                                      Constants.NotAvailable,\n                                      nameof(OctokitGitHubClient),\n                                      nameof(GetRepository),\n                                      Constants.NotAvailable,\n                                      DateTime.UtcNow,\n                                      attachedData);\n        }\n        catch (Exception e)\n        {\n            return new SerivceError(Constants.GetRepositoryFailure,\n                                    Constants.NotAvailable,\n                                    nameof(OctokitGitHubClient),\n                                    nameof(GetRepository),\n                                    Constants.NotAvailable,\n                                    e.Message,\n                                    DateTime.UtcNow);\n        }\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/MAUIsland.GitHubFeatures.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <TargetFramework>net8.0</TargetFramework>\n    <ImplicitUsings>enable</ImplicitUsings>\n    <Nullable>enable</Nullable>\n\t<UseRidGraph>false</UseRidGraph>\n  </PropertyGroup>\n\n  <ItemGroup>\n    <PackageReference Include=\"CommunityToolkit.Mvvm\" Version=\"8.3.2\" />\n    <PackageReference Include=\"Microsoft.Extensions.Configuration.Json\" Version=\"9.0.0\" />\n    <PackageReference Include=\"Microsoft.Extensions.DependencyInjection.Abstractions\" Version=\"9.0.0\" />\n    <PackageReference Include=\"Octokit\" Version=\"13.0.1\" />\n    <PackageReference Include=\"OneOf\" Version=\"3.0.271\" />\n  </ItemGroup>\n\n</Project>\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/Models/GitHubAuthorModel.cs",
    "content": "﻿namespace MAUIsland.GitHubFeatures;\n\npublic partial class GitHubAuthorModel : GitHubBaseModel\n{\n    [ObservableProperty]\n    string avatarUrl;\n\n    [ObservableProperty]\n    string bio;\n\n    [ObservableProperty]\n    string blog;\n\n    [ObservableProperty]\n    string company;\n\n    [ObservableProperty]\n    DateTime createdAt;\n\n    [ObservableProperty]\n    string email;\n\n    [ObservableProperty]\n    int followers;\n\n    [ObservableProperty]\n    int following;\n\n    [ObservableProperty]\n    bool? hireable;\n\n    [ObservableProperty]\n    string htmlUrl;\n\n    [ObservableProperty]\n    long ownerId;\n\n    [ObservableProperty]\n    string location;\n\n    [ObservableProperty]\n    string login;\n\n    [ObservableProperty]\n    string name;\n\n    [ObservableProperty]\n    string url;\n\n}\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/Models/GitHubBaseModel.cs",
    "content": "﻿namespace MAUIsland.GitHubFeatures;\n\npublic partial class GitHubBaseModel : ObservableObject\n{\n    [ObservableProperty]\n    long id;\n}\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/Models/GitHubIssueModel.cs",
    "content": "﻿namespace MAUIsland.GitHubFeatures;\n\npublic partial class GitHubIssueModel : GitHubBaseModel\n{\n    [ObservableProperty]\n    long id;\n\n    [ObservableProperty]\n    string url;\n\n    [ObservableProperty]\n    string repositoryUrl;\n\n    [ObservableProperty]\n    string labelsUrl;\n\n    [ObservableProperty]\n    string commentsUrl;\n\n    [ObservableProperty]\n    string eventsUrl;\n\n    [ObservableProperty]\n    string htmlUrl;\n\n    [ObservableProperty]\n    int number;\n\n    [ObservableProperty]\n    string state;\n\n    [ObservableProperty]\n    string title;\n\n    [ObservableProperty]\n    string body;\n\n    [ObservableProperty]\n    GitHubAuthorModel user;\n\n    [ObservableProperty]\n    IReadOnlyList<GitHubLabelModel> labels;\n\n    [ObservableProperty]\n    GitHubAuthorModel? assignee;\n\n    [ObservableProperty]\n    IReadOnlyList<GitHubAuthorModel> assignees;\n\n    [ObservableProperty]\n    GitHubMilestoneModel? milestone;\n\n    [ObservableProperty]\n    bool locked;\n\n    [ObservableProperty]\n    bool isOpen;\n\n    [ObservableProperty]\n    int comments;\n\n    [ObservableProperty]\n    DateTimeOffset? closedAt;\n\n    [ObservableProperty]\n    DateTimeOffset createdAt;\n\n    [ObservableProperty]\n    DateTimeOffset? updatedAt;\n}\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/Models/GitHubLabelModel.cs",
    "content": "﻿namespace MAUIsland.GitHubFeatures;\n\npublic partial class GitHubLabelModel : GitHubBaseModel\n{\n    [ObservableProperty]\n    long id;\n\n    [ObservableProperty]\n    string url;\n\n    [ObservableProperty]\n    string name;\n\n    [ObservableProperty]\n    string nodeId;\n\n    [ObservableProperty]\n    string color;\n\n    [ObservableProperty]\n    string description;\n\n    [ObservableProperty]\n    bool isDefault;\n}\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/Models/GitHubMilestoneModel.cs",
    "content": "﻿namespace MAUIsland.GitHubFeatures;\n\npublic partial class GitHubMilestoneModel : GitHubBaseModel\n{\n\n    [ObservableProperty]\n    string url;\n\n    [ObservableProperty]\n    string htmlUrl;\n\n    [ObservableProperty]\n    long id;\n\n    [ObservableProperty]\n    int number;\n\n    [ObservableProperty]\n    string nodeId;\n\n    [ObservableProperty]\n    string state;\n\n    [ObservableProperty]\n    string title;\n\n    [ObservableProperty]\n    string description;\n\n    [ObservableProperty]\n    GitHubAuthorModel creator;\n\n    [ObservableProperty]\n    int openIssues;\n\n    [ObservableProperty]\n    int closedIssues;\n\n    [ObservableProperty]\n    DateTimeOffset createdAt;\n\n    [ObservableProperty]\n    DateTimeOffset? dueOn;\n\n    [ObservableProperty]\n    DateTimeOffset? closedAt;\n\n    [ObservableProperty]\n    DateTimeOffset? updatedAt;\n}\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/Models/GitHubRepositoryModel.cs",
    "content": "﻿namespace MAUIsland.GitHubFeatures;\n\npublic partial class GitHubRepositoryModel : GitHubBaseModel\n{\n\n    [ObservableProperty]\n    long gitHubId;\n\n    [ObservableProperty]\n    string name;\n\n    [ObservableProperty]\n    string url;\n\n    [ObservableProperty]\n    string cloneUrl;\n\n    [ObservableProperty]\n    string gitUrl;\n\n    [ObservableProperty]\n    string svnUrl;\n\n    [ObservableProperty]\n    string description;\n\n    [ObservableProperty]\n    int starCount;\n\n    [ObservableProperty]\n    string authorName;\n\n    [ObservableProperty]\n    string authorUrl;\n\n    [ObservableProperty]\n    string authorAvatarUrl;\n}\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/Models/GitHubRepositoryReleaseModel.cs",
    "content": "﻿namespace MAUIsland.GitHubFeatures;\n\npublic partial class GitHubRepositoryReleaseModel : GitHubBaseModel\n{\n    [ObservableProperty]\n    string url;\n\n    [ObservableProperty]\n    string htmlUrl;\n\n    [ObservableProperty]\n    string assetsUrl;\n\n    [ObservableProperty]\n    string uploadUrl;\n\n    [ObservableProperty]\n    string nodeId;\n\n    [ObservableProperty]\n    string tagName;\n\n    [ObservableProperty]\n    string targetCommitish;\n\n    [ObservableProperty]\n    string name;\n\n    [ObservableProperty]\n    string body;\n\n    [ObservableProperty]\n    bool draft;\n\n    [ObservableProperty]\n    bool prerelease;\n\n    [ObservableProperty]\n    DateTimeOffset createdAt;\n\n    [ObservableProperty]\n    DateTimeOffset? publishedAt;\n\n    [ObservableProperty]\n    GitHubAuthorModel? author;\n\n    [ObservableProperty]\n    string tarballUrl;\n\n    [ObservableProperty]\n    string zipballUrl;\n\n    [ObservableProperty]\n    IReadOnlyList<ReleaseAsset> assets;\n}\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/Models/ServiceError.cs",
    "content": "﻿namespace MAUIsland.GitHubFeatures;\n\npublic record SerivceError(string ErrorMessage = \"\",\n                           string ErrorCode = \"\",\n                           string ServiceName = \"\",\n                           string MethodName = \"\",\n                           string ConsumerName = \"\",\n                           string? ErrorDetail = null,\n                           DateTime EventOccuredAt = default!);\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/Models/ServiceSuccess.cs",
    "content": "﻿namespace MAUIsland.GitHubFeatures;\n\npublic record ServiceSuccess(string SuccessMessage = \"\",\n                             string SuccessCode = \"\",\n                             string ServiceName = \"\",\n                             string MethodName = \"\",\n                             string ConsumerName = \"\",\n                             DateTime EventOccuredAt = default!,\n                             object? AttachedData = default!);"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures/ServiceExtension.cs",
    "content": "﻿using Microsoft.Extensions.DependencyInjection;\n\nnamespace MAUIsland.GitHubFeatures;\n\npublic static class ServiceExtension\n{\n    public static void RegisterGitHubFeatures(this IServiceCollection services, string accessToken)\n    {\n        services.AddSingleton(new FeatureSettings()\n        {\n            AccessToken = accessToken,\n        });\n        services.AddTransient<IGitHubService, OctokitGitHubClient>();\n    }\n}"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures.IntegrationTests/GitHubServiceIntegrationTest.cs",
    "content": "using System.Reflection;\n\nnamespace MAUIsland.GitHubFeatures.IntegrationTests;\n\npublic class GitHubServiceIntegrationTest\n{\n    #region [ Fields ]\n\n    private readonly string httpHeader = \"Totechs Corps\";\n    private readonly string repositoryName = \"IntegrationTests\";\n    private readonly string owner = \"Strypper\";\n\n\n    private readonly IServiceProvider serviceProvider;\n    #endregion\n\n    #region [ CTor ]\n\n    public GitHubServiceIntegrationTest()\n    {\n        var services = new ServiceCollection();\n        services.RegisterGitHubFeatures();\n        serviceProvider = services.BuildServiceProvider();\n    }\n    #endregion\n\n    #region [ Methods ]\n\n    [Fact]\n    public async Task GetRepositoryTest()\n    {\n        var gitHubService = serviceProvider!.GetRequiredService<IGitHubService>();\n        var result = await gitHubService.GetRepository(owner, repositoryName);\n\n        //Assert\n        Assert.IsType<ServiceSuccess>(result.AsT0);\n        Assert.NotEmpty(result.AsT0.SuccessCode);\n        Assert.NotEmpty(result.AsT0.SuccessMessage);\n        Assert.NotEmpty(result.AsT0.ServiceName);\n        Assert.NotEmpty(result.AsT0.MethodName);\n        Assert.NotEmpty(result.AsT0.ConsumerName);\n        Assert.NotEqual(DateTime.MinValue, result.AsT0.EventOccuredAt);\n        Assert.NotNull(result.AsT0.AttachedData);\n\n        var repositoryModel = result.AsT0.AttachedData as GitHubRepositoryModel;\n        Assert.NotNull(repositoryModel);\n        Assert.NotEqual(0, repositoryModel.GitHubId);\n        Assert.NotNull(repositoryModel.Name);\n        Assert.NotNull(repositoryModel.Url);\n    }\n\n    [Fact]\n    public async Task GetLatestReleaseTest()\n    {\n        var gitHubService = serviceProvider!.GetRequiredService<IGitHubService>();\n        var result = await gitHubService.GetLatestRelease(owner, repositoryName);\n\n        //Assert\n        Assert.IsType<ServiceSuccess>(result.AsT0);\n        Assert.NotEmpty(result.AsT0.SuccessCode);\n        Assert.NotEmpty(result.AsT0.SuccessMessage);\n        Assert.NotEmpty(result.AsT0.ServiceName);\n        Assert.NotEmpty(result.AsT0.MethodName);\n        Assert.NotEmpty(result.AsT0.ConsumerName);\n        Assert.NotEqual(DateTime.MinValue, result.AsT0.EventOccuredAt);\n        Assert.NotNull(result.AsT0.AttachedData);\n\n        var repositoryModel = result.AsT0.AttachedData as GitHubRepositoryReleaseModel;\n        Assert.NotNull(repositoryModel);\n        Assert.NotEqual(0, repositoryModel.Id);\n        Assert.NotNull(repositoryModel.Name);\n        Assert.NotNull(repositoryModel.Url);\n        Assert.NotNull(repositoryModel.Body);\n    }\n\n    [Fact]\n    public async Task GetAuthorTest()\n    {\n        var gitHubService = serviceProvider!.GetRequiredService<IGitHubService>();\n        var result = await gitHubService.GetAuthor(owner);\n\n        //Assert\n        Assert.IsType<ServiceSuccess>(result.AsT0);\n        Assert.NotEmpty(result.AsT0.SuccessCode);\n        Assert.NotEmpty(result.AsT0.SuccessMessage);\n        Assert.NotEmpty(result.AsT0.ServiceName);\n        Assert.NotEmpty(result.AsT0.MethodName);\n        Assert.NotEmpty(result.AsT0.ConsumerName);\n        Assert.NotEqual(DateTime.MinValue, result.AsT0.EventOccuredAt);\n        Assert.NotNull(result.AsT0.AttachedData);\n\n        var authorModel = result.AsT0.AttachedData as GitHubAuthorModel;\n        Assert.NotNull(authorModel);\n        Assert.NotNull(authorModel.Name);\n        Assert.NotNull(authorModel.Url);\n        Assert.NotNull(authorModel.AvatarUrl);\n        Assert.NotNull(authorModel.Bio);\n        Assert.NotNull(authorModel.Company);\n        Assert.NotNull(authorModel.Login);\n    }\n\n    [Fact]\n    public async Task GetGitHubIssuesTest()\n    {\n        var gitHubService = serviceProvider!.GetRequiredService<IGitHubService>();\n        var result = await gitHubService.GetGitHubIssues(owner, repositoryName);\n\n        //Assert\n        Assert.IsType<ServiceSuccess>(result.AsT0);\n        Assert.NotEmpty(result.AsT0.SuccessCode);\n        Assert.NotEmpty(result.AsT0.SuccessMessage);\n        Assert.NotEmpty(result.AsT0.ServiceName);\n        Assert.NotEmpty(result.AsT0.MethodName);\n        Assert.NotEmpty(result.AsT0.ConsumerName);\n        Assert.NotEqual(DateTime.MinValue, result.AsT0.EventOccuredAt);\n        Assert.NotNull(result.AsT0.AttachedData);\n\n        var githubIssuesModel = result.AsT0.AttachedData as IEnumerable<GitHubIssueModel>;\n        Assert.NotNull(githubIssuesModel);\n        if (githubIssuesModel.Any())\n        {\n            foreach (var issue in githubIssuesModel)\n            {\n                Assert.True(issue.Number > 0);\n                Assert.NotNull(issue.Title);\n                Assert.NotNull(issue.Url);\n                Assert.NotNull(issue.State);\n                Assert.NotNull(issue.User);\n                Assert.NotEqual(DateTimeOffset.MinValue, issue.CreatedAt);\n            }\n        }\n    }\n\n    [Fact]\n    public async Task GetGitHubIssuesByLabelsTest()\n    {\n        string issueLabel = \"bug\";\n        string questionLabel = \"question\";\n        List<string> labelsList = new() { issueLabel, questionLabel };\n\n        var gitHubService = serviceProvider!.GetRequiredService<IGitHubService>();\n        var result = await gitHubService.GetGitHubIssuesByLabels(owner, repositoryName, labelsList);\n\n        //Assert\n        Assert.IsType<ServiceSuccess>(result.AsT0);\n        Assert.NotEmpty(result.AsT0.SuccessCode);\n        Assert.NotEmpty(result.AsT0.SuccessMessage);\n        Assert.NotEmpty(result.AsT0.ServiceName);\n        Assert.NotEmpty(result.AsT0.MethodName);\n        Assert.NotEmpty(result.AsT0.ConsumerName);\n        Assert.NotEqual(DateTime.MinValue, result.AsT0.EventOccuredAt);\n        Assert.NotNull(result.AsT0.AttachedData);\n\n        var githubIssuesModel = result.AsT0.AttachedData as IEnumerable<GitHubIssueModel>;\n        Assert.NotNull(githubIssuesModel);\n        if (githubIssuesModel.Any())\n        {\n            foreach (var issue in githubIssuesModel)\n            {\n                Assert.True(issue.Number > 0);\n                Assert.NotNull(issue.Title);\n                Assert.NotNull(issue.Url);\n                Assert.NotNull(issue.State);\n                Assert.NotNull(issue.User);\n                Assert.NotEqual(DateTimeOffset.MinValue, issue.CreatedAt);\n            }\n        }\n    }\n\n    [Fact]\n    public async Task GetGitHubIssueByNoTest()\n    {\n        int issueNo = 1;\n\n        var gitHubService = serviceProvider!.GetRequiredService<IGitHubService>();\n        var result = await gitHubService.GetGitHubIssueByNo(owner, repositoryName, issueNo);\n\n        //Assert\n        Assert.IsType<ServiceSuccess>(result.AsT0);\n        Assert.NotEmpty(result.AsT0.SuccessCode);\n        Assert.NotEmpty(result.AsT0.SuccessMessage);\n        Assert.NotEmpty(result.AsT0.ServiceName);\n        Assert.NotEmpty(result.AsT0.MethodName);\n        Assert.NotEmpty(result.AsT0.ConsumerName);\n        Assert.NotEqual(DateTime.MinValue, result.AsT0.EventOccuredAt);\n        Assert.NotNull(result.AsT0.AttachedData);\n\n        var githubIssueModel = result.AsT0.AttachedData as GitHubIssueModel;\n        Assert.NotNull(githubIssueModel);\n        Assert.True(githubIssueModel.Number > 0);\n        Assert.NotNull(githubIssueModel.Title);\n        Assert.NotNull(githubIssueModel.Url);\n        Assert.NotNull(githubIssueModel.State);\n        Assert.NotNull(githubIssueModel.User);\n        Assert.NotEqual(DateTimeOffset.MinValue, githubIssueModel.CreatedAt);\n\n    }\n\n    #endregion\n\n    #region [ Private Methods ]\n    private void AssertStringPropertyNotNullOrEmpty<T>(T model)\n    {\n        PropertyInfo[] properties = typeof(T).GetProperties();\n\n        foreach (var property in properties)\n        {\n            if (property.PropertyType == typeof(string))\n            {\n                if (IsNullable(property.PropertyType))\n                    continue;\n\n                object? valueObj = property.GetValue(model);\n                string value = valueObj is not null ? valueObj.ToString() : null;\n\n                Assert.False(string.IsNullOrEmpty(value), $\"Property {property.Name} must not be null or empty.\");\n            }\n        }\n    }\n\n    private bool IsNullable(Type type)\n    {\n        return Nullable.GetUnderlyingType(type) != null;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures.IntegrationTests/GlobalUsings.cs",
    "content": "﻿global using Microsoft.Extensions.DependencyInjection;\nglobal using Xunit;\n"
  },
  {
    "path": "src/Features/GitHubFeatures/MAUIsland.GitHubFeatures.IntegrationTests/MAUIsland.GitHubFeatures.IntegrationTests.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <TargetFramework>net8.0</TargetFramework>\n    <ImplicitUsings>enable</ImplicitUsings>\n    <Nullable>enable</Nullable>\n\n    <IsPackable>false</IsPackable>\n    <IsTestProject>true</IsTestProject>\n\t<UseRidGraph>true</UseRidGraph>\n  </PropertyGroup>\n\n  <ItemGroup>\n    <PackageReference Include=\"coverlet.collector\" Version=\"6.0.2\">\n      <PrivateAssets>all</PrivateAssets>\n      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>\n    </PackageReference>\n    <PackageReference Include=\"Microsoft.Extensions.DependencyInjection\" Version=\"8.0.0\" />\n    <PackageReference Include=\"Microsoft.NET.Test.Sdk\" Version=\"17.10.0\" />\n    <PackageReference Include=\"OneOf\" Version=\"3.0.271\" />\n    <PackageReference Include=\"xunit\" Version=\"2.9.0\" />\n    <PackageReference Include=\"xunit.runner.visualstudio\" Version=\"2.8.2\">\n      <PrivateAssets>all</PrivateAssets>\n      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>\n    </PackageReference>\n  </ItemGroup>\n\n  <ItemGroup>\n    <ProjectReference Include=\"..\\MAUIsland.GitHubFeatures\\MAUIsland.GitHubFeatures.csproj\" />\n  </ItemGroup>\n\n  <ItemGroup>\n    <Using Include=\"Xunit\" />\n  </ItemGroup>\n\n</Project>\n"
  },
  {
    "path": "src/Features/LocalDbFeatures/GitHub/MAUIsland.Features.LocalDbFeatures.GitHub/Implementations/GitHubIssueLocalDbService.cs",
    "content": "﻿namespace MAUIsland.Features.LocalDbFeatures.GitHub;\n\npublic class GitHubIssueLocalDbService : SQLitePCLRawService<GitHubIssueLocalDbModel>, IGitHubIssueLocalDbService\n{\n    #region [ CTor ]\n\n    public GitHubIssueLocalDbService(DatabaseSettings settings) : base(settings)\n    {\n\n    }\n\n\n    #endregion\n\n    #region [ Methods - Get Single ]\n    public async Task<GitHubIssueLocalDbModel?> GetByIssueUrlAsync(string issueUrl)\n    {\n        try\n        {\n            if (string.IsNullOrEmpty(issueUrl))\n            {\n                return default;\n            }\n\n            return await _connection.Table<GitHubIssueLocalDbModel>().FirstOrDefaultAsync(x => x.IssueLinkUrl == issueUrl);\n        }\n        catch (Exception ex)\n        {\n            throw;\n        }\n    }\n    #endregion\n\n    #region [ Methods - Get List ]\n    public async Task<IEnumerable<GitHubIssueLocalDbModel>?> GetByControlNameAsync(string controlName)\n    {\n        try\n        {\n            if (string.IsNullOrEmpty(controlName))\n            {\n                return default;\n            }\n\n            return await _connection.Table<GitHubIssueLocalDbModel>().Where(x => x.ControlName == controlName).ToListAsync();\n        }\n        catch (Exception ex)\n        {\n            throw;\n        }\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Features/LocalDbFeatures/GitHub/MAUIsland.Features.LocalDbFeatures.GitHub/Interfaces/IGitHubIssueLocalDbService.cs",
    "content": "﻿namespace MAUIsland.Features.LocalDbFeatures.GitHub;\n\npublic interface IGitHubIssueLocalDbService : ILocalDbService<GitHubIssueLocalDbModel>\n{\n    /// <summary>\n    /// Get list of issues related to a control.\n    /// </summary>\n    /// <param name=\"controlName\"></param>\n    /// <returns></returns>\n    Task<IEnumerable<GitHubIssueLocalDbModel>?> GetByControlNameAsync(string controlName);\n\n    /// <summary>\n    /// Get single issue by its url.\n    /// </summary>\n    /// <param name=\"issueUrl\"></param>\n    /// <returns></returns>\n    Task<GitHubIssueLocalDbModel?> GetByIssueUrlAsync(string issueUrl);\n}\n"
  },
  {
    "path": "src/Features/LocalDbFeatures/GitHub/MAUIsland.Features.LocalDbFeatures.GitHub/MAUIsland.Features.LocalDbFeatures.GitHub.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <TargetFramework>net8.0</TargetFramework>\n    <ImplicitUsings>enable</ImplicitUsings>\n    <Nullable>enable</Nullable>\n\t  <UseRidGraph>false</UseRidGraph>\n  </PropertyGroup>\n\n  <ItemGroup>\n    <ProjectReference Include=\"..\\..\\MAUIsland.Features.LocalDbFeatures\\MAUIsland.Features.LocalDbFeatures.csproj\" />\n  </ItemGroup>\n\n</Project>\n"
  },
  {
    "path": "src/Features/LocalDbFeatures/GitHub/MAUIsland.Features.LocalDbFeatures.GitHub/Models/GitHubIssueLocalDbModel.cs",
    "content": "﻿using System.ComponentModel.DataAnnotations.Schema;\n\nnamespace MAUIsland.Features.LocalDbFeatures.GitHub;\n\n[Table(\"IssueModel\")]\npublic class GitHubIssueLocalDbModel : BaseLocalEntity\n{\n    #region [ CTor ]\n\n    public GitHubIssueLocalDbModel()\n    {\n\n    }\n    #endregion\n\n    #region [ Properties ]\n    [Column(\"control_name\")]\n    public string ControlName { get; set; } //Because of this prop, this class should be renamed to GitHubControlIssueLocalDbModel\n\n    [Column(\"issue_id\")]\n    public long IssueId { get; set; }\n\n    [Column(\"title\")]\n    public string Title { get; set; }\n\n    [Column(\"is_open\")]\n    public bool IsOpen { get; set; }\n\n    [Column(\"issue_link_url\")]\n    public string IssueLinkUrl { get; set; }\n\n    [Column(\"mile_stone\")]\n    public string MileStone { get; set; }\n\n    [Column(\"owner_name\")]\n    public string OwnerName { get; set; }\n\n    [Column(\"user_avatar_url\")]\n    public string UserAvatarUrl { get; set; }\n\n    [Column(\"created_date\")]\n    public DateTime CreatedDate { get; set; }\n\n    [Column(\"last_updated\")]\n    public DateTime LastUpdated { get; set; }\n\n    /// <summary>\n    /// Serialized list of labels of this issue\n    /// </summary>\n    [Column(\"labels\")]\n    public string Labels { get; set; }\n    #endregion\n}\n"
  },
  {
    "path": "src/Features/LocalDbFeatures/GitHub/MAUIsland.Features.LocalDbFeatures.GitHub/ServiceExtension.cs",
    "content": "﻿using Microsoft.Extensions.DependencyInjection;\n\nnamespace MAUIsland.Features.LocalDbFeatures.GitHub;\n\npublic static class ServiceExtension\n{\n\n    public static void RegisterLocalDbFeaturesGitHub(this IServiceCollection services)\n    {\n        services.AddTransient<IGitHubIssueLocalDbService, GitHubIssueLocalDbService>();\n    }\n}"
  },
  {
    "path": "src/Features/LocalDbFeatures/MAUIsland.Features.LocalDbFeatures/BaseLocalEntity.cs",
    "content": "﻿namespace MAUIsland.Features.LocalDbFeatures;\n\npublic class BaseLocalEntity\n{\n    [PrimaryKey]\n    [AutoIncrement]\n    [Column(\"id\")]\n    public int Id { get; set; }\n}\n"
  },
  {
    "path": "src/Features/LocalDbFeatures/MAUIsland.Features.LocalDbFeatures/DatabaseSettings.cs",
    "content": "﻿namespace MAUIsland.Features.LocalDbFeatures;\n\npublic class DatabaseSettings\n{\n    public string DatabasePath { get; set; } = string.Empty;\n}\n"
  },
  {
    "path": "src/Features/LocalDbFeatures/MAUIsland.Features.LocalDbFeatures/GlobalUsings.cs",
    "content": "﻿global using SQLite;"
  },
  {
    "path": "src/Features/LocalDbFeatures/MAUIsland.Features.LocalDbFeatures/ILocalDbService.cs",
    "content": "﻿namespace MAUIsland.Features.LocalDbFeatures;\n\npublic interface ILocalDbService<T> where T : class\n{\n    Task<List<T>> GetAllAsync();\n    Task<T?> GetByIdAsync(int id);\n    Task AddAsync(T entity);\n    Task AddRangeAsync(IEnumerable<T> entities);\n    Task UpdateAsync(T entity);\n    Task DeleteAsync(T entity);\n}\n"
  },
  {
    "path": "src/Features/LocalDbFeatures/MAUIsland.Features.LocalDbFeatures/Implementations/SQLitePCLRawService.cs",
    "content": "﻿namespace MAUIsland.Features.LocalDbFeatures;\n\npublic class SQLitePCLRawService<T> : ILocalDbService<T> where T : BaseLocalEntity, new()\n{\n    protected readonly SQLiteAsyncConnection _connection;\n\n    public SQLitePCLRawService(DatabaseSettings databaseSettings)\n    {\n        _connection = new SQLiteAsyncConnection(databaseSettings.DatabasePath);\n        _connection.CreateTableAsync<T>().Wait();\n    }\n\n    public async Task AddAsync(T entity)\n    {\n        await _connection.InsertAsync(entity);\n    }\n\n    public async Task AddRangeAsync(IEnumerable<T> entities)\n    {\n        await _connection.InsertAllAsync(entities);\n    }\n\n    public async Task DeleteAsync(T entity)\n    {\n        await _connection.DeleteAsync(entity);\n    }\n\n    public async Task<List<T>> GetAllAsync()\n    {\n        return await _connection.Table<T>().ToListAsync();\n    }\n\n    public async Task<T?> GetByIdAsync(int id)\n    {\n        return await _connection.Table<T>().FirstOrDefaultAsync(x => x.Id == id);\n    }\n\n    public async Task UpdateAsync(T entity)\n    {\n        await _connection.UpdateAsync(entity);\n    }\n}\n"
  },
  {
    "path": "src/Features/LocalDbFeatures/MAUIsland.Features.LocalDbFeatures/MAUIsland.Features.LocalDbFeatures.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <TargetFramework>net8.0</TargetFramework>\n    <ImplicitUsings>enable</ImplicitUsings>\n    <Nullable>enable</Nullable>\n\t<UseRidGraph>true</UseRidGraph>\n  </PropertyGroup>\n\n  <ItemGroup>\n    <PackageReference Include=\"Microsoft.Extensions.DependencyInjection.Abstractions\" Version=\"8.0.0\" />\n    <PackageReference Include=\"sqlite-net-pcl\" Version=\"1.9.141-beta\" />\n\t<PackageReference Include=\"OneOf\" Version=\"3.0.263\" />\n  </ItemGroup>\n\n</Project>\n"
  },
  {
    "path": "src/Features/LocalDbFeatures/MAUIsland.Features.LocalDbFeatures/ServiceExtension.cs",
    "content": "﻿using Microsoft.Extensions.DependencyInjection;\n\nnamespace MAUIsland.Features.LocalDbFeatures;\n\npublic static class ServiceExtension\n{\n\n    public static void RegisterLocalDbFeatures(this IServiceCollection services, string databasePath)\n    {\n        DatabaseSettings settings = new()\n        {\n            DatabasePath = databasePath\n        };\n        services.AddSingleton(settings);\n\n    }\n}\n"
  },
  {
    "path": "src/Features/NewsFeatures/MAUIsland.NewsFeatures/Constants.cs",
    "content": "﻿namespace MAUIsland.NewsFeatures;\n\npublic static class Constants\n{\n    public const string NotAvailable = \"N/A\";\n    public const string GetRepositorySuccess = \"GET_REPOSITORY_SUCCESS!\";\n    public const string GetRepositoryFailure = \"GET_REPOSITORY_FAILURE!\";\n    public const string GetAuthorSuccess = \"GET_AUTHOR_SUCCESS!\";\n    public const string GetAuthorFailure = \"GET_AUTHOR_FAILURE!\";\n    public const string GetGitHubIssueByNoSuccess = \"GET_GITHUB_ISSUE_BY_NO_SUCCESS!\";\n    public const string GetGitHubIssueByNoFailure = \"GET_GITHUB_ISSUE_BY_NO_FAILURE!\";\n    public const string GetGitHubIssuesSuccess = \"GET_GITHUB_ISSUES_SUCCESS!\";\n    public const string GetGitHubIssuesFailure = \"GET_GITHUB_ISSUES_FAILURE!\";\n    public const string GetGitHubIssuesByLabelsSuccess = \"GET_GITHUB_ISSUES_BY_LABELS_SUCCESS!\";\n    public const string GetGitHubIssuesByLabelsFailure = \"GET_GITHUB_ISSUES_BY_LABELS_FAILURE!\";\n\n}\n"
  },
  {
    "path": "src/Features/NewsFeatures/MAUIsland.NewsFeatures/GlobalUsings.cs",
    "content": "﻿"
  },
  {
    "path": "src/Features/NewsFeatures/MAUIsland.NewsFeatures/INewsService.cs",
    "content": "﻿using OneOf;\n\nnamespace MAUIsland.NewsFeatures;\n\npublic interface INewsService\n{\n    Task<OneOf<ServiceSuccess, SerivceError>> GetNews();\n}\n"
  },
  {
    "path": "src/Features/NewsFeatures/MAUIsland.NewsFeatures/Implementations/ImplVersion1.cs",
    "content": "﻿using CodeHollow.FeedReader;\nusing OneOf;\n\nnamespace MAUIsland.NewsFeatures;\n\npublic class ImplVersion1 : INewsService\n{\n    #region [ CTor ]\n\n    #endregion\n\n    #region [ Methods ]\n\n\n    public async Task<OneOf<ServiceSuccess, SerivceError>> GetNews()\n    {\n        Feed feed = null;\n        try\n        {\n            feed = await FeedReader.ReadAsync(\"https://blog.jetbrains.com/feed/\");\n        }\n        catch (Exception ex)\n        {\n            return new SerivceError(Constants.GetAuthorFailure,\n                                    Constants.NotAvailable,\n                                    nameof(ImplVersion1),\n                                    nameof(GetNews),\n                                    Constants.NotAvailable,\n                                    ex.Message,\n                                    DateTime.UtcNow);\n        }\n\n        return new SerivceError(Constants.GetAuthorFailure,\n                                Constants.NotAvailable,\n                                nameof(ImplVersion1),\n                                nameof(GetNews),\n                                Constants.NotAvailable,\n                                string.Empty,\n                                DateTime.UtcNow);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Features/NewsFeatures/MAUIsland.NewsFeatures/MAUIsland.NewsFeatures.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <TargetFramework>net8.0</TargetFramework>\n    <ImplicitUsings>enable</ImplicitUsings>\n    <Nullable>enable</Nullable>\n\t  <UseRidGraph>false</UseRidGraph>\n  </PropertyGroup>\n\n\n<ItemGroup>\n\t<PackageReference Include=\"CodeHollow.FeedReader\" Version=\"1.2.6\" />\n\t<PackageReference Include=\"CommunityToolkit.Mvvm\" Version=\"8.2.2\" />\n\t<PackageReference Include=\"Microsoft.Extensions.DependencyInjection.Abstractions\" Version=\"8.0.0\" />\n\t<PackageReference Include=\"OneOf\" Version=\"3.0.263\" />\n</ItemGroup>\n\n</Project>\n"
  },
  {
    "path": "src/Features/NewsFeatures/MAUIsland.NewsFeatures/Models/MAUINewsModel.cs",
    "content": "﻿namespace MAUIsland.NewsFeatures;\n\npublic partial class MAUINewsModel : NewsBaseModel\n{\n\n}\n"
  },
  {
    "path": "src/Features/NewsFeatures/MAUIsland.NewsFeatures/Models/NewsBaseModel.cs",
    "content": "﻿using CommunityToolkit.Mvvm.ComponentModel;\n\nnamespace MAUIsland.NewsFeatures;\n\npublic partial class NewsBaseModel : ObservableObject\n{\n    [ObservableProperty]\n    string id;\n}\n"
  },
  {
    "path": "src/Features/NewsFeatures/MAUIsland.NewsFeatures/Models/ServiceError.cs",
    "content": "﻿namespace MAUIsland.NewsFeatures;\n\npublic record SerivceError(string ErrorMessage = \"\",\n                           string ErrorCode = \"\",\n                           string ServiceName = \"\",\n                           string MethodName = \"\",\n                           string ConsumerName = \"\",\n                           string? ErrorDetail = null,\n                           DateTime EventOccuredAt = default!);\n"
  },
  {
    "path": "src/Features/NewsFeatures/MAUIsland.NewsFeatures/Models/ServiceSuccess.cs",
    "content": "﻿namespace MAUIsland.NewsFeatures;\n\npublic record ServiceSuccess(string SuccessMessage = \"\",\n                             string SuccessCode = \"\",\n                             string ServiceName = \"\",\n                             string MethodName = \"\",\n                             string ConsumerName = \"\",\n                             DateTime EventOccuredAt = default!,\n                             object? AttachedData = default!);"
  },
  {
    "path": "src/Features/NewsFeatures/MAUIsland.NewsFeatures/ServiceExtension.cs",
    "content": "﻿using Microsoft.Extensions.DependencyInjection;\n\nnamespace MAUIsland.NewsFeatures;\n\npublic static class ServiceExtension\n{\n    public static void RegisterNewsFeatures(this IServiceCollection services)\n    {\n        services.AddTransient<INewsService, ImplVersion1>();\n    }\n}\n"
  },
  {
    "path": "src/Features/NewsFeatures/MAUIsland.NewsFeatures.IntergrationTests/MAUIsland.NewsFeatures.IntergrationTests.csproj",
    "content": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <TargetFramework>net8.0</TargetFramework>\n    <ImplicitUsings>enable</ImplicitUsings>\n    <Nullable>enable</Nullable>\n\n    <IsPackable>false</IsPackable>\n    <IsTestProject>true</IsTestProject>\n  </PropertyGroup>\n\n  <ItemGroup>\n    <PackageReference Include=\"coverlet.collector\" Version=\"6.0.2\">\n      <PrivateAssets>all</PrivateAssets>\n      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>\n    </PackageReference>\n    <PackageReference Include=\"Microsoft.Extensions.DependencyInjection\" Version=\"9.0.0\" />\n    <PackageReference Include=\"Microsoft.NET.Test.Sdk\" Version=\"17.11.1\" />\n    <PackageReference Include=\"xunit\" Version=\"2.9.2\" />\n    <PackageReference Include=\"xunit.runner.visualstudio\" Version=\"2.8.2\">\n      <PrivateAssets>all</PrivateAssets>\n      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>\n    </PackageReference>\n  </ItemGroup>\n\n  <ItemGroup>\n    <ProjectReference Include=\"..\\MAUIsland.NewsFeatures\\MAUIsland.NewsFeatures.csproj\" />\n  </ItemGroup>\n\n  <ItemGroup>\n    <Using Include=\"Xunit\" />\n  </ItemGroup>\n\n</Project>\n"
  },
  {
    "path": "src/Features/NewsFeatures/MAUIsland.NewsFeatures.IntergrationTests/NewsServiceIntegrationTest.cs",
    "content": "using Microsoft.Extensions.DependencyInjection;\n\nnamespace MAUIsland.NewsFeatures.IntegrationTests;\n\npublic class NewsServiceIntegrationTest\n{\n    #region [ Fields ]\n\n    private readonly IServiceProvider serviceProvider;\n    #endregion\n\n    #region [ CTor ]\n\n    public NewsServiceIntegrationTest()\n    {\n        var services = new ServiceCollection();\n        services.RegisterNewsFeatures();\n        serviceProvider = services.BuildServiceProvider();\n    }\n    #endregion\n\n    #region [ Methods ]\n\n    [Fact]\n    public async Task GetNewsTest()\n    {\n        var newsService = serviceProvider!.GetRequiredService<INewsService>();\n        var result = await newsService.GetNews();\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Features/NuGetFeatures/MAUIsland.NuGetFeatures/GlobalUsings.cs",
    "content": "﻿"
  },
  {
    "path": "src/Features/NuGetFeatures/MAUIsland.NuGetFeatures/INuGetFeatures.cs",
    "content": "﻿using OneOf;\n\nnamespace MAUIsland.NuGetFeatures;\n\npublic interface INuGetFeatures\n{\n    Task<OneOf<ServiceSuccess, SerivceError>> GetNuGetByName(string name);\n}\n"
  },
  {
    "path": "src/Features/NuGetFeatures/MAUIsland.NuGetFeatures/Implementations/Mock1.cs",
    "content": "﻿namespace MAUIsland.NuGetFeatures;\n\ninternal class Mock1\n{\n\n}\n"
  },
  {
    "path": "src/Features/NuGetFeatures/MAUIsland.NuGetFeatures/Implementations/Version1.cs",
    "content": "﻿using NuGet.Common;\nusing NuGet.Configuration;\nusing NuGet.Protocol;\nusing NuGet.Protocol.Core.Types;\nusing OneOf;\n\nnamespace MAUIsland.NuGetFeatures;\n\ninternal class Version1 : INuGetFeatures\n{\n    #region [ CTors ]\n\n    #endregion\n\n    #region [ Methods ]\n    public async Task<OneOf<ServiceSuccess, SerivceError>> GetNuGetByName(string name)\n    {\n        ILogger logger = new Logger();\n        PackageSource source = new PackageSource(\"https://api.nuget.org/v3/index.json\");\n        SourceRepository repository = Repository.Factory.GetCoreV3(source);\n\n        // Get the metadata resource\n        PackageMetadataResource metadataResource = await repository.GetResourceAsync<PackageMetadataResource>();\n\n        // Search for the package metadata\n        var searchMetadata = await metadataResource.GetMetadataAsync(name,\n                                                                     includePrerelease: false,\n                                                                     includeUnlisted: false,\n                                                                     sourceCacheContext: new SourceCacheContext(),\n                                                                     log: logger,\n                                                                     token: CancellationToken.None);\n\n        foreach (var package in searchMetadata)\n        {\n            Console.WriteLine($\"Package ID: {package.Identity.Id}\");\n            Console.WriteLine($\"Version: {package.Identity.Version}\");\n            Console.WriteLine($\"Authors: {package.Authors}\");\n            Console.WriteLine($\"Description: {package.Description}\");\n            Console.WriteLine($\"Published: {package.Published}\");\n            Console.WriteLine();\n        }\n\n        return new ServiceSuccess(string.Empty,\n                                  string.Empty,\n                                  nameof(Version1),\n                                  nameof(GetNuGetByName),\n                                  string.Empty,\n                                  DateTime.UtcNow,\n                                  null);\n    }\n    #endregion\n}\npublic class Logger : ILogger\n{\n    public void LogDebug(string data) => Console.WriteLine(data);\n    public void LogVerbose(string data) => Console.WriteLine(data);\n    public void LogInformation(string data) => Console.WriteLine(data);\n    public void LogMinimal(string data) => Console.WriteLine(data);\n    public void LogWarning(string data) => Console.WriteLine(data);\n    public void LogError(string data) => Console.WriteLine(data);\n    public void LogInformationSummary(string data) => Console.WriteLine(data);\n    public void Log(LogLevel level, string data) => Console.WriteLine(data);\n    public Task LogAsync(LogLevel level, string data) => Task.Run(() => Console.WriteLine(data));\n    public void Log(ILogMessage message) => Console.WriteLine(message);\n    public Task LogAsync(ILogMessage message) => Task.Run(() => Console.WriteLine(message));\n}"
  },
  {
    "path": "src/Features/NuGetFeatures/MAUIsland.NuGetFeatures/MAUIsland.NuGetFeatures.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <TargetFramework>net8.0</TargetFramework>\n    <ImplicitUsings>enable</ImplicitUsings>\n    <Nullable>enable</Nullable>\n  </PropertyGroup>\n\n  <ItemGroup>\n    <PackageReference Include=\"Microsoft.Extensions.DependencyInjection.Abstractions\" Version=\"9.0.0\" />\n    <PackageReference Include=\"NuGet.Protocol\" Version=\"6.12.1\" />\n    <PackageReference Include=\"OneOf\" Version=\"3.0.271\" />\n  </ItemGroup>\n\n</Project>\n"
  },
  {
    "path": "src/Features/NuGetFeatures/MAUIsland.NuGetFeatures/Models/ServiceError.cs",
    "content": "﻿namespace MAUIsland.NuGetFeatures;\n\npublic record SerivceError(string ErrorMessage = \"\",\n                           string ErrorCode = \"\",\n                           string ServiceName = \"\",\n                           string MethodName = \"\",\n                           string ConsumerName = \"\",\n                           string? ErrorDetail = null,\n                           DateTime EventOccuredAt = default!);\n"
  },
  {
    "path": "src/Features/NuGetFeatures/MAUIsland.NuGetFeatures/Models/ServiceSuccess.cs",
    "content": "﻿namespace MAUIsland.NuGetFeatures;\n\npublic record ServiceSuccess(string SuccessMessage = \"\",\n                             string SuccessCode = \"\",\n                             string ServiceName = \"\",\n                             string MethodName = \"\",\n                             string ConsumerName = \"\",\n                             DateTime EventOccuredAt = default!,\n                             object? AttachedData = default!);"
  },
  {
    "path": "src/Features/NuGetFeatures/MAUIsland.NuGetFeatures/ServiceExtension.cs",
    "content": "﻿using Microsoft.Extensions.DependencyInjection;\n\nnamespace MAUIsland.NuGetFeatures;\n\npublic static class ServiceExtension\n{\n    public static void RegisterNuGetFeatures(this IServiceCollection services)\n    {\n        services.AddTransient<INuGetFeatures, Version1>();\n    }\n}\n"
  },
  {
    "path": "src/Features/NuGetFeatures/NuGetFeatures.IntegrationTests/NuGetFeatures.IntegrationTests.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <TargetFramework>net8.0</TargetFramework>\n    <ImplicitUsings>enable</ImplicitUsings>\n    <Nullable>enable</Nullable>\n  </PropertyGroup>\n\n\n\t<ItemGroup>\n\t\t<PackageReference Include=\"coverlet.collector\" Version=\"6.0.2\">\n\t\t  <PrivateAssets>all</PrivateAssets>\n\t\t  <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>\n\t\t</PackageReference>\n\t\t<PackageReference Include=\"Microsoft.Extensions.DependencyInjection\" Version=\"8.0.0\" />\n\t\t<PackageReference Include=\"Microsoft.NET.Test.Sdk\" Version=\"17.10.0\" />\n\t\t<PackageReference Include=\"OneOf\" Version=\"3.0.271\" />\n\t\t<PackageReference Include=\"xunit\" Version=\"2.8.1\" />\n\t\t<PackageReference Include=\"xunit.runner.visualstudio\" Version=\"2.8.1\">\n\t\t  <PrivateAssets>all</PrivateAssets>\n\t\t  <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>\n\t\t</PackageReference>\n\t</ItemGroup>\n\n\n\t<ItemGroup>\n\t  <ProjectReference Include=\"..\\MAUIsland.NuGetFeatures\\MAUIsland.NuGetFeatures.csproj\" />\n\t</ItemGroup>\n\n</Project>\n"
  },
  {
    "path": "src/Features/NuGetFeatures/NuGetFeatures.IntegrationTests/Version1Test.cs",
    "content": "﻿using MAUIsland.NuGetFeatures;\nusing Microsoft.Extensions.DependencyInjection;\nusing Xunit;\n\nnamespace NuGetFeatures.IntegrationTests;\n\npublic class Version1Test\n{\n    #region [ Fields ]\n\n    private readonly IServiceProvider serviceProvider;\n    #endregion\n\n    #region [ CTor ]\n\n    public Version1Test()\n    {\n        var services = new ServiceCollection();\n        services.RegisterNuGetFeatures();\n        serviceProvider = services.BuildServiceProvider();\n    }\n    #endregion\n\n    #region [ Methods ]\n\n\n\n    [Fact]\n    public async Task GetRepositoryTest()\n    {\n        var nugetFeatures = serviceProvider!.GetRequiredService<INuGetFeatures>();\n        var result = await nugetFeatures.GetNuGetByName(\"efcore\");\n\n        //Assert\n        Assert.IsType<ServiceSuccess>(result.AsT0);\n        Assert.NotEmpty(result.AsT0.SuccessCode);\n        Assert.NotEmpty(result.AsT0.SuccessMessage);\n        Assert.NotEmpty(result.AsT0.ServiceName);\n        Assert.NotEmpty(result.AsT0.MethodName);\n        Assert.NotEmpty(result.AsT0.ConsumerName);\n        Assert.NotEqual(DateTime.MinValue, result.AsT0.EventOccuredAt);\n        Assert.NotNull(result.AsT0.AttachedData);\n\n        //var repositoryModel = result.AsT0.AttachedData as GitHubRepositoryModel;\n        //Assert.NotNull(repositoryModel);\n        //Assert.NotEqual(0, repositoryModel.GitHubId);\n        //Assert.NotNull(repositoryModel.Name);\n        //Assert.NotNull(repositoryModel.Url);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/CommunityToolkit.Maui.MediaElement.json",
    "content": "{\"xmlns\":\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\",\"types\":[{\"name\":\"MediaElement\",\"namespace\":\"CommunityToolkit.Maui.Views\",\"doc\":null,\"attributes\":[{\"name\":\"MediaEnded\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"MediaFailed\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MediaOpened\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SeekCompleted\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"StateChanged\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PositionChanged\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Position\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":[\"Zero\",\"MaxValue\",\"MinValue\",\"NanosecondsPerTick\",\"TicksPerMicrosecond\",\"TicksPerMillisecond\",\"TicksPerSecond\",\"TicksPerMinute\",\"TicksPerHour\",\"TicksPerDay\"]},{\"name\":\"Duration\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":[\"Zero\",\"MaxValue\",\"MinValue\",\"NanosecondsPerTick\",\"TicksPerMicrosecond\",\"TicksPerMillisecond\",\"TicksPerSecond\",\"TicksPerMinute\",\"TicksPerHour\",\"TicksPerDay\"]},{\"name\":\"ShouldAutoPlay\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"Boolean\"},{\"name\":\"ShouldLoopPlayback\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"Boolean\"},{\"name\":\"ShouldKeepScreenOn\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"Boolean\"},{\"name\":\"ShouldMute\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"Boolean\"},{\"name\":\"ShouldShowPlaybackControls\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"Boolean\"},{\"name\":\"Source\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"MediaSource\"},{\"name\":\"Volume\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"Double\"},{\"name\":\"Speed\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"Double\"},{\"name\":\"MediaHeight\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"Int32\"},{\"name\":\"MediaWidth\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":\"Int32\"},{\"name\":\"Aspect\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":[\"value__\",\"AspectFit\",\"AspectFill\",\"Fill\",\"Center\"]},{\"name\":\"CurrentState\",\"namespace\":\"CommunityToolkit.Maui.Views.MediaElement\",\"type\":[\"value__\",\"None\",\"Opening\",\"Buffering\",\"Playing\",\"Paused\",\"Stopped\",\"Failed\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FileMediaSource\",\"namespace\":\"CommunityToolkit.Maui.Views\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Path\",\"namespace\":\"CommunityToolkit.Maui.Views.FileMediaSource\",\"type\":\"String\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ResourceMediaSource\",\"namespace\":\"CommunityToolkit.Maui.Views\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Path\",\"namespace\":\"CommunityToolkit.Maui.Views.ResourceMediaSource\",\"type\":\"String\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"UriMediaSource\",\"namespace\":\"CommunityToolkit.Maui.Views\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Uri\",\"namespace\":\"CommunityToolkit.Maui.Views.UriMediaSource\",\"type\":\"Uri\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:23 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/CommunityToolkit.Maui.json",
    "content": "{\"xmlns\":\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\",\"types\":[{\"name\":\"DockLayout\",\"namespace\":\"CommunityToolkit.Maui.Layouts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ShouldExpandLastChild\",\"namespace\":\"CommunityToolkit.Maui.Layouts.DockLayout\",\"type\":\"Boolean\"},{\"name\":\"HorizontalSpacing\",\"namespace\":\"CommunityToolkit.Maui.Layouts.DockLayout\",\"type\":\"Double\"},{\"name\":\"VerticalSpacing\",\"namespace\":\"CommunityToolkit.Maui.Layouts.DockLayout\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"DockPosition\",\"namespace\":\"CommunityToolkit.Maui.Layouts.DockLayout\",\"type\":[\"value__\",\"None\",\"Top\",\"Left\",\"Right\",\"Bottom\"],\"isAttached\":true}]},{\"name\":\"UniformItemsLayout\",\"namespace\":\"CommunityToolkit.Maui.Layouts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"MaxRows\",\"namespace\":\"CommunityToolkit.Maui.Layouts.UniformItemsLayout\",\"type\":\"Int32\"},{\"name\":\"MaxColumns\",\"namespace\":\"CommunityToolkit.Maui.Layouts.UniformItemsLayout\",\"type\":\"Int32\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GravatarImageSource\",\"namespace\":\"CommunityToolkit.Maui.ImageSources\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEmpty\",\"namespace\":\"CommunityToolkit.Maui.ImageSources.GravatarImageSource\",\"type\":\"Boolean\"},{\"name\":\"CacheValidity\",\"namespace\":\"CommunityToolkit.Maui.ImageSources.GravatarImageSource\",\"type\":[\"Zero\",\"MaxValue\",\"MinValue\",\"NanosecondsPerTick\",\"TicksPerMicrosecond\",\"TicksPerMillisecond\",\"TicksPerSecond\",\"TicksPerMinute\",\"TicksPerHour\",\"TicksPerDay\"]},{\"name\":\"CachingEnabled\",\"namespace\":\"CommunityToolkit.Maui.ImageSources.GravatarImageSource\",\"type\":\"Boolean\"},{\"name\":\"IsDisposed\",\"namespace\":\"CommunityToolkit.Maui.ImageSources.GravatarImageSource\",\"type\":\"Boolean\"},{\"name\":\"Email\",\"namespace\":\"CommunityToolkit.Maui.ImageSources.GravatarImageSource\",\"type\":\"String\"},{\"name\":\"Image\",\"namespace\":\"CommunityToolkit.Maui.ImageSources.GravatarImageSource\",\"type\":[\"value__\",\"MysteryPerson\",\"FileNotFound\",\"Identicon\",\"MonsterId\",\"Wavatar\",\"Retro\",\"Robohash\",\"Blank\"]},{\"name\":\"Uri\",\"namespace\":\"CommunityToolkit.Maui.ImageSources.GravatarImageSource\",\"type\":\"Uri\"},{\"name\":\"Stream\",\"namespace\":\"Microsoft.Maui.Controls.StreamImageSource\",\"type\":\"Func\\u00602\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Popup\",\"namespace\":\"CommunityToolkit.Maui.Views\",\"doc\":null,\"attributes\":[{\"name\":\"Closed\",\"namespace\":\"CommunityToolkit.Maui.Views.Popup\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Opened\",\"namespace\":\"CommunityToolkit.Maui.Views.Popup\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Result\",\"namespace\":\"CommunityToolkit.Maui.Views.Popup\",\"type\":\"Task\\u00601\"},{\"name\":\"Content\",\"namespace\":\"CommunityToolkit.Maui.Views.Popup\",\"type\":\"View\"},{\"name\":\"Color\",\"namespace\":\"CommunityToolkit.Maui.Views.Popup\",\"type\":\"Color\"},{\"name\":\"VerticalOptions\",\"namespace\":\"CommunityToolkit.Maui.Views.Popup\",\"type\":[\"value__\",\"Fill\",\"Start\",\"Center\",\"End\"]},{\"name\":\"HorizontalOptions\",\"namespace\":\"CommunityToolkit.Maui.Views.Popup\",\"type\":[\"value__\",\"Fill\",\"Start\",\"Center\",\"End\"]},{\"name\":\"Size\",\"namespace\":\"CommunityToolkit.Maui.Views.Popup\",\"type\":[\"Zero\"]},{\"name\":\"CanBeDismissedByTappingOutsideOfPopup\",\"namespace\":\"CommunityToolkit.Maui.Views.Popup\",\"type\":\"Boolean\"},{\"name\":\"Anchor\",\"namespace\":\"CommunityToolkit.Maui.Views.Popup\",\"type\":\"View\"},{\"name\":\"Window\",\"namespace\":\"CommunityToolkit.Maui.Views.Popup\",\"type\":\"Window\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AvatarView\",\"namespace\":\"CommunityToolkit.Maui.Views\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Font\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":[]},{\"name\":\"BorderColor\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":\"Color\"},{\"name\":\"BorderWidth\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":\"Double\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":\"Double\"},{\"name\":\"CornerRadius\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":[]},{\"name\":\"FontAttributes\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":\"Boolean\"},{\"name\":\"FontFamily\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":\"Double\"},{\"name\":\"ImageSource\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":\"ImageSource\"},{\"name\":\"Text\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":\"Color\"},{\"name\":\"TextTransform\",\"namespace\":\"CommunityToolkit.Maui.Views.AvatarView\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"View\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":[\"Zero\"]},{\"name\":\"StrokeShape\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"IShape\"},{\"name\":\"Stroke\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"DoubleCollection\"},{\"name\":\"StrokeDashOffset\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":[\"value__\",\"Flat\",\"Square\",\"Round\"]},{\"name\":\"StrokeLineJoin\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":[\"value__\",\"Miter\",\"Bevel\",\"Round\"]},{\"name\":\"StrokeMiterLimit\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Double\"},{\"name\":\"StrokeDashPattern\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Single[]\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DrawingView\",\"namespace\":\"CommunityToolkit.Maui.Views\",\"doc\":null,\"attributes\":[{\"name\":\"DrawingLineCompleted\",\"namespace\":\"CommunityToolkit.Maui.Views.DrawingView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LineColor\",\"namespace\":\"CommunityToolkit.Maui.Views.DrawingView\",\"type\":\"Color\"},{\"name\":\"LineWidth\",\"namespace\":\"CommunityToolkit.Maui.Views.DrawingView\",\"type\":\"Single\"},{\"name\":\"DrawingLineCompletedCommand\",\"namespace\":\"CommunityToolkit.Maui.Views.DrawingView\",\"type\":\"ICommand\"},{\"name\":\"Lines\",\"namespace\":\"CommunityToolkit.Maui.Views.DrawingView\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"IsMultiLineModeEnabled\",\"namespace\":\"CommunityToolkit.Maui.Views.DrawingView\",\"type\":\"Boolean\"},{\"name\":\"ShouldClearOnFinish\",\"namespace\":\"CommunityToolkit.Maui.Views.DrawingView\",\"type\":\"Boolean\"},{\"name\":\"DrawAction\",\"namespace\":\"CommunityToolkit.Maui.Views.DrawingView\",\"type\":\"Action\\u00602\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"ImageStream\",\"namespace\":\"CommunityToolkit.Maui.Views.DrawingView\",\"type\":[],\"isAttached\":true}]},{\"name\":\"Expander\",\"namespace\":\"CommunityToolkit.Maui.Views\",\"doc\":null,\"attributes\":[{\"name\":\"ExpandedChanged\",\"namespace\":\"CommunityToolkit.Maui.Views.Expander\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Header\",\"namespace\":\"CommunityToolkit.Maui.Views.Expander\",\"type\":\"IView\"},{\"name\":\"Content\",\"namespace\":\"CommunityToolkit.Maui.Views.Expander\",\"type\":\"IView\"},{\"name\":\"IsExpanded\",\"namespace\":\"CommunityToolkit.Maui.Views.Expander\",\"type\":\"Boolean\"},{\"name\":\"Direction\",\"namespace\":\"CommunityToolkit.Maui.Views.Expander\",\"type\":[\"value__\",\"Down\",\"Up\"]},{\"name\":\"CommandParameter\",\"namespace\":\"CommunityToolkit.Maui.Views.Expander\",\"type\":\"Object\"},{\"name\":\"Command\",\"namespace\":\"CommunityToolkit.Maui.Views.Expander\",\"type\":\"ICommand\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BoolToObjectConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BoolToObjectConverter\\u00601\",\"type\":\"Object\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BoolToObjectConverter\\u00601\",\"type\":\"Boolean\"},{\"name\":\"TrueObject\",\"namespace\":\"CommunityToolkit.Maui.Converters.BoolToObjectConverter\\u00601\",\"type\":\"Object\"},{\"name\":\"FalseObject\",\"namespace\":\"CommunityToolkit.Maui.Converters.BoolToObjectConverter\\u00601\",\"type\":\"Object\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BoolToObjectConverter\\u00601\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BoolToObjectConverter\\u00601\",\"type\":\"TObject\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BoolToObjectConverter\\u00601\",\"type\":\"Boolean\"},{\"name\":\"TrueObject\",\"namespace\":\"CommunityToolkit.Maui.Converters.BoolToObjectConverter\\u00601\",\"type\":\"TObject\"},{\"name\":\"FalseObject\",\"namespace\":\"CommunityToolkit.Maui.Converters.BoolToObjectConverter\\u00601\",\"type\":\"TObject\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ByteArrayToImageSourceConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ByteArrayToImageSourceConverter\",\"type\":\"ImageSource\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ByteArrayToImageSourceConverter\",\"type\":\"Byte[]\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToBlackOrWhiteConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToBlackOrWhiteConverter\",\"type\":\"Color\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToColorForTextConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToColorForTextConverter\",\"type\":\"Color\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToGrayScaleColorConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToGrayScaleColorConverter\",\"type\":\"Color\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToInverseColorConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToInverseColorConverter\",\"type\":\"Color\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToByteAlphaConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToByteAlphaConverter\",\"type\":\"Byte\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToByteRedConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToByteRedConverter\",\"type\":\"Byte\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToByteGreenConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToByteGreenConverter\",\"type\":\"Byte\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToByteBlueConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToByteBlueConverter\",\"type\":\"Byte\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToPercentCyanConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToPercentCyanConverter\",\"type\":\"Double\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToPercentMagentaConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToPercentMagentaConverter\",\"type\":\"Double\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToPercentYellowConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToPercentYellowConverter\",\"type\":\"Double\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToPercentBlackKeyConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToPercentBlackKeyConverter\",\"type\":\"Double\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToDegreeHueConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToDegreeHueConverter\",\"type\":\"Double\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToRgbStringConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToRgbStringConverter\",\"type\":\"String\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToRgbaStringConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToRgbaStringConverter\",\"type\":\"String\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToHexRgbStringConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToHexRgbStringConverter\",\"type\":\"String\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToHexRgbStringConverter\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToHexRgbaStringConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToHexRgbaStringConverter\",\"type\":\"String\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToHexRgbaStringConverter\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToCmykStringConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToCmykStringConverter\",\"type\":\"String\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToCmykaStringConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToCmykaStringConverter\",\"type\":\"String\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToHslStringConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToHslStringConverter\",\"type\":\"String\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColorToHslaStringConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ColorToHslaStringConverter\",\"type\":\"String\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Color\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CompareConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.CompareConverter\\u00601\",\"type\":\"Object\"},{\"name\":\"ComparingValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.CompareConverter\\u00601\",\"type\":\"IComparable\"},{\"name\":\"ComparisonOperator\",\"namespace\":\"CommunityToolkit.Maui.Converters.CompareConverter\\u00601\",\"type\":[\"value__\",\"NotEqual\",\"Smaller\",\"SmallerOrEqual\",\"Equal\",\"Greater\",\"GreaterOrEqual\"]},{\"name\":\"TrueObject\",\"namespace\":\"CommunityToolkit.Maui.Converters.CompareConverter\\u00601\",\"type\":\"Object\"},{\"name\":\"FalseObject\",\"namespace\":\"CommunityToolkit.Maui.Converters.CompareConverter\\u00601\",\"type\":\"Object\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"IComparable\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DateTimeOffsetConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.DateTimeOffsetConverter\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.DateTimeOffsetConverter\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DoubleToIntConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.DoubleToIntConverter\",\"type\":\"Int32\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.DoubleToIntConverter\",\"type\":\"Double\"},{\"name\":\"Ratio\",\"namespace\":\"CommunityToolkit.Maui.Converters.DoubleToIntConverter\",\"type\":\"Double\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ParamType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"EnumToBoolConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.EnumToBoolConverter\",\"type\":\"Boolean\"},{\"name\":\"TrueValues\",\"namespace\":\"CommunityToolkit.Maui.Converters.EnumToBoolConverter\",\"type\":\"IList\\u00601\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00603\",\"type\":\"Enum\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ParamType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"EnumToIntConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.EnumToIntConverter\",\"type\":\"Int32\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.EnumToIntConverter\",\"type\":\"Enum\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ParamType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ImageResourceConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ImageResourceConverter\",\"type\":\"ImageSource\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"String\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IndexToArrayItemConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IndexToArrayItemConverter\",\"type\":\"Object\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IndexToArrayItemConverter\",\"type\":\"Int32\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ParamType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IntToBoolConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IntToBoolConverter\",\"type\":\"Boolean\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IntToBoolConverter\",\"type\":\"Int32\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"InvertedBoolConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.InvertedBoolConverter\",\"type\":\"Boolean\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.InvertedBoolConverter\",\"type\":\"Boolean\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IsEqualConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsEqualConverter\",\"type\":\"Boolean\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00603\",\"type\":\"Object\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ParamType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IsInRangeConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsInRangeConverter\\u00601\",\"type\":\"Object\"},{\"name\":\"MinValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsInRangeConverter\\u00601\",\"type\":\"IComparable\"},{\"name\":\"MaxValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsInRangeConverter\\u00601\",\"type\":\"IComparable\"},{\"name\":\"TrueObject\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsInRangeConverter\\u00601\",\"type\":\"Object\"},{\"name\":\"FalseObject\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsInRangeConverter\\u00601\",\"type\":\"Object\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"IComparable\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IsListNotNullOrEmptyConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsListNotNullOrEmptyConverter\",\"type\":\"Boolean\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"IEnumerable\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IsListNullOrEmptyConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsListNullOrEmptyConverter\",\"type\":\"Boolean\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"IEnumerable\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IsNotEqualConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsNotEqualConverter\",\"type\":\"Boolean\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00603\",\"type\":\"Object\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ParamType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IsNotNullConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsNotNullConverter\",\"type\":\"Boolean\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Object\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IsNullConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsNullConverter\",\"type\":\"Boolean\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"Object\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IsStringNotNullOrEmptyConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsStringNotNullOrEmptyConverter\",\"type\":\"Boolean\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"String\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IsStringNotNullOrWhiteSpaceConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsStringNotNullOrWhiteSpaceConverter\",\"type\":\"Boolean\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"String\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IsStringNullOrEmptyConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsStringNullOrEmptyConverter\",\"type\":\"Boolean\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"String\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IsStringNullOrWhiteSpaceConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.IsStringNullOrWhiteSpaceConverter\",\"type\":\"Boolean\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"String\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ItemTappedEventArgsConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ItemTappedEventArgsConverter\",\"type\":\"Object\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"ItemTappedEventArgs\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ListToStringConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.ListToStringConverter\",\"type\":\"String\"},{\"name\":\"Separator\",\"namespace\":\"CommunityToolkit.Maui.Converters.ListToStringConverter\",\"type\":\"String\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00603\",\"type\":\"IEnumerable\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ParamType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MathExpressionConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.MathExpressionConverter\",\"type\":\"Double\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00603\",\"type\":\"Double\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ParamType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MultiConverterParameter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ConverterType\",\"namespace\":\"CommunityToolkit.Maui.Converters.MultiConverterParameter\",\"type\":\"Type\"},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Converters.MultiConverterParameter\",\"type\":\"Object\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SelectedItemEventArgsConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.SelectedItemEventArgsConverter\",\"type\":\"Object\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00602\",\"type\":\"SelectedItemChangedEventArgs\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"StateToBooleanConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.StateToBooleanConverter\",\"type\":\"Boolean\"},{\"name\":\"StateToCompare\",\"namespace\":\"CommunityToolkit.Maui.Converters.StateToBooleanConverter\",\"type\":[\"value__\",\"None\",\"Loading\",\"Saving\",\"Success\",\"Error\",\"Empty\",\"Custom\"]},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00603\",\"type\":[\"value__\",\"None\",\"Loading\",\"Saving\",\"Success\",\"Error\",\"Empty\",\"Custom\"]},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ParamType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"StringToListConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.StringToListConverter\",\"type\":\"IEnumerable\"},{\"name\":\"Separator\",\"namespace\":\"CommunityToolkit.Maui.Converters.StringToListConverter\",\"type\":\"String\"},{\"name\":\"Separators\",\"namespace\":\"CommunityToolkit.Maui.Converters.StringToListConverter\",\"type\":\"IList\\u00601\"},{\"name\":\"SplitOptions\",\"namespace\":\"CommunityToolkit.Maui.Converters.StringToListConverter\",\"type\":[\"value__\",\"None\",\"RemoveEmptyEntries\",\"TrimEntries\"]},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00603\",\"type\":\"String\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ParamType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TextCaseConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.TextCaseConverter\",\"type\":\"String\"},{\"name\":\"Type\",\"namespace\":\"CommunityToolkit.Maui.Converters.TextCaseConverter\",\"type\":[\"value__\",\"None\",\"Upper\",\"Lower\",\"FirstUpperRestLower\"]},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverterOneWay\\u00603\",\"type\":\"String\"},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"ParamType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00603\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TimeSpanToSecondsConverter\",\"namespace\":\"CommunityToolkit.Maui.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DefaultConvertReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.TimeSpanToSecondsConverter\",\"type\":\"Double\"},{\"name\":\"DefaultConvertBackReturnValue\",\"namespace\":\"CommunityToolkit.Maui.Converters.TimeSpanToSecondsConverter\",\"type\":[\"Zero\",\"MaxValue\",\"MinValue\",\"NanosecondsPerTick\",\"TicksPerMicrosecond\",\"TicksPerMillisecond\",\"TicksPerSecond\",\"TicksPerMinute\",\"TicksPerHour\",\"TicksPerDay\"]},{\"name\":\"FromType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"ToType\",\"namespace\":\"CommunityToolkit.Maui.Converters.BaseConverter\\u00602\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AnimationBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"AnimateCommand\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.AnimationBehavior\",\"type\":\"ICommand\"},{\"name\":\"AnimationType\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.AnimationBehavior\",\"type\":\"BaseAnimation\"},{\"name\":\"EventName\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\",\"type\":\"String\"},{\"name\":\"Command\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\",\"type\":\"Object\"},{\"name\":\"EventArgsConverter\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\",\"type\":\"IValueConverter\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SetFocusOnEntryCompletedBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"NextElement\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.SetFocusOnEntryCompletedBehavior\",\"type\":\"VisualElement\",\"isAttached\":true}]},{\"name\":\"EventToCommandBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"EventName\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\",\"type\":\"String\"},{\"name\":\"Command\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\",\"type\":\"Object\"},{\"name\":\"EventArgsConverter\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\",\"type\":\"IValueConverter\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"EventToCommandBehavior\\u00601\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"EventName\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\",\"type\":\"String\"},{\"name\":\"Command\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\",\"type\":\"Object\"},{\"name\":\"EventArgsConverter\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.EventToCommandBehavior\",\"type\":\"IValueConverter\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ImpliedOrderGridBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ThrowOnLayoutWarning\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ImpliedOrderGridBehavior\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MaskedBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Mask\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.MaskedBehavior\",\"type\":\"String\"},{\"name\":\"UnmaskedCharacter\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.MaskedBehavior\",\"type\":\"Char\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MaxLengthReachedBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"MaxLengthReached\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.MaxLengthReachedBehavior\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Command\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.MaxLengthReachedBehavior\",\"type\":\"ICommand\"},{\"name\":\"ShouldDismissKeyboardAutomatically\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.MaxLengthReachedBehavior\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IconTintColorBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TintColor\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.IconTintColorBehavior\",\"type\":\"Color\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SelectAllTextBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"StatusBarBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"StatusBarColor\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.StatusBarBehavior\",\"type\":\"Color\"},{\"name\":\"StatusBarStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.StatusBarBehavior\",\"type\":[\"value__\",\"Default\",\"LightContent\",\"DarkContent\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ProgressBarAnimationBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"AnimationCompleted\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ProgressBarAnimationBehavior\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Progress\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ProgressBarAnimationBehavior\",\"type\":\"Double\"},{\"name\":\"Length\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ProgressBarAnimationBehavior\",\"type\":\"UInt32\"},{\"name\":\"Easing\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ProgressBarAnimationBehavior\",\"type\":\"Easing\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"UserStoppedTypingBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Command\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.UserStoppedTypingBehavior\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.UserStoppedTypingBehavior\",\"type\":\"Object\"},{\"name\":\"StoppedTypingTimeThreshold\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.UserStoppedTypingBehavior\",\"type\":\"Int32\"},{\"name\":\"MinimumLengthThreshold\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.UserStoppedTypingBehavior\",\"type\":\"Int32\"},{\"name\":\"ShouldDismissKeyboardAutomatically\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.UserStoppedTypingBehavior\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CharactersValidationBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CharacterType\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.CharactersValidationBehavior\",\"type\":[\"value__\",\"LowercaseLetter\",\"UppercaseLetter\",\"Letter\",\"Digit\",\"Alphanumeric\",\"Whitespace\",\"NonAlphanumericSymbol\",\"LowercaseLatinLetter\",\"UppercaseLatinLetter\",\"LatinLetter\",\"Any\"]},{\"name\":\"MinimumCharacterTypeCount\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.CharactersValidationBehavior\",\"type\":\"Int32\"},{\"name\":\"MaximumCharacterTypeCount\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.CharactersValidationBehavior\",\"type\":\"Int32\"},{\"name\":\"MinimumLength\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":\"Int32\"},{\"name\":\"MaximumLength\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":\"Int32\"},{\"name\":\"DecorationFlags\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":[\"value__\",\"None\",\"TrimStart\",\"TrimEnd\",\"Trim\",\"NullToEmpty\",\"NormalizeWhiteSpace\"]},{\"name\":\"RegexPattern\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":\"String\"},{\"name\":\"RegexOptions\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":[\"value__\",\"None\",\"IgnoreCase\",\"Multiline\",\"ExplicitCapture\",\"Compiled\",\"Singleline\",\"IgnorePatternWhitespace\",\"RightToLeft\",\"ECMAScript\",\"CultureInvariant\",\"NonBacktracking\"]},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\\u00601\",\"type\":\"String\"},{\"name\":\"IsValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsRunning\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsNotValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"ValidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"InvalidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"Flags\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":[\"value__\",\"None\",\"ValidateOnAttaching\",\"ValidateOnFocusing\",\"ValidateOnUnfocusing\",\"ValidateOnValueChanged\",\"ForceMakeValidWhenFocused\"]},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Object\"},{\"name\":\"ValuePropertyName\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"String\"},{\"name\":\"ForceValidateCommand\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"ICommand\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"EmailValidationBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"MinimumLength\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":\"Int32\"},{\"name\":\"MaximumLength\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":\"Int32\"},{\"name\":\"DecorationFlags\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":[\"value__\",\"None\",\"TrimStart\",\"TrimEnd\",\"Trim\",\"NullToEmpty\",\"NormalizeWhiteSpace\"]},{\"name\":\"RegexPattern\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":\"String\"},{\"name\":\"RegexOptions\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":[\"value__\",\"None\",\"IgnoreCase\",\"Multiline\",\"ExplicitCapture\",\"Compiled\",\"Singleline\",\"IgnorePatternWhitespace\",\"RightToLeft\",\"ECMAScript\",\"CultureInvariant\",\"NonBacktracking\"]},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\\u00601\",\"type\":\"String\"},{\"name\":\"IsValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsRunning\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsNotValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"ValidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"InvalidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"Flags\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":[\"value__\",\"None\",\"ValidateOnAttaching\",\"ValidateOnFocusing\",\"ValidateOnUnfocusing\",\"ValidateOnValueChanged\",\"ForceMakeValidWhenFocused\"]},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Object\"},{\"name\":\"ValuePropertyName\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"String\"},{\"name\":\"ForceValidateCommand\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"ICommand\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MultiValidationBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.MultiValidationBehavior\",\"type\":\"IList\\u00601\"},{\"name\":\"Errors\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.MultiValidationBehavior\",\"type\":\"List\\u00601\"},{\"name\":\"IsValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsRunning\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsNotValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"ValidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"InvalidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"Flags\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":[\"value__\",\"None\",\"ValidateOnAttaching\",\"ValidateOnFocusing\",\"ValidateOnUnfocusing\",\"ValidateOnValueChanged\",\"ForceMakeValidWhenFocused\"]},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Object\"},{\"name\":\"ValuePropertyName\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"String\"},{\"name\":\"ForceValidateCommand\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"ICommand\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Error\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.MultiValidationBehavior\",\"type\":\"Object\",\"isAttached\":true}]},{\"name\":\"NumericValidationBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"MinimumValue\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.NumericValidationBehavior\",\"type\":\"Double\"},{\"name\":\"MaximumValue\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.NumericValidationBehavior\",\"type\":\"Double\"},{\"name\":\"MinimumDecimalPlaces\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.NumericValidationBehavior\",\"type\":\"Int32\"},{\"name\":\"MaximumDecimalPlaces\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.NumericValidationBehavior\",\"type\":\"Int32\"},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\\u00601\",\"type\":\"String\"},{\"name\":\"IsValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsRunning\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsNotValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"ValidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"InvalidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"Flags\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":[\"value__\",\"None\",\"ValidateOnAttaching\",\"ValidateOnFocusing\",\"ValidateOnUnfocusing\",\"ValidateOnValueChanged\",\"ForceMakeValidWhenFocused\"]},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Object\"},{\"name\":\"ValuePropertyName\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"String\"},{\"name\":\"ForceValidateCommand\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"ICommand\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RequiredStringValidationBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"RequiredString\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.RequiredStringValidationBehavior\",\"type\":\"String\"},{\"name\":\"ExactMatch\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.RequiredStringValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\\u00601\",\"type\":\"String\"},{\"name\":\"IsValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsRunning\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsNotValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"ValidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"InvalidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"Flags\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":[\"value__\",\"None\",\"ValidateOnAttaching\",\"ValidateOnFocusing\",\"ValidateOnUnfocusing\",\"ValidateOnValueChanged\",\"ForceMakeValidWhenFocused\"]},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Object\"},{\"name\":\"ValuePropertyName\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"String\"},{\"name\":\"ForceValidateCommand\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"ICommand\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TextValidationBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"MinimumLength\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":\"Int32\"},{\"name\":\"MaximumLength\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":\"Int32\"},{\"name\":\"DecorationFlags\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":[\"value__\",\"None\",\"TrimStart\",\"TrimEnd\",\"Trim\",\"NullToEmpty\",\"NormalizeWhiteSpace\"]},{\"name\":\"RegexPattern\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":\"String\"},{\"name\":\"RegexOptions\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":[\"value__\",\"None\",\"IgnoreCase\",\"Multiline\",\"ExplicitCapture\",\"Compiled\",\"Singleline\",\"IgnorePatternWhitespace\",\"RightToLeft\",\"ECMAScript\",\"CultureInvariant\",\"NonBacktracking\"]},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\\u00601\",\"type\":\"String\"},{\"name\":\"IsValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsRunning\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsNotValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"ValidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"InvalidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"Flags\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":[\"value__\",\"None\",\"ValidateOnAttaching\",\"ValidateOnFocusing\",\"ValidateOnUnfocusing\",\"ValidateOnValueChanged\",\"ForceMakeValidWhenFocused\"]},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Object\"},{\"name\":\"ValuePropertyName\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"String\"},{\"name\":\"ForceValidateCommand\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"ICommand\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"UriValidationBehavior\",\"namespace\":\"CommunityToolkit.Maui.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"UriKind\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.UriValidationBehavior\",\"type\":[\"value__\",\"RelativeOrAbsolute\",\"Absolute\",\"Relative\"]},{\"name\":\"MinimumLength\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":\"Int32\"},{\"name\":\"MaximumLength\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":\"Int32\"},{\"name\":\"DecorationFlags\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":[\"value__\",\"None\",\"TrimStart\",\"TrimEnd\",\"Trim\",\"NullToEmpty\",\"NormalizeWhiteSpace\"]},{\"name\":\"RegexPattern\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":\"String\"},{\"name\":\"RegexOptions\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.TextValidationBehavior\",\"type\":[\"value__\",\"None\",\"IgnoreCase\",\"Multiline\",\"ExplicitCapture\",\"Compiled\",\"Singleline\",\"IgnorePatternWhitespace\",\"RightToLeft\",\"ECMAScript\",\"CultureInvariant\",\"NonBacktracking\"]},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\\u00601\",\"type\":\"String\"},{\"name\":\"IsValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsRunning\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsNotValid\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Boolean\"},{\"name\":\"ValidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"InvalidStyle\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Style\"},{\"name\":\"Flags\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":[\"value__\",\"None\",\"ValidateOnAttaching\",\"ValidateOnFocusing\",\"ValidateOnUnfocusing\",\"ValidateOnValueChanged\",\"ForceMakeValidWhenFocused\"]},{\"name\":\"Value\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"Object\"},{\"name\":\"ValuePropertyName\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"String\"},{\"name\":\"ForceValidateCommand\",\"namespace\":\"CommunityToolkit.Maui.Behaviors.ValidationBehavior\",\"type\":\"ICommand\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FadeAnimation\",\"namespace\":\"CommunityToolkit.Maui.Animations\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Opacity\",\"namespace\":\"CommunityToolkit.Maui.Animations.FadeAnimation\",\"type\":\"Double\"},{\"name\":\"Length\",\"namespace\":\"CommunityToolkit.Maui.Animations.BaseAnimation\\u00601\",\"type\":\"UInt32\"},{\"name\":\"Easing\",\"namespace\":\"CommunityToolkit.Maui.Animations.BaseAnimation\\u00601\",\"type\":\"Easing\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:23 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/MAUIsland.json",
    "content": "{\"xmlns\":\"assembly=MAUIsland\",\"types\":[{\"name\":\"App\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"RequestedThemeChanged\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPopped\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPopping\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPushed\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPushing\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PageAppearing\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PageDisappearing\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"AppLinks\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"IAppLinks\"},{\"name\":\"MainPage\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"Page\"},{\"name\":\"Properties\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"IDictionary\\u00602\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"NavigationProxy\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"ResourceDictionary\"},{\"name\":\"UserAppTheme\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":[\"value__\",\"Unspecified\",\"Light\",\"Dark\"]},{\"name\":\"PlatformAppTheme\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":[\"value__\",\"Unspecified\",\"Light\",\"Dark\"]},{\"name\":\"RequestedTheme\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":[\"value__\",\"Unspecified\",\"Light\",\"Dark\"]},{\"name\":\"Windows\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AppShell\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"Navigated\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Navigating\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CurrentPage\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Page\"},{\"name\":\"FlyoutVerticalScrollMode\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":[\"value__\",\"Disabled\",\"Enabled\",\"Auto\"]},{\"name\":\"FlyoutIcon\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"ImageSource\"},{\"name\":\"CurrentItem\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"ShellItem\"},{\"name\":\"CurrentState\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"ShellNavigationState\"},{\"name\":\"FlyoutBackgroundImage\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"ImageSource\"},{\"name\":\"FlyoutBackgroundImageAspect\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":[\"value__\",\"AspectFit\",\"AspectFill\",\"Fill\",\"Center\"]},{\"name\":\"FlyoutBackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\"},{\"name\":\"FlyoutBackground\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Brush\"},{\"name\":\"FlyoutBackdrop\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Brush\"},{\"name\":\"FlyoutWidth\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Double\"},{\"name\":\"FlyoutHeight\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Double\"},{\"name\":\"FlyoutBehavior\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":[\"value__\",\"Disabled\",\"Flyout\",\"Locked\"]},{\"name\":\"FlyoutHeader\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Object\"},{\"name\":\"FlyoutFooter\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Object\"},{\"name\":\"FlyoutHeaderBehavior\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":[\"value__\",\"Default\",\"Fixed\",\"Scroll\",\"CollapseOnScroll\"]},{\"name\":\"FlyoutHeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\"},{\"name\":\"FlyoutFooterTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\"},{\"name\":\"FlyoutIsPresented\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Boolean\"},{\"name\":\"Items\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"IList\\u00601\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\"},{\"name\":\"MenuItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\"},{\"name\":\"FlyoutItems\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"IEnumerable\"},{\"name\":\"FlyoutContent\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Object\"},{\"name\":\"FlyoutContentTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"FlyoutItemIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Boolean\",\"isAttached\":true},{\"name\":\"MenuItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\",\"isAttached\":true},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\",\"isAttached\":true},{\"name\":\"BackButtonBehavior\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"BackButtonBehavior\",\"isAttached\":true},{\"name\":\"PresentationMode\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":[\"value__\",\"NotAnimated\",\"Animated\",\"Modal\",\"ModalAnimated\",\"ModalNotAnimated\"],\"isAttached\":true},{\"name\":\"FlyoutBehavior\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":[\"value__\",\"Disabled\",\"Flyout\",\"Locked\"],\"isAttached\":true},{\"name\":\"FlyoutWidth\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Double\",\"isAttached\":true},{\"name\":\"FlyoutHeight\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Double\",\"isAttached\":true},{\"name\":\"NavBarIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Boolean\",\"isAttached\":true},{\"name\":\"NavBarHasShadow\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Boolean\",\"isAttached\":true},{\"name\":\"SearchHandler\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"SearchHandler\",\"isAttached\":true},{\"name\":\"TabBarIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Boolean\",\"isAttached\":true},{\"name\":\"TitleView\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"View\",\"isAttached\":true},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"DisabledColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"ForegroundColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"TabBarBackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"TabBarDisabledColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"TabBarForegroundColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"TabBarTitleColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"TabBarUnselectedColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"TitleColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"UnselectedColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"FlyoutBackdrop\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Brush\",\"isAttached\":true}]},{\"name\":\"ChatBubbleContentView\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ComponentData\",\"namespace\":\"MAUIsland.ChatBubbleContentView\",\"type\":\"ChatMessageModel\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChatPageDesktopLayout\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChatPagePhoneLayout\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"LoginClicked\",\"namespace\":\"MAUIsland.ChatPagePhoneLayout\",\"type\":\"LoginEventHandler\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChatPageTabletLayout\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LoginFormContentView\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"LoginClicked\",\"namespace\":\"MAUIsland.LoginFormContentView\",\"type\":\"LoginEventHandler\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RegisterFormContentView\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"RegisterClick\",\"namespace\":\"MAUIsland.RegisterFormContentView\",\"type\":\"RegisterEventHandler\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChatPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AuthenticatePopup\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BrandIconContentView\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"DetailClicked\",\"namespace\":\"MAUIsland.BrandIconContentView\",\"type\":\"DetailEventHandler\",\"isEvent\":true},{\"name\":\"DetailInNewWindowClicked\",\"namespace\":\"MAUIsland.BrandIconContentView\",\"type\":\"DetailInNewWindowEventHandler\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TapCommand\",\"namespace\":\"MAUIsland.BrandIconContentView\",\"type\":\"ICommand\"},{\"name\":\"ComponentData\",\"namespace\":\"MAUIsland.BrandIconContentView\",\"type\":\"ControlGroupInfo\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ControlCardContentView\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"DetailClicked\",\"namespace\":\"MAUIsland.ControlCardContentView\",\"type\":\"DetailEventHandler\",\"isEvent\":true},{\"name\":\"DetailInNewWindowClicked\",\"namespace\":\"MAUIsland.ControlCardContentView\",\"type\":\"DetailInNewWindowEventHandler\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TapCommand\",\"namespace\":\"MAUIsland.ControlCardContentView\",\"type\":\"ICommand\"},{\"name\":\"ComponentData\",\"namespace\":\"MAUIsland.ControlCardContentView\",\"type\":\"IGalleryCardInfo\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SyncfusionCardContentView\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"DetailClicked\",\"namespace\":\"MAUIsland.SyncfusionCardContentView\",\"type\":\"DetailEventHandler\",\"isEvent\":true},{\"name\":\"DetailInNewWindowClicked\",\"namespace\":\"MAUIsland.SyncfusionCardContentView\",\"type\":\"DetailInNewWindowEventHandler\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TapCommand\",\"namespace\":\"MAUIsland.SyncfusionCardContentView\",\"type\":\"ICommand\"},{\"name\":\"ComponentData\",\"namespace\":\"MAUIsland.SyncfusionCardContentView\",\"type\":\"IGalleryCardInfo\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CardsSearchHandler\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"SelectCard\",\"namespace\":\"MAUIsland.CardsSearchHandler\",\"type\":\"SelectCardEventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Cards\",\"namespace\":\"MAUIsland.CardsSearchHandler\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Boolean\"},{\"name\":\"Keyboard\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Keyboard\"},{\"name\":\"HorizontalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"VerticalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Color\"},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"CancelButtonColor\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Color\"},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Double\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Boolean\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Color\"},{\"name\":\"Placeholder\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Color\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"ClearIcon\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"ImageSource\"},{\"name\":\"ClearIconHelpText\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"ClearIconName\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"ClearPlaceholderCommand\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"ICommand\"},{\"name\":\"ClearPlaceholderCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Object\"},{\"name\":\"ClearPlaceholderEnabled\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Boolean\"},{\"name\":\"ClearPlaceholderHelpText\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"ClearPlaceholderIcon\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"ImageSource\"},{\"name\":\"ClearPlaceholderName\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Object\"},{\"name\":\"DisplayMemberName\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"IsSearchEnabled\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Boolean\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"IEnumerable\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"DataTemplate\"},{\"name\":\"Query\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"QueryIcon\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"ImageSource\"},{\"name\":\"QueryIconHelpText\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"QueryIconName\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"SearchBoxVisibility\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":[\"value__\",\"Hidden\",\"Collapsible\",\"Expanded\"]},{\"name\":\"SelectedItem\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Object\"},{\"name\":\"ShowsResults\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ActivityIndicatorPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AppSettingsJsonPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ButtonPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CarouselViewPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CheckBoxPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CollectionViewPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DatePickerPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"EditorPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"EntryPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FramePage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GridPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"HorizontalStackLayoutPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ImageButtonPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IndicatorViewPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LabelPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MenuBarPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PickerPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PopupPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ProgressBarPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RadioButtonPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RefreshViewPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SearchBarPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SliderPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"StackLayoutPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"StepperPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SwipeViewPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SwitchPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TabbedPagePage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"CurrentPageChanged\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PagesChanged\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"NotifyCollectionChangedEventHandler\",\"isEvent\":true},{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"BarBackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.TabbedPage\",\"type\":\"Color\"},{\"name\":\"BarBackground\",\"namespace\":\"Microsoft.Maui.Controls.TabbedPage\",\"type\":\"Brush\"},{\"name\":\"BarTextColor\",\"namespace\":\"Microsoft.Maui.Controls.TabbedPage\",\"type\":\"Color\"},{\"name\":\"UnselectedTabColor\",\"namespace\":\"Microsoft.Maui.Controls.TabbedPage\",\"type\":\"Color\"},{\"name\":\"SelectedTabColor\",\"namespace\":\"Microsoft.Maui.Controls.TabbedPage\",\"type\":\"Color\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"IEnumerable\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"DataTemplate\"},{\"name\":\"SelectedItem\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"Object\"},{\"name\":\"CurrentPage\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"Page\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"IList\\u00601\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Index\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"Int32\",\"isAttached\":true}]},{\"name\":\"CommunityPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"NewsPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TableViewPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TimePickerPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"VerticalStackLayoutPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ZXingNetMauiPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ControlsByGroupPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GalleryPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfAvatarViewPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfBadgeViewPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfBarcodeGeneratorPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfBusyIndicatorPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfCartesianChartPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfCircularChartPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfComboBoxPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfDataGridPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfListViewPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfMapsViewPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfRadialGaugePage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfRangeSelectorPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DrawingViewPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MediaElementPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ControlActivityCardContentView\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ApplicationNew\",\"namespace\":\"MAUIsland.ControlActivityCardContentView\",\"type\":\"ApplicationNew\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"HomePage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SettingsPage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AcrylicWindow\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ModalPopped\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPopping\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPushed\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPushing\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PopCanceled\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Created\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Resumed\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Activated\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Deactivated\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Stopped\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Destroying\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Backgrounding\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DisplayDensityChanged\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Overlays\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"IReadOnlyCollection\\u00601\"},{\"name\":\"VisualDiagnosticsOverlay\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"IVisualDiagnosticsOverlay\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"String\"},{\"name\":\"Page\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Page\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"MaximumWidth\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"MaximumHeight\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"MinimumWidth\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"MinimumHeight\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"DisplayDensity\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Single\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MicaWindow\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ModalPopped\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPopping\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPushed\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPushing\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PopCanceled\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Created\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Resumed\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Activated\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Deactivated\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Stopped\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Destroying\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Backgrounding\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DisplayDensityChanged\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Overlays\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"IReadOnlyCollection\\u00601\"},{\"name\":\"VisualDiagnosticsOverlay\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"IVisualDiagnosticsOverlay\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"String\"},{\"name\":\"Page\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Page\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"MaximumWidth\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"MaximumHeight\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"MinimumWidth\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"MinimumHeight\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"DisplayDensity\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Single\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"HorizontalIconButton\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PrefixIcon\",\"namespace\":\"MAUIsland.HorizontalIconButton\",\"type\":\"ImageSource\"},{\"name\":\"Text\",\"namespace\":\"MAUIsland.HorizontalIconButton\",\"type\":\"String\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IconLabel\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PrefixIcon\",\"namespace\":\"MAUIsland.IconLabel\",\"type\":\"ImageSource\"},{\"name\":\"Text\",\"namespace\":\"MAUIsland.IconLabel\",\"type\":\"String\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"HorizontalWrapLayout\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.StackLayout\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"Spacing\",\"namespace\":\"Microsoft.Maui.Controls.StackBase\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RoundedEntry\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PrefixIcon\",\"namespace\":\"MAUIsland.RoundedEntry\",\"type\":\"ImageSource\"},{\"name\":\"Placeholder\",\"namespace\":\"MAUIsland.RoundedEntry\",\"type\":\"String\"},{\"name\":\"Text\",\"namespace\":\"MAUIsland.RoundedEntry\",\"type\":\"String\"},{\"name\":\"IsPassword\",\"namespace\":\"MAUIsland.RoundedEntry\",\"type\":\"Boolean\"},{\"name\":\"Keyboard\",\"namespace\":\"MAUIsland.RoundedEntry\",\"type\":\"Keyboard\"},{\"name\":\"IsValid\",\"namespace\":\"MAUIsland.RoundedEntry\",\"type\":\"Boolean\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SourceCodeExpander\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"OutputFormattedString\",\"namespace\":\"MAUIsland.SourceCodeExpander\",\"type\":\"FormattedString\"},{\"name\":\"Code\",\"namespace\":\"MAUIsland.SourceCodeExpander\",\"type\":\"String\"},{\"name\":\"CodeType\",\"namespace\":\"MAUIsland.SourceCodeExpander\",\"type\":[\"value__\",\"CSharp\",\"Xaml\"]},{\"name\":\"ShowCodeType\",\"namespace\":\"MAUIsland.SourceCodeExpander\",\"type\":\"Boolean\"},{\"name\":\"IsExpanding\",\"namespace\":\"MAUIsland.SourceCodeExpander\",\"type\":\"Boolean\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BasePage\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BasePopup\",\"namespace\":\"MAUIsland\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BeginAnimationBehavior\",\"namespace\":\"MAUIsland.Behaviors\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Animation\",\"namespace\":\"MAUIsland.Behaviors.BeginAnimationBehavior\",\"type\":\"AnimationBase\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FadeToAnimation\",\"namespace\":\"MAUIsland.Animations\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Opacity\",\"namespace\":\"MAUIsland.Animations.FadeToAnimation\",\"type\":\"Double\"},{\"name\":\"Target\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":\"VisualElement\"},{\"name\":\"Duration\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":\"String\"},{\"name\":\"Easing\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":[\"value__\",\"BounceIn\",\"BounceOut\",\"CubicIn\",\"CubicInOut\",\"CubicOut\",\"Linear\",\"SinIn\",\"SinInOut\",\"SinOut\",\"SpringIn\",\"SpringOut\"]},{\"name\":\"Delay\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":\"Int32\"},{\"name\":\"RepeatForever\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FadeInAnimation\",\"namespace\":\"MAUIsland.Animations\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Direction\",\"namespace\":\"MAUIsland.Animations.FadeInAnimation\",\"type\":[\"value__\",\"Up\",\"Down\"]},{\"name\":\"Target\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":\"VisualElement\"},{\"name\":\"Duration\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":\"String\"},{\"name\":\"Easing\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":[\"value__\",\"BounceIn\",\"BounceOut\",\"CubicIn\",\"CubicInOut\",\"CubicOut\",\"Linear\",\"SinIn\",\"SinInOut\",\"SinOut\",\"SpringIn\",\"SpringOut\"]},{\"name\":\"Delay\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":\"Int32\"},{\"name\":\"RepeatForever\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FadeOutAnimation\",\"namespace\":\"MAUIsland.Animations\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Direction\",\"namespace\":\"MAUIsland.Animations.FadeOutAnimation\",\"type\":[\"value__\",\"Up\",\"Down\"]},{\"name\":\"Target\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":\"VisualElement\"},{\"name\":\"Duration\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":\"String\"},{\"name\":\"Easing\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":[\"value__\",\"BounceIn\",\"BounceOut\",\"CubicIn\",\"CubicInOut\",\"CubicOut\",\"Linear\",\"SinIn\",\"SinInOut\",\"SinOut\",\"SpringIn\",\"SpringOut\"]},{\"name\":\"Delay\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":\"Int32\"},{\"name\":\"RepeatForever\",\"namespace\":\"MAUIsland.Animations.AnimationBase\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CustomMarker\",\"namespace\":\"MAUIsland.Gallery.Syncfusion\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"MAUIsland.Gallery.Syncfusion.CustomMarker\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Name\",\"namespace\":\"MAUIsland.Gallery.Syncfusion.CustomMarker\",\"type\":\"String\"},{\"name\":\"State\",\"namespace\":\"MAUIsland.Gallery.Syncfusion.CustomMarker\",\"type\":\"String\"},{\"name\":\"Country\",\"namespace\":\"MAUIsland.Gallery.Syncfusion.CustomMarker\",\"type\":\"String\"},{\"name\":\"Time\",\"namespace\":\"MAUIsland.Gallery.Syncfusion.CustomMarker\",\"type\":\"String\"},{\"name\":\"Latitude\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Double\"},{\"name\":\"Longitude\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Double\"},{\"name\":\"IconType\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":[\"value__\",\"Circle\",\"Diamond\",\"Square\",\"Triangle\"]},{\"name\":\"IconHeight\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Double\"},{\"name\":\"IconWidth\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Double\"},{\"name\":\"IconFill\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Brush\"},{\"name\":\"IconStroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Brush\"},{\"name\":\"IconStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Double\"},{\"name\":\"HorizontalAlignment\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"VerticalAlignment\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"Offset\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:23 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Microsoft.Maui.Controls.Compatibility.json",
    "content": "{\"xmlns\":\"assembly=Microsoft.Maui.Controls.Compatibility\",\"types\":[{\"name\":\"NativeViewWrapper\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Platform.UWP\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ArrangeOverrideDelegate\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Platform.UWP.NativeViewWrapper\",\"type\":\"ArrangeOverrideDelegate\"},{\"name\":\"GetDesiredSizeDelegate\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Platform.UWP.NativeViewWrapper\",\"type\":\"GetDesiredSizeDelegate\"},{\"name\":\"MeasureOverrideDelegate\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Platform.UWP.NativeViewWrapper\",\"type\":\"MeasureOverrideDelegate\"},{\"name\":\"NativeElement\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Platform.UWP.NativeViewWrapper\",\"type\":\"FrameworkElement\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:24 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Microsoft.Maui.Controls.json",
    "content": "{\"xmlns\":\"http://schemas.microsoft.com/dotnet/2021/maui\",\"types\":[{\"name\":\"ActivityIndicator\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Color\",\"namespace\":\"Microsoft.Maui.Controls.ActivityIndicator\",\"type\":\"Color\"},{\"name\":\"IsRunning\",\"namespace\":\"Microsoft.Maui.Controls.ActivityIndicator\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AdaptiveTrigger\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"IsActiveChanged\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"MinWindowHeight\",\"namespace\":\"Microsoft.Maui.Controls.AdaptiveTrigger\",\"type\":\"Double\"},{\"name\":\"MinWindowWidth\",\"namespace\":\"Microsoft.Maui.Controls.AdaptiveTrigger\",\"type\":\"Double\"},{\"name\":\"IsActive\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"Boolean\"},{\"name\":\"IsAttached\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Application\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"RequestedThemeChanged\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPopped\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPopping\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPushed\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPushing\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PageAppearing\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PageDisappearing\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"AppLinks\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"IAppLinks\"},{\"name\":\"MainPage\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"Page\"},{\"name\":\"Properties\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"IDictionary\\u00602\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"NavigationProxy\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"ResourceDictionary\"},{\"name\":\"UserAppTheme\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":[\"value__\",\"Unspecified\",\"Light\",\"Dark\"]},{\"name\":\"PlatformAppTheme\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":[\"value__\",\"Unspecified\",\"Light\",\"Dark\"]},{\"name\":\"RequestedTheme\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":[\"value__\",\"Unspecified\",\"Light\",\"Dark\"]},{\"name\":\"Windows\",\"namespace\":\"Microsoft.Maui.Controls.Application\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AppLinkEntry\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"AppLinkUri\",\"namespace\":\"Microsoft.Maui.Controls.AppLinkEntry\",\"type\":\"Uri\"},{\"name\":\"Description\",\"namespace\":\"Microsoft.Maui.Controls.AppLinkEntry\",\"type\":\"String\"},{\"name\":\"IsLinkActive\",\"namespace\":\"Microsoft.Maui.Controls.AppLinkEntry\",\"type\":\"Boolean\"},{\"name\":\"KeyValues\",\"namespace\":\"Microsoft.Maui.Controls.AppLinkEntry\",\"type\":\"IDictionary\\u00602\"},{\"name\":\"Thumbnail\",\"namespace\":\"Microsoft.Maui.Controls.AppLinkEntry\",\"type\":\"ImageSource\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.AppLinkEntry\",\"type\":\"String\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Border\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"View\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":[\"Zero\"]},{\"name\":\"StrokeShape\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"IShape\"},{\"name\":\"Stroke\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"DoubleCollection\"},{\"name\":\"StrokeDashOffset\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":[\"value__\",\"Flat\",\"Square\",\"Round\"]},{\"name\":\"StrokeLineJoin\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":[\"value__\",\"Miter\",\"Bevel\",\"Round\"]},{\"name\":\"StrokeMiterLimit\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Double\"},{\"name\":\"StrokeDashPattern\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Single[]\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BoxView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Color\",\"namespace\":\"Microsoft.Maui.Controls.BoxView\",\"type\":\"Color\"},{\"name\":\"CornerRadius\",\"namespace\":\"Microsoft.Maui.Controls.BoxView\",\"type\":[]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Button\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Clicked\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Pressed\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Released\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":[\"Zero\"]},{\"name\":\"LineBreakMode\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":[\"value__\",\"NoWrap\",\"WordWrap\",\"CharacterWrap\",\"HeadTruncation\",\"TailTruncation\",\"MiddleTruncation\"]},{\"name\":\"BorderColor\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"Color\"},{\"name\":\"CornerRadius\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"Int32\"},{\"name\":\"BorderWidth\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"Double\"},{\"name\":\"ContentLayout\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"ButtonContentLayout\"},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"Object\"},{\"name\":\"ImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"ImageSource\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"Double\"},{\"name\":\"IsPressed\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"Boolean\"},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":\"Boolean\"},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.Button\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CarouselPage\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"CurrentPageChanged\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PagesChanged\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"NotifyCollectionChangedEventHandler\",\"isEvent\":true},{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"IEnumerable\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"DataTemplate\"},{\"name\":\"SelectedItem\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"Object\"},{\"name\":\"CurrentPage\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"ContentPage\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"IList\\u00601\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Index\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"Int32\",\"isAttached\":true}]},{\"name\":\"EntryCell\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Completed\",\"namespace\":\"Microsoft.Maui.Controls.EntryCell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ForceUpdateSizeRequested\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Tapped\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HorizontalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.EntryCell\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"VerticalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.EntryCell\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"Keyboard\",\"namespace\":\"Microsoft.Maui.Controls.EntryCell\",\"type\":\"Keyboard\"},{\"name\":\"Label\",\"namespace\":\"Microsoft.Maui.Controls.EntryCell\",\"type\":\"String\"},{\"name\":\"LabelColor\",\"namespace\":\"Microsoft.Maui.Controls.EntryCell\",\"type\":\"Color\"},{\"name\":\"Placeholder\",\"namespace\":\"Microsoft.Maui.Controls.EntryCell\",\"type\":\"String\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.EntryCell\",\"type\":\"String\"},{\"name\":\"ContextActions\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"IList\\u00601\"},{\"name\":\"HasContextActions\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"IsContextActionsLegacyModeEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Double\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"RenderHeight\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Double\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ImageCell\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ForceUpdateSizeRequested\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Tapped\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ImageSource\",\"namespace\":\"Microsoft.Maui.Controls.ImageCell\",\"type\":\"ImageSource\"},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.TextCell\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.TextCell\",\"type\":\"Object\"},{\"name\":\"Detail\",\"namespace\":\"Microsoft.Maui.Controls.TextCell\",\"type\":\"String\"},{\"name\":\"DetailColor\",\"namespace\":\"Microsoft.Maui.Controls.TextCell\",\"type\":\"Color\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.TextCell\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.TextCell\",\"type\":\"Color\"},{\"name\":\"ContextActions\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"IList\\u00601\"},{\"name\":\"HasContextActions\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"IsContextActionsLegacyModeEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Double\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"RenderHeight\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Double\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SwitchCell\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"OnChanged\",\"namespace\":\"Microsoft.Maui.Controls.SwitchCell\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ForceUpdateSizeRequested\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Tapped\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"OnColor\",\"namespace\":\"Microsoft.Maui.Controls.SwitchCell\",\"type\":\"Color\"},{\"name\":\"On\",\"namespace\":\"Microsoft.Maui.Controls.SwitchCell\",\"type\":\"Boolean\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.SwitchCell\",\"type\":\"String\"},{\"name\":\"ContextActions\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"IList\\u00601\"},{\"name\":\"HasContextActions\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"IsContextActionsLegacyModeEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Double\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"RenderHeight\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Double\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TextCell\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ForceUpdateSizeRequested\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Tapped\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.TextCell\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.TextCell\",\"type\":\"Object\"},{\"name\":\"Detail\",\"namespace\":\"Microsoft.Maui.Controls.TextCell\",\"type\":\"String\"},{\"name\":\"DetailColor\",\"namespace\":\"Microsoft.Maui.Controls.TextCell\",\"type\":\"Color\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.TextCell\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.TextCell\",\"type\":\"Color\"},{\"name\":\"ContextActions\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"IList\\u00601\"},{\"name\":\"HasContextActions\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"IsContextActionsLegacyModeEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Double\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"RenderHeight\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Double\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ViewCell\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ForceUpdateSizeRequested\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Tapped\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"View\",\"namespace\":\"Microsoft.Maui.Controls.ViewCell\",\"type\":\"View\"},{\"name\":\"ContextActions\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"IList\\u00601\"},{\"name\":\"HasContextActions\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"IsContextActionsLegacyModeEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Double\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Boolean\"},{\"name\":\"RenderHeight\",\"namespace\":\"Microsoft.Maui.Controls.Cell\",\"type\":\"Double\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CheckBox\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"CheckedChanged\",\"namespace\":\"Microsoft.Maui.Controls.CheckBox\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Color\",\"namespace\":\"Microsoft.Maui.Controls.CheckBox\",\"type\":\"Color\"},{\"name\":\"IsChecked\",\"namespace\":\"Microsoft.Maui.Controls.CheckBox\",\"type\":\"Boolean\"},{\"name\":\"Foreground\",\"namespace\":\"Microsoft.Maui.Controls.CheckBox\",\"type\":\"Paint\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ClickGestureRecognizer\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Clicked\",\"namespace\":\"Microsoft.Maui.Controls.ClickGestureRecognizer\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.ClickGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.ClickGestureRecognizer\",\"type\":\"Object\"},{\"name\":\"NumberOfClicksRequired\",\"namespace\":\"Microsoft.Maui.Controls.ClickGestureRecognizer\",\"type\":\"Int32\"},{\"name\":\"Buttons\",\"namespace\":\"Microsoft.Maui.Controls.ClickGestureRecognizer\",\"type\":[\"value__\",\"Primary\",\"Secondary\"]},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColumnDefinition\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.ColumnDefinition\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.ColumnDefinition\",\"type\":[\"Auto\",\"Star\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CompareStateTrigger\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"IsActiveChanged\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Property\",\"namespace\":\"Microsoft.Maui.Controls.CompareStateTrigger\",\"type\":\"Object\"},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.CompareStateTrigger\",\"type\":\"Object\"},{\"name\":\"IsActive\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"Boolean\"},{\"name\":\"IsAttached\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ContentPage\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ContentPresenter\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentPresenter\",\"type\":\"View\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ContentView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MenuFlyout\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.MenuFlyout\",\"type\":\"IMenuElement\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.MenuFlyout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.MenuFlyout\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"ContextFlyout\",\"namespace\":\"Microsoft.Maui.Controls.FlyoutBase\",\"type\":\"FlyoutBase\",\"isAttached\":true}]},{\"name\":\"DatePicker\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"DateSelected\",\"namespace\":\"Microsoft.Maui.Controls.DatePicker\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Date\",\"namespace\":\"Microsoft.Maui.Controls.DatePicker\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"Format\",\"namespace\":\"Microsoft.Maui.Controls.DatePicker\",\"type\":\"String\"},{\"name\":\"MaximumDate\",\"namespace\":\"Microsoft.Maui.Controls.DatePicker\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"MinimumDate\",\"namespace\":\"Microsoft.Maui.Controls.DatePicker\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.DatePicker\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.DatePicker\",\"type\":\"Double\"},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.DatePicker\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.DatePicker\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.DatePicker\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.DatePicker\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DeviceStateTrigger\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"IsActiveChanged\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Device\",\"namespace\":\"Microsoft.Maui.Controls.DeviceStateTrigger\",\"type\":\"String\"},{\"name\":\"IsActive\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"Boolean\"},{\"name\":\"IsAttached\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DragGestureRecognizer\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"DropCompleted\",\"namespace\":\"Microsoft.Maui.Controls.DragGestureRecognizer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DragStarting\",\"namespace\":\"Microsoft.Maui.Controls.DragGestureRecognizer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CanDrag\",\"namespace\":\"Microsoft.Maui.Controls.DragGestureRecognizer\",\"type\":\"Boolean\"},{\"name\":\"DropCompletedCommand\",\"namespace\":\"Microsoft.Maui.Controls.DragGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"DropCompletedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.DragGestureRecognizer\",\"type\":\"Object\"},{\"name\":\"DragStartingCommand\",\"namespace\":\"Microsoft.Maui.Controls.DragGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"DragStartingCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.DragGestureRecognizer\",\"type\":\"Object\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DropGestureRecognizer\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"DragLeave\",\"namespace\":\"Microsoft.Maui.Controls.DropGestureRecognizer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DragOver\",\"namespace\":\"Microsoft.Maui.Controls.DropGestureRecognizer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Drop\",\"namespace\":\"Microsoft.Maui.Controls.DropGestureRecognizer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"AllowDrop\",\"namespace\":\"Microsoft.Maui.Controls.DropGestureRecognizer\",\"type\":\"Boolean\"},{\"name\":\"DragOverCommand\",\"namespace\":\"Microsoft.Maui.Controls.DropGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"DragOverCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.DropGestureRecognizer\",\"type\":\"Object\"},{\"name\":\"DragLeaveCommand\",\"namespace\":\"Microsoft.Maui.Controls.DropGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"DragLeaveCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.DropGestureRecognizer\",\"type\":\"Object\"},{\"name\":\"DropCommand\",\"namespace\":\"Microsoft.Maui.Controls.DropGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"DropCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.DropGestureRecognizer\",\"type\":\"Object\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Editor\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Completed\",\"namespace\":\"Microsoft.Maui.Controls.Editor\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextChanged\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"AutoSize\",\"namespace\":\"Microsoft.Maui.Controls.Editor\",\"type\":[\"value__\",\"Disabled\",\"TextChanges\"]},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.Editor\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"IsTextPredictionEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Editor\",\"type\":\"Boolean\"},{\"name\":\"CursorPosition\",\"namespace\":\"Microsoft.Maui.Controls.Editor\",\"type\":\"Int32\"},{\"name\":\"SelectionLength\",\"namespace\":\"Microsoft.Maui.Controls.Editor\",\"type\":\"Int32\"},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.Editor\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.Editor\",\"type\":\"Double\"},{\"name\":\"HorizontalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Editor\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"VerticalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Editor\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Editor\",\"type\":\"Boolean\"},{\"name\":\"MaxLength\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Int32\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"String\"},{\"name\":\"Keyboard\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Keyboard\"},{\"name\":\"IsSpellCheckEnabled\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Boolean\"},{\"name\":\"Placeholder\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Color\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Double\"},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Entry\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Completed\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextChanged\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HorizontalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"VerticalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"IsPassword\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Boolean\"},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Boolean\"},{\"name\":\"IsTextPredictionEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Boolean\"},{\"name\":\"ReturnType\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":[\"value__\",\"Default\",\"Done\",\"Go\",\"Next\",\"Search\",\"Send\"]},{\"name\":\"CursorPosition\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Int32\"},{\"name\":\"SelectionLength\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Int32\"},{\"name\":\"ReturnCommand\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"ICommand\"},{\"name\":\"ReturnCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Object\"},{\"name\":\"ClearButtonVisibility\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":[\"value__\",\"Never\",\"WhileEditing\"]},{\"name\":\"MaxLength\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Int32\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"String\"},{\"name\":\"Keyboard\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Keyboard\"},{\"name\":\"IsSpellCheckEnabled\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Boolean\"},{\"name\":\"Placeholder\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Color\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Double\"},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FileImageSource\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.FileImageSource\",\"type\":\"Boolean\"},{\"name\":\"File\",\"namespace\":\"Microsoft.Maui.Controls.FileImageSource\",\"type\":\"String\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FlyoutPage\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"IsPresentedChanged\",\"namespace\":\"Microsoft.Maui.Controls.FlyoutPage\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"BackButtonPressed\",\"namespace\":\"Microsoft.Maui.Controls.FlyoutPage\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Detail\",\"namespace\":\"Microsoft.Maui.Controls.FlyoutPage\",\"type\":\"Page\"},{\"name\":\"IsGestureEnabled\",\"namespace\":\"Microsoft.Maui.Controls.FlyoutPage\",\"type\":\"Boolean\"},{\"name\":\"IsPresented\",\"namespace\":\"Microsoft.Maui.Controls.FlyoutPage\",\"type\":\"Boolean\"},{\"name\":\"Flyout\",\"namespace\":\"Microsoft.Maui.Controls.FlyoutPage\",\"type\":\"Page\"},{\"name\":\"FlyoutLayoutBehavior\",\"namespace\":\"Microsoft.Maui.Controls.FlyoutPage\",\"type\":[\"value__\",\"Default\",\"SplitOnLandscape\",\"Split\",\"Popover\",\"SplitOnPortrait\"]},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FontImageSource\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.FontImageSource\",\"type\":\"Boolean\"},{\"name\":\"Color\",\"namespace\":\"Microsoft.Maui.Controls.FontImageSource\",\"type\":\"Color\"},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.FontImageSource\",\"type\":\"String\"},{\"name\":\"Glyph\",\"namespace\":\"Microsoft.Maui.Controls.FontImageSource\",\"type\":\"String\"},{\"name\":\"Size\",\"namespace\":\"Microsoft.Maui.Controls.FontImageSource\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.FontImageSource\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FormattedString\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Spans\",\"namespace\":\"Microsoft.Maui.Controls.FormattedString\",\"type\":\"IList\\u00601\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HasShadow\",\"namespace\":\"Microsoft.Maui.Controls.Frame\",\"type\":\"Boolean\"},{\"name\":\"BorderColor\",\"namespace\":\"Microsoft.Maui.Controls.Frame\",\"type\":\"Color\"},{\"name\":\"CornerRadius\",\"namespace\":\"Microsoft.Maui.Controls.Frame\",\"type\":\"Single\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GestureElement\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.GestureElement\",\"type\":\"IList\\u00601\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GestureRecognizer\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GradientStop\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Color\",\"namespace\":\"Microsoft.Maui.Controls.GradientStop\",\"type\":\"Color\"},{\"name\":\"Offset\",\"namespace\":\"Microsoft.Maui.Controls.GradientStop\",\"type\":\"Single\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GraphicsView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"StartHoverInteraction\",\"namespace\":\"Microsoft.Maui.Controls.GraphicsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MoveHoverInteraction\",\"namespace\":\"Microsoft.Maui.Controls.GraphicsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"EndHoverInteraction\",\"namespace\":\"Microsoft.Maui.Controls.GraphicsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"StartInteraction\",\"namespace\":\"Microsoft.Maui.Controls.GraphicsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DragInteraction\",\"namespace\":\"Microsoft.Maui.Controls.GraphicsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"EndInteraction\",\"namespace\":\"Microsoft.Maui.Controls.GraphicsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"CancelInteraction\",\"namespace\":\"Microsoft.Maui.Controls.GraphicsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Drawable\",\"namespace\":\"Microsoft.Maui.Controls.GraphicsView\",\"type\":\"IDrawable\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Image\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Aspect\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":[\"value__\",\"AspectFit\",\"AspectFill\",\"Fill\",\"Center\"]},{\"name\":\"IsLoading\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":\"Boolean\"},{\"name\":\"IsOpaque\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":\"Boolean\"},{\"name\":\"IsAnimationPlaying\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":\"Boolean\"},{\"name\":\"Source\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":\"ImageSource\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"StreamImageSource\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.StreamImageSource\",\"type\":\"Boolean\"},{\"name\":\"Stream\",\"namespace\":\"Microsoft.Maui.Controls.StreamImageSource\",\"type\":\"Func\\u00602\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"UriImageSource\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.UriImageSource\",\"type\":\"Boolean\"},{\"name\":\"CacheValidity\",\"namespace\":\"Microsoft.Maui.Controls.UriImageSource\",\"type\":[\"Zero\",\"MaxValue\",\"MinValue\",\"NanosecondsPerTick\",\"TicksPerMicrosecond\",\"TicksPerMillisecond\",\"TicksPerSecond\",\"TicksPerMinute\",\"TicksPerHour\",\"TicksPerDay\"]},{\"name\":\"CachingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.UriImageSource\",\"type\":\"Boolean\"},{\"name\":\"Uri\",\"namespace\":\"Microsoft.Maui.Controls.UriImageSource\",\"type\":\"Uri\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ImageButton\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Clicked\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Pressed\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Released\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"BorderColor\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":\"Color\"},{\"name\":\"CornerRadius\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":\"Int32\"},{\"name\":\"BorderWidth\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":\"Double\"},{\"name\":\"Aspect\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":[\"value__\",\"AspectFit\",\"AspectFill\",\"Fill\",\"Center\"]},{\"name\":\"IsLoading\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":\"Boolean\"},{\"name\":\"IsPressed\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":\"Boolean\"},{\"name\":\"IsOpaque\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":\"Boolean\"},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":\"Object\"},{\"name\":\"Source\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":\"ImageSource\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.ImageButton\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IndicatorView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IndicatorsShape\",\"namespace\":\"Microsoft.Maui.Controls.IndicatorView\",\"type\":[\"value__\",\"Circle\",\"Square\"]},{\"name\":\"IndicatorLayout\",\"namespace\":\"Microsoft.Maui.Controls.IndicatorView\",\"type\":\"IBindableLayout\"},{\"name\":\"Position\",\"namespace\":\"Microsoft.Maui.Controls.IndicatorView\",\"type\":\"Int32\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.IndicatorView\",\"type\":\"Int32\"},{\"name\":\"MaximumVisible\",\"namespace\":\"Microsoft.Maui.Controls.IndicatorView\",\"type\":\"Int32\"},{\"name\":\"IndicatorTemplate\",\"namespace\":\"Microsoft.Maui.Controls.IndicatorView\",\"type\":\"DataTemplate\"},{\"name\":\"HideSingle\",\"namespace\":\"Microsoft.Maui.Controls.IndicatorView\",\"type\":\"Boolean\"},{\"name\":\"IndicatorColor\",\"namespace\":\"Microsoft.Maui.Controls.IndicatorView\",\"type\":\"Color\"},{\"name\":\"SelectedIndicatorColor\",\"namespace\":\"Microsoft.Maui.Controls.IndicatorView\",\"type\":\"Color\"},{\"name\":\"IndicatorSize\",\"namespace\":\"Microsoft.Maui.Controls.IndicatorView\",\"type\":\"Double\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.IndicatorView\",\"type\":\"IEnumerable\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Label\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"FormattedText\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"FormattedString\"},{\"name\":\"HorizontalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"LineBreakMode\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"NoWrap\",\"WordWrap\",\"CharacterWrap\",\"HeadTruncation\",\"TailTruncation\",\"MiddleTruncation\"]},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Double\"},{\"name\":\"VerticalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"TextDecorations\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"None\",\"Underline\",\"Strikethrough\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Boolean\"},{\"name\":\"LineHeight\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Double\"},{\"name\":\"MaxLines\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"Zero\"]},{\"name\":\"TextType\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"Text\",\"Html\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MenuItem\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Clicked\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Object\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"ImageSource\"},{\"name\":\"IsDestructive\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Boolean\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"String\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Boolean\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"IList\\u00601\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Accelerator\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Accelerator\",\"isAttached\":true}]},{\"name\":\"NavigationPage\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Popped\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PoppedToRoot\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Pushed\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"BarBackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"Color\"},{\"name\":\"BarBackground\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"Brush\"},{\"name\":\"BarTextColor\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"Color\"},{\"name\":\"CurrentPage\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"Page\"},{\"name\":\"RootPage\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"Page\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"BackButtonTitle\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"String\",\"isAttached\":true},{\"name\":\"HasBackButton\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"Boolean\",\"isAttached\":true},{\"name\":\"HasNavigationBar\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"Boolean\",\"isAttached\":true},{\"name\":\"TitleIconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"ImageSource\",\"isAttached\":true},{\"name\":\"TitleView\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"View\",\"isAttached\":true},{\"name\":\"IconColor\",\"namespace\":\"Microsoft.Maui.Controls.NavigationPage\",\"type\":\"Color\",\"isAttached\":true}]},{\"name\":\"Page\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Picker\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"SelectedIndexChanged\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"Boolean\"},{\"name\":\"Items\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"IList\\u00601\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"IList\"},{\"name\":\"SelectedIndex\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"Int32\"},{\"name\":\"SelectedItem\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"Object\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"Double\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"String\"},{\"name\":\"TitleColor\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"Color\"},{\"name\":\"HorizontalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"VerticalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"ItemDisplayBinding\",\"namespace\":\"Microsoft.Maui.Controls.Picker\",\"type\":\"BindingBase\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ProgressBar\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ProgressColor\",\"namespace\":\"Microsoft.Maui.Controls.ProgressBar\",\"type\":\"Color\"},{\"name\":\"Progress\",\"namespace\":\"Microsoft.Maui.Controls.ProgressBar\",\"type\":\"Double\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RadioButton\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"CheckedChanged\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"Object\"},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"Object\"},{\"name\":\"IsChecked\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"Boolean\"},{\"name\":\"GroupName\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"Double\"},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"Boolean\"},{\"name\":\"BorderWidth\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"Double\"},{\"name\":\"BorderColor\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"Color\"},{\"name\":\"CornerRadius\",\"namespace\":\"Microsoft.Maui.Controls.RadioButton\",\"type\":\"Int32\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RefreshView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Refreshing\",\"namespace\":\"Microsoft.Maui.Controls.RefreshView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsRefreshing\",\"namespace\":\"Microsoft.Maui.Controls.RefreshView\",\"type\":\"Boolean\"},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.RefreshView\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.RefreshView\",\"type\":\"Object\"},{\"name\":\"RefreshColor\",\"namespace\":\"Microsoft.Maui.Controls.RefreshView\",\"type\":\"Color\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ScrollView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LayoutAreaOverride\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"Zero\"]},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"View\"},{\"name\":\"ContentSize\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"Zero\"]},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\",\"Both\",\"Neither\"]},{\"name\":\"ScrollX\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"Double\"},{\"name\":\"ScrollY\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"Double\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SearchBar\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"SearchButtonPressed\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextChanged\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CancelButtonColor\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":\"Color\"},{\"name\":\"HorizontalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"VerticalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"SearchCommand\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":\"ICommand\"},{\"name\":\"SearchCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":\"Object\"},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"IsTextPredictionEnabled\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":\"Boolean\"},{\"name\":\"CursorPosition\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":\"Int32\"},{\"name\":\"SelectionLength\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":\"Int32\"},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.SearchBar\",\"type\":\"Boolean\"},{\"name\":\"MaxLength\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Int32\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"String\"},{\"name\":\"Keyboard\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Keyboard\"},{\"name\":\"IsSpellCheckEnabled\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Boolean\"},{\"name\":\"Placeholder\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Color\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Double\"},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Shell\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Navigated\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Navigating\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CurrentPage\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Page\"},{\"name\":\"FlyoutVerticalScrollMode\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":[\"value__\",\"Disabled\",\"Enabled\",\"Auto\"]},{\"name\":\"FlyoutIcon\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"ImageSource\"},{\"name\":\"CurrentItem\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"ShellItem\"},{\"name\":\"CurrentState\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"ShellNavigationState\"},{\"name\":\"FlyoutBackgroundImage\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"ImageSource\"},{\"name\":\"FlyoutBackgroundImageAspect\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":[\"value__\",\"AspectFit\",\"AspectFill\",\"Fill\",\"Center\"]},{\"name\":\"FlyoutBackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\"},{\"name\":\"FlyoutBackground\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Brush\"},{\"name\":\"FlyoutBackdrop\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Brush\"},{\"name\":\"FlyoutWidth\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Double\"},{\"name\":\"FlyoutHeight\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Double\"},{\"name\":\"FlyoutBehavior\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":[\"value__\",\"Disabled\",\"Flyout\",\"Locked\"]},{\"name\":\"FlyoutHeader\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Object\"},{\"name\":\"FlyoutFooter\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Object\"},{\"name\":\"FlyoutHeaderBehavior\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":[\"value__\",\"Default\",\"Fixed\",\"Scroll\",\"CollapseOnScroll\"]},{\"name\":\"FlyoutHeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\"},{\"name\":\"FlyoutFooterTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\"},{\"name\":\"FlyoutIsPresented\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Boolean\"},{\"name\":\"Items\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"IList\\u00601\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\"},{\"name\":\"MenuItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\"},{\"name\":\"FlyoutItems\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"IEnumerable\"},{\"name\":\"FlyoutContent\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Object\"},{\"name\":\"FlyoutContentTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"FlyoutItemIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Boolean\",\"isAttached\":true},{\"name\":\"MenuItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\",\"isAttached\":true},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"DataTemplate\",\"isAttached\":true},{\"name\":\"BackButtonBehavior\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"BackButtonBehavior\",\"isAttached\":true},{\"name\":\"PresentationMode\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":[\"value__\",\"NotAnimated\",\"Animated\",\"Modal\",\"ModalAnimated\",\"ModalNotAnimated\"],\"isAttached\":true},{\"name\":\"FlyoutBehavior\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":[\"value__\",\"Disabled\",\"Flyout\",\"Locked\"],\"isAttached\":true},{\"name\":\"FlyoutWidth\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Double\",\"isAttached\":true},{\"name\":\"FlyoutHeight\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Double\",\"isAttached\":true},{\"name\":\"NavBarIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Boolean\",\"isAttached\":true},{\"name\":\"NavBarHasShadow\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Boolean\",\"isAttached\":true},{\"name\":\"SearchHandler\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"SearchHandler\",\"isAttached\":true},{\"name\":\"TabBarIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Boolean\",\"isAttached\":true},{\"name\":\"TitleView\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"View\",\"isAttached\":true},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"DisabledColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"ForegroundColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"TabBarBackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"TabBarDisabledColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"TabBarForegroundColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"TabBarTitleColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"TabBarUnselectedColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"TitleColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"UnselectedColor\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Color\",\"isAttached\":true},{\"name\":\"FlyoutBackdrop\",\"namespace\":\"Microsoft.Maui.Controls.Shell\",\"type\":\"Brush\",\"isAttached\":true}]},{\"name\":\"ShellSection\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CurrentItem\",\"namespace\":\"Microsoft.Maui.Controls.ShellSection\",\"type\":\"ShellContent\"},{\"name\":\"Items\",\"namespace\":\"Microsoft.Maui.Controls.ShellSection\",\"type\":\"IList\\u00601\"},{\"name\":\"Stack\",\"namespace\":\"Microsoft.Maui.Controls.ShellSection\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"FlyoutDisplayOptions\",\"namespace\":\"Microsoft.Maui.Controls.ShellGroupItem\",\"type\":[\"value__\",\"AsSingleItem\",\"AsMultipleItems\"]},{\"name\":\"FlyoutIcon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"Icon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"IsChecked\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Route\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"FlyoutItemIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Window\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Slider\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanged\",\"namespace\":\"Microsoft.Maui.Controls.Slider\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DragStarted\",\"namespace\":\"Microsoft.Maui.Controls.Slider\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DragCompleted\",\"namespace\":\"Microsoft.Maui.Controls.Slider\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"MinimumTrackColor\",\"namespace\":\"Microsoft.Maui.Controls.Slider\",\"type\":\"Color\"},{\"name\":\"MaximumTrackColor\",\"namespace\":\"Microsoft.Maui.Controls.Slider\",\"type\":\"Color\"},{\"name\":\"ThumbColor\",\"namespace\":\"Microsoft.Maui.Controls.Slider\",\"type\":\"Color\"},{\"name\":\"ThumbImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Slider\",\"type\":\"ImageSource\"},{\"name\":\"DragStartedCommand\",\"namespace\":\"Microsoft.Maui.Controls.Slider\",\"type\":\"ICommand\"},{\"name\":\"DragCompletedCommand\",\"namespace\":\"Microsoft.Maui.Controls.Slider\",\"type\":\"ICommand\"},{\"name\":\"Maximum\",\"namespace\":\"Microsoft.Maui.Controls.Slider\",\"type\":\"Double\"},{\"name\":\"Minimum\",\"namespace\":\"Microsoft.Maui.Controls.Slider\",\"type\":\"Double\"},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.Slider\",\"type\":\"Double\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Stepper\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanged\",\"namespace\":\"Microsoft.Maui.Controls.Stepper\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Increment\",\"namespace\":\"Microsoft.Maui.Controls.Stepper\",\"type\":\"Double\"},{\"name\":\"Maximum\",\"namespace\":\"Microsoft.Maui.Controls.Stepper\",\"type\":\"Double\"},{\"name\":\"Minimum\",\"namespace\":\"Microsoft.Maui.Controls.Stepper\",\"type\":\"Double\"},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.Stepper\",\"type\":\"Double\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SwipeItem\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Invoked\",\"namespace\":\"Microsoft.Maui.Controls.SwipeItem\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Clicked\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.SwipeItem\",\"type\":\"Color\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.SwipeItem\",\"type\":\"Boolean\"},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Object\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"ImageSource\"},{\"name\":\"IsDestructive\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Boolean\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"String\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Boolean\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"IList\\u00601\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Accelerator\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Accelerator\",\"isAttached\":true}]},{\"name\":\"SwipeItemView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Invoked\",\"namespace\":\"Microsoft.Maui.Controls.SwipeItemView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.SwipeItemView\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.SwipeItemView\",\"type\":\"Object\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SwipeView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"SwipeStarted\",\"namespace\":\"Microsoft.Maui.Controls.SwipeView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SwipeChanging\",\"namespace\":\"Microsoft.Maui.Controls.SwipeView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SwipeEnded\",\"namespace\":\"Microsoft.Maui.Controls.SwipeView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"OpenRequested\",\"namespace\":\"Microsoft.Maui.Controls.SwipeView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"CloseRequested\",\"namespace\":\"Microsoft.Maui.Controls.SwipeView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Threshold\",\"namespace\":\"Microsoft.Maui.Controls.SwipeView\",\"type\":\"Double\"},{\"name\":\"LeftItems\",\"namespace\":\"Microsoft.Maui.Controls.SwipeView\",\"type\":\"SwipeItems\"},{\"name\":\"RightItems\",\"namespace\":\"Microsoft.Maui.Controls.SwipeView\",\"type\":\"SwipeItems\"},{\"name\":\"TopItems\",\"namespace\":\"Microsoft.Maui.Controls.SwipeView\",\"type\":\"SwipeItems\"},{\"name\":\"BottomItems\",\"namespace\":\"Microsoft.Maui.Controls.SwipeView\",\"type\":\"SwipeItems\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Switch\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Toggled\",\"namespace\":\"Microsoft.Maui.Controls.Switch\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"OnColor\",\"namespace\":\"Microsoft.Maui.Controls.Switch\",\"type\":\"Color\"},{\"name\":\"ThumbColor\",\"namespace\":\"Microsoft.Maui.Controls.Switch\",\"type\":\"Color\"},{\"name\":\"IsToggled\",\"namespace\":\"Microsoft.Maui.Controls.Switch\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TabbedPage\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"CurrentPageChanged\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PagesChanged\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"NotifyCollectionChangedEventHandler\",\"isEvent\":true},{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"BarBackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.TabbedPage\",\"type\":\"Color\"},{\"name\":\"BarBackground\",\"namespace\":\"Microsoft.Maui.Controls.TabbedPage\",\"type\":\"Brush\"},{\"name\":\"BarTextColor\",\"namespace\":\"Microsoft.Maui.Controls.TabbedPage\",\"type\":\"Color\"},{\"name\":\"UnselectedTabColor\",\"namespace\":\"Microsoft.Maui.Controls.TabbedPage\",\"type\":\"Color\"},{\"name\":\"SelectedTabColor\",\"namespace\":\"Microsoft.Maui.Controls.TabbedPage\",\"type\":\"Color\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"IEnumerable\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"DataTemplate\"},{\"name\":\"SelectedItem\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"Object\"},{\"name\":\"CurrentPage\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"Page\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"IList\\u00601\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Index\",\"namespace\":\"Microsoft.Maui.Controls.MultiPage\\u00601\",\"type\":\"Int32\",\"isAttached\":true}]},{\"name\":\"TemplatedView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TimePicker\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Format\",\"namespace\":\"Microsoft.Maui.Controls.TimePicker\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.TimePicker\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.TimePicker\",\"type\":\"Double\"},{\"name\":\"Time\",\"namespace\":\"Microsoft.Maui.Controls.TimePicker\",\"type\":[\"Zero\",\"MaxValue\",\"MinValue\",\"NanosecondsPerTick\",\"TicksPerMicrosecond\",\"TicksPerMillisecond\",\"TicksPerSecond\",\"TicksPerMinute\",\"TicksPerHour\",\"TicksPerDay\"]},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.TimePicker\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.TimePicker\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.TimePicker\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.TimePicker\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"View\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"VisualElement\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"WebView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Navigated\",\"namespace\":\"Microsoft.Maui.Controls.WebView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Navigating\",\"namespace\":\"Microsoft.Maui.Controls.WebView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CanGoBack\",\"namespace\":\"Microsoft.Maui.Controls.WebView\",\"type\":\"Boolean\"},{\"name\":\"CanGoForward\",\"namespace\":\"Microsoft.Maui.Controls.WebView\",\"type\":\"Boolean\"},{\"name\":\"Cookies\",\"namespace\":\"Microsoft.Maui.Controls.WebView\",\"type\":\"CookieContainer\"},{\"name\":\"Source\",\"namespace\":\"Microsoft.Maui.Controls.WebView\",\"type\":\"WebViewSource\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ModalPopped\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPopping\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPushed\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ModalPushing\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PopCanceled\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Created\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Resumed\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Activated\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Deactivated\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Stopped\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Destroying\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Backgrounding\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DisplayDensityChanged\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Overlays\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"IReadOnlyCollection\\u00601\"},{\"name\":\"VisualDiagnosticsOverlay\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"IVisualDiagnosticsOverlay\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"String\"},{\"name\":\"Page\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Page\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"MaximumWidth\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"MaximumHeight\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"MinimumWidth\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"MinimumHeight\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Double\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"DisplayDensity\",\"namespace\":\"Microsoft.Maui.Controls.Window\",\"type\":\"Single\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"HtmlWebViewSource\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"BaseUrl\",\"namespace\":\"Microsoft.Maui.Controls.HtmlWebViewSource\",\"type\":\"String\"},{\"name\":\"Html\",\"namespace\":\"Microsoft.Maui.Controls.HtmlWebViewSource\",\"type\":\"String\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ImageBrush\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.ImageBrush\",\"type\":\"Boolean\"},{\"name\":\"ImageSource\",\"namespace\":\"Microsoft.Maui.Controls.ImageBrush\",\"type\":\"ImageSource\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ImmutableBrush\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Color\",\"namespace\":\"Microsoft.Maui.Controls.ImmutableBrush\",\"type\":\"Color\"},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.SolidColorBrush\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"IndicatorStackLayout\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.StackLayout\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"Spacing\",\"namespace\":\"Microsoft.Maui.Controls.StackBase\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"InputView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"TextChanged\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"MaxLength\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Int32\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"String\"},{\"name\":\"Keyboard\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Keyboard\"},{\"name\":\"IsSpellCheckEnabled\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Boolean\"},{\"name\":\"Placeholder\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Color\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Double\"},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataTrigger\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Binding\",\"namespace\":\"Microsoft.Maui.Controls.DataTrigger\",\"type\":\"BindingBase\"},{\"name\":\"Setters\",\"namespace\":\"Microsoft.Maui.Controls.DataTrigger\",\"type\":\"IList\\u00601\"},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.DataTrigger\",\"type\":\"Object\"},{\"name\":\"EnterActions\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"IList\\u00601\"},{\"name\":\"ExitActions\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"IList\\u00601\"},{\"name\":\"IsSealed\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"Boolean\"},{\"name\":\"TargetType\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"EventTrigger\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Actions\",\"namespace\":\"Microsoft.Maui.Controls.EventTrigger\",\"type\":\"IList\\u00601\"},{\"name\":\"Event\",\"namespace\":\"Microsoft.Maui.Controls.EventTrigger\",\"type\":\"String\"},{\"name\":\"EnterActions\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"IList\\u00601\"},{\"name\":\"ExitActions\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"IList\\u00601\"},{\"name\":\"IsSealed\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"Boolean\"},{\"name\":\"TargetType\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MultiTrigger\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Conditions\",\"namespace\":\"Microsoft.Maui.Controls.MultiTrigger\",\"type\":\"IList\\u00601\"},{\"name\":\"Setters\",\"namespace\":\"Microsoft.Maui.Controls.MultiTrigger\",\"type\":\"IList\\u00601\"},{\"name\":\"EnterActions\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"IList\\u00601\"},{\"name\":\"ExitActions\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"IList\\u00601\"},{\"name\":\"IsSealed\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"Boolean\"},{\"name\":\"TargetType\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Trigger\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Property\",\"namespace\":\"Microsoft.Maui.Controls.Trigger\",\"type\":\"BindableProperty\"},{\"name\":\"Setters\",\"namespace\":\"Microsoft.Maui.Controls.Trigger\",\"type\":\"IList\\u00601\"},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.Trigger\",\"type\":\"Object\"},{\"name\":\"EnterActions\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"IList\\u00601\"},{\"name\":\"ExitActions\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"IList\\u00601\"},{\"name\":\"IsSealed\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"Boolean\"},{\"name\":\"TargetType\",\"namespace\":\"Microsoft.Maui.Controls.TriggerBase\",\"type\":\"Type\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CarouselView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"CurrentItemChanged\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PositionChanged\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"RemainingItemsThresholdReached\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loop\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"Boolean\"},{\"name\":\"PeekAreaInsets\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":[\"Zero\"]},{\"name\":\"VisibleViews\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"IsDragging\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"Boolean\"},{\"name\":\"IsBounceEnabled\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"Boolean\"},{\"name\":\"IsSwipeEnabled\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"Boolean\"},{\"name\":\"IsScrollAnimated\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"Boolean\"},{\"name\":\"CurrentItem\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"Object\"},{\"name\":\"CurrentItemChangedCommand\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"ICommand\"},{\"name\":\"CurrentItemChangedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"Object\"},{\"name\":\"Position\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"Int32\"},{\"name\":\"PositionChangedCommand\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"ICommand\"},{\"name\":\"PositionChangedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"Object\"},{\"name\":\"ItemsLayout\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"LinearItemsLayout\"},{\"name\":\"IndicatorView\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"IndicatorView\"},{\"name\":\"IsScrolling\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"Boolean\"},{\"name\":\"AnimatePositionChanges\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"Boolean\"},{\"name\":\"AnimateCurrentItemChanges\",\"namespace\":\"Microsoft.Maui.Controls.CarouselView\",\"type\":\"Boolean\"},{\"name\":\"EmptyView\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Object\"},{\"name\":\"EmptyViewTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"IEnumerable\"},{\"name\":\"RemainingItemsThresholdReachedCommand\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"ICommand\"},{\"name\":\"RemainingItemsThresholdReachedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Object\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"RemainingItemsThreshold\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Int32\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsUpdatingScrollMode\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"KeepItemsInView\",\"KeepScrollOffset\",\"KeepLastItemInView\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CollectionView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ReorderCompleted\",\"namespace\":\"Microsoft.Maui.Controls.ReorderableItemsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SelectionChanged\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"RemainingItemsThresholdReached\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CanMixGroups\",\"namespace\":\"Microsoft.Maui.Controls.ReorderableItemsView\",\"type\":\"Boolean\"},{\"name\":\"CanReorderItems\",\"namespace\":\"Microsoft.Maui.Controls.ReorderableItemsView\",\"type\":\"Boolean\"},{\"name\":\"IsGrouped\",\"namespace\":\"Microsoft.Maui.Controls.GroupableItemsView\",\"type\":\"Boolean\"},{\"name\":\"GroupHeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.GroupableItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"GroupFooterTemplate\",\"namespace\":\"Microsoft.Maui.Controls.GroupableItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"SelectedItem\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"Object\"},{\"name\":\"SelectedItems\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"IList\\u00601\"},{\"name\":\"SelectionChangedCommand\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"ICommand\"},{\"name\":\"SelectionChangedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"Object\"},{\"name\":\"SelectionMode\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":[\"value__\",\"None\",\"Single\",\"Multiple\"]},{\"name\":\"Header\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"Object\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"Footer\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"Object\"},{\"name\":\"FooterTemplate\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsLayout\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"IItemsLayout\"},{\"name\":\"ItemSizingStrategy\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":[\"value__\",\"MeasureAllItems\",\"MeasureFirstItem\"]},{\"name\":\"EmptyView\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Object\"},{\"name\":\"EmptyViewTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"IEnumerable\"},{\"name\":\"RemainingItemsThresholdReachedCommand\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"ICommand\"},{\"name\":\"RemainingItemsThresholdReachedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Object\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"RemainingItemsThreshold\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Int32\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsUpdatingScrollMode\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"KeepItemsInView\",\"KeepScrollOffset\",\"KeepLastItemInView\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GridItemsLayout\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Span\",\"namespace\":\"Microsoft.Maui.Controls.GridItemsLayout\",\"type\":\"Int32\"},{\"name\":\"VerticalItemSpacing\",\"namespace\":\"Microsoft.Maui.Controls.GridItemsLayout\",\"type\":\"Double\"},{\"name\":\"HorizontalItemSpacing\",\"namespace\":\"Microsoft.Maui.Controls.GridItemsLayout\",\"type\":\"Double\"},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.ItemsLayout\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"SnapPointsAlignment\",\"namespace\":\"Microsoft.Maui.Controls.ItemsLayout\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"SnapPointsType\",\"namespace\":\"Microsoft.Maui.Controls.ItemsLayout\",\"type\":[\"value__\",\"None\",\"Mandatory\",\"MandatorySingle\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GroupableItemsView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"SelectionChanged\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"RemainingItemsThresholdReached\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsGrouped\",\"namespace\":\"Microsoft.Maui.Controls.GroupableItemsView\",\"type\":\"Boolean\"},{\"name\":\"GroupHeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.GroupableItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"GroupFooterTemplate\",\"namespace\":\"Microsoft.Maui.Controls.GroupableItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"SelectedItem\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"Object\"},{\"name\":\"SelectedItems\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"IList\\u00601\"},{\"name\":\"SelectionChangedCommand\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"ICommand\"},{\"name\":\"SelectionChangedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"Object\"},{\"name\":\"SelectionMode\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":[\"value__\",\"None\",\"Single\",\"Multiple\"]},{\"name\":\"Header\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"Object\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"Footer\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"Object\"},{\"name\":\"FooterTemplate\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsLayout\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"IItemsLayout\"},{\"name\":\"ItemSizingStrategy\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":[\"value__\",\"MeasureAllItems\",\"MeasureFirstItem\"]},{\"name\":\"EmptyView\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Object\"},{\"name\":\"EmptyViewTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"IEnumerable\"},{\"name\":\"RemainingItemsThresholdReachedCommand\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"ICommand\"},{\"name\":\"RemainingItemsThresholdReachedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Object\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"RemainingItemsThreshold\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Int32\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsUpdatingScrollMode\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"KeepItemsInView\",\"KeepScrollOffset\",\"KeepLastItemInView\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LinearItemsLayout\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ItemSpacing\",\"namespace\":\"Microsoft.Maui.Controls.LinearItemsLayout\",\"type\":\"Double\"},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.ItemsLayout\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"SnapPointsAlignment\",\"namespace\":\"Microsoft.Maui.Controls.ItemsLayout\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"SnapPointsType\",\"namespace\":\"Microsoft.Maui.Controls.ItemsLayout\",\"type\":[\"value__\",\"None\",\"Mandatory\",\"MandatorySingle\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ReorderableItemsView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ReorderCompleted\",\"namespace\":\"Microsoft.Maui.Controls.ReorderableItemsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SelectionChanged\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"RemainingItemsThresholdReached\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CanMixGroups\",\"namespace\":\"Microsoft.Maui.Controls.ReorderableItemsView\",\"type\":\"Boolean\"},{\"name\":\"CanReorderItems\",\"namespace\":\"Microsoft.Maui.Controls.ReorderableItemsView\",\"type\":\"Boolean\"},{\"name\":\"IsGrouped\",\"namespace\":\"Microsoft.Maui.Controls.GroupableItemsView\",\"type\":\"Boolean\"},{\"name\":\"GroupHeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.GroupableItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"GroupFooterTemplate\",\"namespace\":\"Microsoft.Maui.Controls.GroupableItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"SelectedItem\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"Object\"},{\"name\":\"SelectedItems\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"IList\\u00601\"},{\"name\":\"SelectionChangedCommand\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"ICommand\"},{\"name\":\"SelectionChangedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"Object\"},{\"name\":\"SelectionMode\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":[\"value__\",\"None\",\"Single\",\"Multiple\"]},{\"name\":\"Header\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"Object\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"Footer\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"Object\"},{\"name\":\"FooterTemplate\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsLayout\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"IItemsLayout\"},{\"name\":\"ItemSizingStrategy\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":[\"value__\",\"MeasureAllItems\",\"MeasureFirstItem\"]},{\"name\":\"EmptyView\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Object\"},{\"name\":\"EmptyViewTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"IEnumerable\"},{\"name\":\"RemainingItemsThresholdReachedCommand\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"ICommand\"},{\"name\":\"RemainingItemsThresholdReachedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Object\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"RemainingItemsThreshold\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Int32\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsUpdatingScrollMode\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"KeepItemsInView\",\"KeepScrollOffset\",\"KeepLastItemInView\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SelectableItemsView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"SelectionChanged\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"RemainingItemsThresholdReached\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SelectedItem\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"Object\"},{\"name\":\"SelectedItems\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"IList\\u00601\"},{\"name\":\"SelectionChangedCommand\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"ICommand\"},{\"name\":\"SelectionChangedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":\"Object\"},{\"name\":\"SelectionMode\",\"namespace\":\"Microsoft.Maui.Controls.SelectableItemsView\",\"type\":[\"value__\",\"None\",\"Single\",\"Multiple\"]},{\"name\":\"Header\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"Object\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"Footer\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"Object\"},{\"name\":\"FooterTemplate\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsLayout\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"IItemsLayout\"},{\"name\":\"ItemSizingStrategy\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":[\"value__\",\"MeasureAllItems\",\"MeasureFirstItem\"]},{\"name\":\"EmptyView\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Object\"},{\"name\":\"EmptyViewTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"IEnumerable\"},{\"name\":\"RemainingItemsThresholdReachedCommand\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"ICommand\"},{\"name\":\"RemainingItemsThresholdReachedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Object\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"RemainingItemsThreshold\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Int32\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsUpdatingScrollMode\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"KeepItemsInView\",\"KeepScrollOffset\",\"KeepLastItemInView\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"StructuredItemsView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"RemainingItemsThresholdReached\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Header\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"Object\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"Footer\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"Object\"},{\"name\":\"FooterTemplate\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsLayout\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":\"IItemsLayout\"},{\"name\":\"ItemSizingStrategy\",\"namespace\":\"Microsoft.Maui.Controls.StructuredItemsView\",\"type\":[\"value__\",\"MeasureAllItems\",\"MeasureFirstItem\"]},{\"name\":\"EmptyView\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Object\"},{\"name\":\"EmptyViewTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"IEnumerable\"},{\"name\":\"RemainingItemsThresholdReachedCommand\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"ICommand\"},{\"name\":\"RemainingItemsThresholdReachedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Object\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"RemainingItemsThreshold\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"Int32\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsUpdatingScrollMode\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\",\"type\":[\"value__\",\"KeepItemsInView\",\"KeepScrollOffset\",\"KeepLastItemInView\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AbsoluteLayout\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"FlexLayout\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Direction\",\"namespace\":\"Microsoft.Maui.Controls.FlexLayout\",\"type\":[\"value__\",\"Column\",\"ColumnReverse\",\"Row\",\"RowReverse\"]},{\"name\":\"JustifyContent\",\"namespace\":\"Microsoft.Maui.Controls.FlexLayout\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\",\"SpaceBetween\",\"SpaceAround\",\"SpaceEvenly\"]},{\"name\":\"AlignContent\",\"namespace\":\"Microsoft.Maui.Controls.FlexLayout\",\"type\":[\"value__\",\"Stretch\",\"Center\",\"Start\",\"End\",\"SpaceBetween\",\"SpaceAround\",\"SpaceEvenly\"]},{\"name\":\"AlignItems\",\"namespace\":\"Microsoft.Maui.Controls.FlexLayout\",\"type\":[\"value__\",\"Stretch\",\"Center\",\"Start\",\"End\"]},{\"name\":\"Position\",\"namespace\":\"Microsoft.Maui.Controls.FlexLayout\",\"type\":[\"value__\",\"Relative\",\"Absolute\"]},{\"name\":\"Wrap\",\"namespace\":\"Microsoft.Maui.Controls.FlexLayout\",\"type\":[\"value__\",\"NoWrap\",\"Wrap\",\"Reverse\"]},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Order\",\"namespace\":\"Microsoft.Maui.Controls.FlexLayout\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"Grow\",\"namespace\":\"Microsoft.Maui.Controls.FlexLayout\",\"type\":\"Single\",\"isAttached\":true},{\"name\":\"Shrink\",\"namespace\":\"Microsoft.Maui.Controls.FlexLayout\",\"type\":\"Single\",\"isAttached\":true},{\"name\":\"AlignSelf\",\"namespace\":\"Microsoft.Maui.Controls.FlexLayout\",\"type\":[\"value__\",\"Auto\",\"Stretch\",\"Center\",\"Start\",\"End\"],\"isAttached\":true},{\"name\":\"Basis\",\"namespace\":\"Microsoft.Maui.Controls.FlexLayout\",\"type\":[\"Auto\"],\"isAttached\":true}]},{\"name\":\"Grid\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ColumnDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"ColumnDefinitionCollection\"},{\"name\":\"RowDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"RowDefinitionCollection\"},{\"name\":\"RowSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Double\"},{\"name\":\"ColumnSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Column\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"ColumnSpan\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"Row\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"RowSpan\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true}]},{\"name\":\"HorizontalStackLayout\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Spacing\",\"namespace\":\"Microsoft.Maui.Controls.StackBase\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"StackLayout\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.StackLayout\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"Spacing\",\"namespace\":\"Microsoft.Maui.Controls.StackBase\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"VerticalStackLayout\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Spacing\",\"namespace\":\"Microsoft.Maui.Controls.StackBase\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LinearGradientBrush\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"InvalidateGradientBrushRequested\",\"namespace\":\"Microsoft.Maui.Controls.GradientBrush\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.LinearGradientBrush\",\"type\":\"Boolean\"},{\"name\":\"StartPoint\",\"namespace\":\"Microsoft.Maui.Controls.LinearGradientBrush\",\"type\":[\"Zero\"]},{\"name\":\"EndPoint\",\"namespace\":\"Microsoft.Maui.Controls.LinearGradientBrush\",\"type\":[\"Zero\"]},{\"name\":\"GradientStops\",\"namespace\":\"Microsoft.Maui.Controls.GradientBrush\",\"type\":\"GradientStopCollection\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ListView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ItemAppearing\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ItemDisappearing\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ItemSelected\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ItemTapped\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Refreshing\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Footer\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Object\"},{\"name\":\"FooterTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"DataTemplate\"},{\"name\":\"GroupDisplayBinding\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"BindingBase\"},{\"name\":\"GroupHeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"DataTemplate\"},{\"name\":\"GroupShortNameBinding\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"BindingBase\"},{\"name\":\"HasUnevenRows\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Boolean\"},{\"name\":\"Header\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Object\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"DataTemplate\"},{\"name\":\"IsGroupingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Boolean\"},{\"name\":\"IsPullToRefreshEnabled\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Boolean\"},{\"name\":\"IsRefreshing\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Boolean\"},{\"name\":\"RefreshCommand\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"ICommand\"},{\"name\":\"RowHeight\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Int32\"},{\"name\":\"SelectedItem\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Object\"},{\"name\":\"SelectionMode\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":[\"value__\",\"None\",\"Single\"]},{\"name\":\"SeparatorColor\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Color\"},{\"name\":\"RefreshControlColor\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Color\"},{\"name\":\"SeparatorVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":[\"value__\",\"Default\",\"None\"]},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"CachingStrategy\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":[\"value__\",\"RetainElement\",\"RecycleElement\",\"RecycleElementAndDataTemplate\"]},{\"name\":\"RefreshAllowed\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Boolean\"},{\"name\":\"FooterElement\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Element\"},{\"name\":\"HeaderElement\",\"namespace\":\"Microsoft.Maui.Controls.ListView\",\"type\":\"Element\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\\u00601\",\"type\":\"IEnumerable\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\\u00601\",\"type\":\"DataTemplate\"},{\"name\":\"TemplatedItems\",\"namespace\":\"Microsoft.Maui.Controls.ItemsView\\u00601\",\"type\":\"TemplatedItemsList\\u00602\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MenuBar\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.MenuBar\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.MenuBar\",\"type\":\"IMenuBarItem\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.MenuBar\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.MenuBar\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MenuBarItem\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Priority\",\"namespace\":\"Microsoft.Maui.Controls.MenuBarItem\",\"type\":\"Int32\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.MenuBarItem\",\"type\":\"Boolean\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.MenuBarItem\",\"type\":\"String\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.MenuBarItem\",\"type\":\"IMenuElement\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.MenuBarItem\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.MenuBarItem\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MenuFlyoutItem\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Clicked\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Object\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"ImageSource\"},{\"name\":\"IsDestructive\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Boolean\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"String\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Boolean\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"IList\\u00601\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Accelerator\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Accelerator\",\"isAttached\":true}]},{\"name\":\"MenuFlyoutSeparator\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Clicked\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Object\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"ImageSource\"},{\"name\":\"IsDestructive\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Boolean\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"String\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Boolean\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"IList\\u00601\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Accelerator\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Accelerator\",\"isAttached\":true}]},{\"name\":\"MenuFlyoutSubItem\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Clicked\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.MenuFlyoutSubItem\",\"type\":\"IMenuElement\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.MenuFlyoutSubItem\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.MenuFlyoutSubItem\",\"type\":\"Boolean\"},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Object\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"ImageSource\"},{\"name\":\"IsDestructive\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Boolean\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"String\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Boolean\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"IList\\u00601\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Accelerator\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Accelerator\",\"isAttached\":true}]},{\"name\":\"OpenGLView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"DisplayRequested\",\"namespace\":\"Microsoft.Maui.Controls.OpenGLView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HasRenderLoop\",\"namespace\":\"Microsoft.Maui.Controls.OpenGLView\",\"type\":\"Boolean\"},{\"name\":\"OnDisplay\",\"namespace\":\"Microsoft.Maui.Controls.OpenGLView\",\"type\":\"Action\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"OrientationStateTrigger\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"IsActiveChanged\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.OrientationStateTrigger\",\"type\":[\"value__\",\"Unknown\",\"Portrait\",\"Landscape\"]},{\"name\":\"IsActive\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"Boolean\"},{\"name\":\"IsAttached\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PanGestureRecognizer\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PanUpdated\",\"namespace\":\"Microsoft.Maui.Controls.PanGestureRecognizer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TouchPoints\",\"namespace\":\"Microsoft.Maui.Controls.PanGestureRecognizer\",\"type\":\"Int32\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PinchGestureRecognizer\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PinchUpdated\",\"namespace\":\"Microsoft.Maui.Controls.PinchGestureRecognizer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PointerGestureRecognizer\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PointerEntered\",\"namespace\":\"Microsoft.Maui.Controls.PointerGestureRecognizer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PointerExited\",\"namespace\":\"Microsoft.Maui.Controls.PointerGestureRecognizer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PointerMoved\",\"namespace\":\"Microsoft.Maui.Controls.PointerGestureRecognizer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PointerEnteredCommand\",\"namespace\":\"Microsoft.Maui.Controls.PointerGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"PointerEnteredCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.PointerGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"PointerExitedCommand\",\"namespace\":\"Microsoft.Maui.Controls.PointerGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"PointerExitedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.PointerGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"PointerMovedCommand\",\"namespace\":\"Microsoft.Maui.Controls.PointerGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"PointerMovedCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.PointerGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RadialGradientBrush\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"InvalidateGradientBrushRequested\",\"namespace\":\"Microsoft.Maui.Controls.GradientBrush\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.RadialGradientBrush\",\"type\":\"Boolean\"},{\"name\":\"Center\",\"namespace\":\"Microsoft.Maui.Controls.RadialGradientBrush\",\"type\":[\"Zero\"]},{\"name\":\"Radius\",\"namespace\":\"Microsoft.Maui.Controls.RadialGradientBrush\",\"type\":\"Double\"},{\"name\":\"GradientStops\",\"namespace\":\"Microsoft.Maui.Controls.GradientBrush\",\"type\":\"GradientStopCollection\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RowDefinition\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.RowDefinition\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.RowDefinition\",\"type\":[\"Auto\",\"Star\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Radius\",\"namespace\":\"Microsoft.Maui.Controls.Shadow\",\"type\":\"Single\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.Shadow\",\"type\":\"Single\"},{\"name\":\"Brush\",\"namespace\":\"Microsoft.Maui.Controls.Shadow\",\"type\":\"Brush\"},{\"name\":\"Offset\",\"namespace\":\"Microsoft.Maui.Controls.Shadow\",\"type\":[\"Zero\"]},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BackButtonBehavior\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.BackButtonBehavior\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.BackButtonBehavior\",\"type\":\"Object\"},{\"name\":\"IconOverride\",\"namespace\":\"Microsoft.Maui.Controls.BackButtonBehavior\",\"type\":\"ImageSource\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.BackButtonBehavior\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BackButtonBehavior\",\"type\":\"Boolean\"},{\"name\":\"TextOverride\",\"namespace\":\"Microsoft.Maui.Controls.BackButtonBehavior\",\"type\":\"String\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BaseShellItem\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"FlyoutIcon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"Icon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"IsChecked\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Route\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"FlyoutItemIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Window\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MenuShellItem\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.MenuShellItem\",\"type\":\"String\"},{\"name\":\"MenuItem\",\"namespace\":\"Microsoft.Maui.Controls.MenuShellItem\",\"type\":\"MenuItem\"},{\"name\":\"CurrentItem\",\"namespace\":\"Microsoft.Maui.Controls.ShellItem\",\"type\":\"ShellSection\"},{\"name\":\"Items\",\"namespace\":\"Microsoft.Maui.Controls.ShellItem\",\"type\":\"IList\\u00601\"},{\"name\":\"FlyoutDisplayOptions\",\"namespace\":\"Microsoft.Maui.Controls.ShellGroupItem\",\"type\":[\"value__\",\"AsSingleItem\",\"AsMultipleItems\"]},{\"name\":\"FlyoutIcon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"Icon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"IsChecked\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Route\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"FlyoutItemIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Window\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"NavigableElement\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SearchHandler\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Boolean\"},{\"name\":\"Keyboard\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Keyboard\"},{\"name\":\"HorizontalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"VerticalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Color\"},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"CancelButtonColor\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Color\"},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Double\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Boolean\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Color\"},{\"name\":\"Placeholder\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Color\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"ClearIcon\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"ImageSource\"},{\"name\":\"ClearIconHelpText\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"ClearIconName\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"ClearPlaceholderCommand\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"ICommand\"},{\"name\":\"ClearPlaceholderCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Object\"},{\"name\":\"ClearPlaceholderEnabled\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Boolean\"},{\"name\":\"ClearPlaceholderHelpText\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"ClearPlaceholderIcon\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"ImageSource\"},{\"name\":\"ClearPlaceholderName\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Object\"},{\"name\":\"DisplayMemberName\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"IsSearchEnabled\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Boolean\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"IEnumerable\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"DataTemplate\"},{\"name\":\"Query\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"QueryIcon\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"ImageSource\"},{\"name\":\"QueryIconHelpText\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"QueryIconName\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"String\"},{\"name\":\"SearchBoxVisibility\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":[\"value__\",\"Hidden\",\"Collapsible\",\"Expanded\"]},{\"name\":\"SelectedItem\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Object\"},{\"name\":\"ShowsResults\",\"namespace\":\"Microsoft.Maui.Controls.SearchHandler\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ShellContent\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"MenuItems\",\"namespace\":\"Microsoft.Maui.Controls.ShellContent\",\"type\":\"MenuItemCollection\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ShellContent\",\"type\":\"Object\"},{\"name\":\"ContentTemplate\",\"namespace\":\"Microsoft.Maui.Controls.ShellContent\",\"type\":\"DataTemplate\"},{\"name\":\"FlyoutIcon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"Icon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"IsChecked\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Route\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"FlyoutItemIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Window\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ShellGroupItem\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"FlyoutDisplayOptions\",\"namespace\":\"Microsoft.Maui.Controls.ShellGroupItem\",\"type\":[\"value__\",\"AsSingleItem\",\"AsMultipleItems\"]},{\"name\":\"FlyoutIcon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"Icon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"IsChecked\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Route\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"FlyoutItemIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Window\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FlyoutItem\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CurrentItem\",\"namespace\":\"Microsoft.Maui.Controls.ShellItem\",\"type\":\"ShellSection\"},{\"name\":\"Items\",\"namespace\":\"Microsoft.Maui.Controls.ShellItem\",\"type\":\"IList\\u00601\"},{\"name\":\"FlyoutDisplayOptions\",\"namespace\":\"Microsoft.Maui.Controls.ShellGroupItem\",\"type\":[\"value__\",\"AsSingleItem\",\"AsMultipleItems\"]},{\"name\":\"FlyoutIcon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"Icon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"IsChecked\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Route\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"FlyoutItemIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Window\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.FlyoutItem\",\"type\":\"Boolean\",\"isAttached\":true}]},{\"name\":\"TabBar\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CurrentItem\",\"namespace\":\"Microsoft.Maui.Controls.ShellItem\",\"type\":\"ShellSection\"},{\"name\":\"Items\",\"namespace\":\"Microsoft.Maui.Controls.ShellItem\",\"type\":\"IList\\u00601\"},{\"name\":\"FlyoutDisplayOptions\",\"namespace\":\"Microsoft.Maui.Controls.ShellGroupItem\",\"type\":[\"value__\",\"AsSingleItem\",\"AsMultipleItems\"]},{\"name\":\"FlyoutIcon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"Icon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"IsChecked\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Route\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"FlyoutItemIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Window\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ShellItem\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CurrentItem\",\"namespace\":\"Microsoft.Maui.Controls.ShellItem\",\"type\":\"ShellSection\"},{\"name\":\"Items\",\"namespace\":\"Microsoft.Maui.Controls.ShellItem\",\"type\":\"IList\\u00601\"},{\"name\":\"FlyoutDisplayOptions\",\"namespace\":\"Microsoft.Maui.Controls.ShellGroupItem\",\"type\":[\"value__\",\"AsSingleItem\",\"AsMultipleItems\"]},{\"name\":\"FlyoutIcon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"Icon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"IsChecked\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Route\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"FlyoutItemIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Window\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Tab\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CurrentItem\",\"namespace\":\"Microsoft.Maui.Controls.ShellSection\",\"type\":\"ShellContent\"},{\"name\":\"Items\",\"namespace\":\"Microsoft.Maui.Controls.ShellSection\",\"type\":\"IList\\u00601\"},{\"name\":\"Stack\",\"namespace\":\"Microsoft.Maui.Controls.ShellSection\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"FlyoutDisplayOptions\",\"namespace\":\"Microsoft.Maui.Controls.ShellGroupItem\",\"type\":[\"value__\",\"AsSingleItem\",\"AsMultipleItems\"]},{\"name\":\"FlyoutIcon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"Icon\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"ImageSource\"},{\"name\":\"IsChecked\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Route\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"String\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"FlyoutItemIsVisible\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Boolean\"},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.BaseShellItem\",\"type\":\"Window\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SolidColorBrush\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.SolidColorBrush\",\"type\":\"Boolean\"},{\"name\":\"Color\",\"namespace\":\"Microsoft.Maui.Controls.SolidColorBrush\",\"type\":\"Color\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Span\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.Span\",\"type\":\"Style\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.Span\",\"type\":\"Color\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.Span\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Span\",\"type\":\"Double\"},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.Span\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.Span\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.Span\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.Span\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.Span\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Span\",\"type\":\"Boolean\"},{\"name\":\"TextDecorations\",\"namespace\":\"Microsoft.Maui.Controls.Span\",\"type\":[\"value__\",\"None\",\"Underline\",\"Strikethrough\"]},{\"name\":\"LineHeight\",\"namespace\":\"Microsoft.Maui.Controls.Span\",\"type\":\"Double\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.GestureElement\",\"type\":\"IList\\u00601\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"StateTrigger\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"IsActiveChanged\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsActive\",\"namespace\":\"Microsoft.Maui.Controls.StateTrigger\",\"type\":\"Boolean\"},{\"name\":\"IsAttached\",\"namespace\":\"Microsoft.Maui.Controls.StateTriggerBase\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SwipeGestureRecognizer\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Swiped\",\"namespace\":\"Microsoft.Maui.Controls.SwipeGestureRecognizer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.SwipeGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.SwipeGestureRecognizer\",\"type\":\"Object\"},{\"name\":\"Direction\",\"namespace\":\"Microsoft.Maui.Controls.SwipeGestureRecognizer\",\"type\":[\"value__\",\"Right\",\"Left\",\"Up\",\"Down\"]},{\"name\":\"Threshold\",\"namespace\":\"Microsoft.Maui.Controls.SwipeGestureRecognizer\",\"type\":\"UInt32\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SwipeItems\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"CollectionChanged\",\"namespace\":\"Microsoft.Maui.Controls.SwipeItems\",\"type\":\"NotifyCollectionChangedEventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Mode\",\"namespace\":\"Microsoft.Maui.Controls.SwipeItems\",\"type\":[\"value__\",\"Reveal\",\"Execute\"]},{\"name\":\"SwipeBehaviorOnInvoked\",\"namespace\":\"Microsoft.Maui.Controls.SwipeItems\",\"type\":[\"value__\",\"Auto\",\"Close\",\"RemainOpen\"]},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.SwipeItems\",\"type\":\"ISwipeItem\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.SwipeItems\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.SwipeItems\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TableRoot\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"CollectionChanged\",\"namespace\":\"Microsoft.Maui.Controls.TableSectionBase\\u00601\",\"type\":\"NotifyCollectionChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.TableSectionBase\\u00601\",\"type\":\"Int32\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.TableSectionBase\\u00601\",\"type\":\"TableSection\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.TableSectionBase\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.TableSectionBase\",\"type\":\"Color\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TableSection\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"CollectionChanged\",\"namespace\":\"Microsoft.Maui.Controls.TableSectionBase\\u00601\",\"type\":\"NotifyCollectionChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.TableSectionBase\\u00601\",\"type\":\"Int32\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.TableSectionBase\\u00601\",\"type\":\"Cell\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.TableSectionBase\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.TableSectionBase\",\"type\":\"Color\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TableView\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ModelChanged\",\"namespace\":\"Microsoft.Maui.Controls.TableView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HasUnevenRows\",\"namespace\":\"Microsoft.Maui.Controls.TableView\",\"type\":\"Boolean\"},{\"name\":\"Intent\",\"namespace\":\"Microsoft.Maui.Controls.TableView\",\"type\":[\"value__\",\"Menu\",\"Settings\",\"Form\",\"Data\"]},{\"name\":\"Root\",\"namespace\":\"Microsoft.Maui.Controls.TableView\",\"type\":\"TableRoot\"},{\"name\":\"RowHeight\",\"namespace\":\"Microsoft.Maui.Controls.TableView\",\"type\":\"Int32\"},{\"name\":\"Model\",\"namespace\":\"Microsoft.Maui.Controls.TableView\",\"type\":\"TableModel\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TapGestureRecognizer\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Tapped\",\"namespace\":\"Microsoft.Maui.Controls.TapGestureRecognizer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.TapGestureRecognizer\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.TapGestureRecognizer\",\"type\":\"Object\"},{\"name\":\"NumberOfTapsRequired\",\"namespace\":\"Microsoft.Maui.Controls.TapGestureRecognizer\",\"type\":\"Int32\"},{\"name\":\"Buttons\",\"namespace\":\"Microsoft.Maui.Controls.TapGestureRecognizer\",\"type\":[\"value__\",\"Primary\",\"Secondary\"]},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TemplatedPage\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedPage\",\"type\":\"ControlTemplate\"},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ToolbarItem\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Clicked\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Order\",\"namespace\":\"Microsoft.Maui.Controls.ToolbarItem\",\"type\":[\"value__\",\"Default\",\"Primary\",\"Secondary\"]},{\"name\":\"Priority\",\"namespace\":\"Microsoft.Maui.Controls.ToolbarItem\",\"type\":\"Int32\"},{\"name\":\"Command\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"ICommand\"},{\"name\":\"CommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Object\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"ImageSource\"},{\"name\":\"IsDestructive\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Boolean\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"String\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Boolean\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"IList\\u00601\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Accelerator\",\"namespace\":\"Microsoft.Maui.Controls.MenuItem\",\"type\":\"Accelerator\",\"isAttached\":true}]},{\"name\":\"UrlWebViewSource\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Url\",\"namespace\":\"Microsoft.Maui.Controls.UrlWebViewSource\",\"type\":\"String\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Ellipse\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Fill\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"DoubleCollection\"},{\"name\":\"StrokeDashOffset\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Flat\",\"Square\",\"Round\"]},{\"name\":\"StrokeLineJoin\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Miter\",\"Bevel\",\"Round\"]},{\"name\":\"StrokeMiterLimit\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"Aspect\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"None\",\"Fill\",\"Uniform\",\"UniformToFill\"]},{\"name\":\"StrokeDashPattern\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Single[]\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Line\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"X1\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Line\",\"type\":\"Double\"},{\"name\":\"Y1\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Line\",\"type\":\"Double\"},{\"name\":\"X2\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Line\",\"type\":\"Double\"},{\"name\":\"Y2\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Line\",\"type\":\"Double\"},{\"name\":\"Fill\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"DoubleCollection\"},{\"name\":\"StrokeDashOffset\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Flat\",\"Square\",\"Round\"]},{\"name\":\"StrokeLineJoin\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Miter\",\"Bevel\",\"Round\"]},{\"name\":\"StrokeMiterLimit\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"Aspect\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"None\",\"Fill\",\"Uniform\",\"UniformToFill\"]},{\"name\":\"StrokeDashPattern\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Single[]\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Path\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Data\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Path\",\"type\":\"Geometry\"},{\"name\":\"RenderTransform\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Path\",\"type\":\"Transform\"},{\"name\":\"Fill\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"DoubleCollection\"},{\"name\":\"StrokeDashOffset\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Flat\",\"Square\",\"Round\"]},{\"name\":\"StrokeLineJoin\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Miter\",\"Bevel\",\"Round\"]},{\"name\":\"StrokeMiterLimit\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"Aspect\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"None\",\"Fill\",\"Uniform\",\"UniformToFill\"]},{\"name\":\"StrokeDashPattern\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Single[]\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Polygon\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Points\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Polygon\",\"type\":\"PointCollection\"},{\"name\":\"FillRule\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Polygon\",\"type\":[\"value__\",\"EvenOdd\",\"Nonzero\"]},{\"name\":\"Fill\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"DoubleCollection\"},{\"name\":\"StrokeDashOffset\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Flat\",\"Square\",\"Round\"]},{\"name\":\"StrokeLineJoin\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Miter\",\"Bevel\",\"Round\"]},{\"name\":\"StrokeMiterLimit\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"Aspect\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"None\",\"Fill\",\"Uniform\",\"UniformToFill\"]},{\"name\":\"StrokeDashPattern\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Single[]\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Polyline\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Points\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Polyline\",\"type\":\"PointCollection\"},{\"name\":\"FillRule\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Polyline\",\"type\":[\"value__\",\"EvenOdd\",\"Nonzero\"]},{\"name\":\"Fill\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"DoubleCollection\"},{\"name\":\"StrokeDashOffset\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Flat\",\"Square\",\"Round\"]},{\"name\":\"StrokeLineJoin\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Miter\",\"Bevel\",\"Round\"]},{\"name\":\"StrokeMiterLimit\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"Aspect\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"None\",\"Fill\",\"Uniform\",\"UniformToFill\"]},{\"name\":\"StrokeDashPattern\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Single[]\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Rectangle\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"RadiusX\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Rectangle\",\"type\":\"Double\"},{\"name\":\"RadiusY\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Rectangle\",\"type\":\"Double\"},{\"name\":\"Fill\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"DoubleCollection\"},{\"name\":\"StrokeDashOffset\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Flat\",\"Square\",\"Round\"]},{\"name\":\"StrokeLineJoin\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Miter\",\"Bevel\",\"Round\"]},{\"name\":\"StrokeMiterLimit\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"Aspect\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"None\",\"Fill\",\"Uniform\",\"UniformToFill\"]},{\"name\":\"StrokeDashPattern\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Single[]\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RoundRectangle\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CornerRadius\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.RoundRectangle\",\"type\":[]},{\"name\":\"Fill\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"DoubleCollection\"},{\"name\":\"StrokeDashOffset\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Flat\",\"Square\",\"Round\"]},{\"name\":\"StrokeLineJoin\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"Miter\",\"Bevel\",\"Round\"]},{\"name\":\"StrokeMiterLimit\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Double\"},{\"name\":\"Aspect\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":[\"value__\",\"None\",\"Fill\",\"Uniform\",\"UniformToFill\"]},{\"name\":\"StrokeDashPattern\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Shape\",\"type\":\"Single[]\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ArcSegment\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Point\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.ArcSegment\",\"type\":[\"Zero\"]},{\"name\":\"Size\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.ArcSegment\",\"type\":[\"Zero\"]},{\"name\":\"RotationAngle\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.ArcSegment\",\"type\":\"Double\"},{\"name\":\"SweepDirection\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.ArcSegment\",\"type\":[\"value__\",\"CounterClockwise\",\"Clockwise\"]},{\"name\":\"IsLargeArc\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.ArcSegment\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BezierSegment\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Point1\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.BezierSegment\",\"type\":[\"Zero\"]},{\"name\":\"Point2\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.BezierSegment\",\"type\":[\"Zero\"]},{\"name\":\"Point3\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.BezierSegment\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CompositeTransform\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CenterX\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.CompositeTransform\",\"type\":\"Double\"},{\"name\":\"CenterY\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.CompositeTransform\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.CompositeTransform\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.CompositeTransform\",\"type\":\"Double\"},{\"name\":\"SkewX\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.CompositeTransform\",\"type\":\"Double\"},{\"name\":\"SkewY\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.CompositeTransform\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.CompositeTransform\",\"type\":\"Double\"},{\"name\":\"TranslateX\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.CompositeTransform\",\"type\":\"Double\"},{\"name\":\"TranslateY\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.CompositeTransform\",\"type\":\"Double\"},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Transform\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"EllipseGeometry\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Center\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.EllipseGeometry\",\"type\":[\"Zero\"]},{\"name\":\"RadiusX\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.EllipseGeometry\",\"type\":\"Double\"},{\"name\":\"RadiusY\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.EllipseGeometry\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GeometryGroup\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"InvalidateGeometryRequested\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.GeometryGroup\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.GeometryGroup\",\"type\":\"GeometryCollection\"},{\"name\":\"FillRule\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.GeometryGroup\",\"type\":[\"value__\",\"EvenOdd\",\"Nonzero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LineGeometry\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"StartPoint\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.LineGeometry\",\"type\":[\"Zero\"]},{\"name\":\"EndPoint\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.LineGeometry\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LineSegment\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Point\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.LineSegment\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MatrixTransform\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Matrix\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.MatrixTransform\",\"type\":[]},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Transform\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PathFigure\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Segments\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.PathFigure\",\"type\":\"PathSegmentCollection\"},{\"name\":\"StartPoint\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.PathFigure\",\"type\":[\"Zero\"]},{\"name\":\"IsClosed\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.PathFigure\",\"type\":\"Boolean\"},{\"name\":\"IsFilled\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.PathFigure\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PathGeometry\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Figures\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.PathGeometry\",\"type\":\"PathFigureCollection\"},{\"name\":\"FillRule\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.PathGeometry\",\"type\":[\"value__\",\"EvenOdd\",\"Nonzero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PolyBezierSegment\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Points\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.PolyBezierSegment\",\"type\":\"PointCollection\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PolyLineSegment\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Points\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.PolyLineSegment\",\"type\":\"PointCollection\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PolyQuadraticBezierSegment\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Points\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment\",\"type\":\"PointCollection\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"QuadraticBezierSegment\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Point1\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment\",\"type\":[\"Zero\"]},{\"name\":\"Point2\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RectangleGeometry\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Rect\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.RectangleGeometry\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RotateTransform\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Angle\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.RotateTransform\",\"type\":\"Double\"},{\"name\":\"CenterX\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.RotateTransform\",\"type\":\"Double\"},{\"name\":\"CenterY\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.RotateTransform\",\"type\":\"Double\"},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Transform\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RoundRectangleGeometry\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"InvalidateGeometryRequested\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.GeometryGroup\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Rect\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry\",\"type\":[\"Zero\"]},{\"name\":\"CornerRadius\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry\",\"type\":[]},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.GeometryGroup\",\"type\":\"GeometryCollection\"},{\"name\":\"FillRule\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.GeometryGroup\",\"type\":[\"value__\",\"EvenOdd\",\"Nonzero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ScaleTransform\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.ScaleTransform\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.ScaleTransform\",\"type\":\"Double\"},{\"name\":\"CenterX\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.ScaleTransform\",\"type\":\"Double\"},{\"name\":\"CenterY\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.ScaleTransform\",\"type\":\"Double\"},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Transform\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SkewTransform\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"AngleX\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.SkewTransform\",\"type\":\"Double\"},{\"name\":\"AngleY\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.SkewTransform\",\"type\":\"Double\"},{\"name\":\"CenterX\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.SkewTransform\",\"type\":\"Double\"},{\"name\":\"CenterY\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.SkewTransform\",\"type\":\"Double\"},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Transform\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Transform\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Transform\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TransformGroup\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.TransformGroup\",\"type\":\"TransformCollection\"},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Transform\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TranslateTransform\",\"namespace\":\"Microsoft.Maui.Controls.Shapes\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.TranslateTransform\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.TranslateTransform\",\"type\":\"Double\"},{\"name\":\"Value\",\"namespace\":\"Microsoft.Maui.Controls.Shapes.Transform\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AbsoluteLayout\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.AbsoluteLayout\",\"type\":\"IAbsoluteList\\u00601\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"IView\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"IList\\u00601\"},{\"name\":\"LayoutHandler\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"ILayoutHandler\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true}]},{\"name\":\"FlexLayout\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Direction\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.FlexLayout\",\"type\":[\"value__\",\"Column\",\"ColumnReverse\",\"Row\",\"RowReverse\"]},{\"name\":\"JustifyContent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.FlexLayout\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\",\"SpaceBetween\",\"SpaceAround\",\"SpaceEvenly\"]},{\"name\":\"AlignContent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.FlexLayout\",\"type\":[\"value__\",\"Stretch\",\"Center\",\"Start\",\"End\",\"SpaceBetween\",\"SpaceAround\",\"SpaceEvenly\"]},{\"name\":\"AlignItems\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.FlexLayout\",\"type\":[\"value__\",\"Stretch\",\"Center\",\"Start\",\"End\"]},{\"name\":\"Position\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.FlexLayout\",\"type\":[\"value__\",\"Relative\",\"Absolute\"]},{\"name\":\"Wrap\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.FlexLayout\",\"type\":[\"value__\",\"NoWrap\",\"Wrap\",\"Reverse\"]},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"IView\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"IList\\u00601\"},{\"name\":\"LayoutHandler\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"ILayoutHandler\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Order\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.FlexLayout\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"Grow\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.FlexLayout\",\"type\":\"Single\",\"isAttached\":true},{\"name\":\"Shrink\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.FlexLayout\",\"type\":\"Single\",\"isAttached\":true},{\"name\":\"AlignSelf\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.FlexLayout\",\"type\":[\"value__\",\"Auto\",\"Stretch\",\"Center\",\"Start\",\"End\"],\"isAttached\":true},{\"name\":\"Basis\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.FlexLayout\",\"type\":[\"Auto\"],\"isAttached\":true}]},{\"name\":\"Grid\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Grid\",\"type\":\"IGridList\\u00601\"},{\"name\":\"ColumnDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Grid\",\"type\":\"ColumnDefinitionCollection\"},{\"name\":\"ColumnSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Grid\",\"type\":\"Double\"},{\"name\":\"RowDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Grid\",\"type\":\"RowDefinitionCollection\"},{\"name\":\"RowSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Grid\",\"type\":\"Double\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"IView\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"IList\\u00601\"},{\"name\":\"LayoutHandler\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"ILayoutHandler\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Column\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"ColumnSpan\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"Row\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"RowSpan\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Grid\",\"type\":\"Int32\",\"isAttached\":true}]},{\"name\":\"RelativeLayout\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.RelativeLayout\",\"type\":\"IRelativeList\\u00601\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"IView\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"IList\\u00601\"},{\"name\":\"LayoutHandler\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"ILayoutHandler\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"BoundsConstraint\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.RelativeLayout\",\"type\":\"BoundsConstraint\",\"isAttached\":true},{\"name\":\"HeightConstraint\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.RelativeLayout\",\"type\":\"Constraint\",\"isAttached\":true},{\"name\":\"WidthConstraint\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.RelativeLayout\",\"type\":\"Constraint\",\"isAttached\":true},{\"name\":\"XConstraint\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.RelativeLayout\",\"type\":\"Constraint\",\"isAttached\":true},{\"name\":\"YConstraint\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.RelativeLayout\",\"type\":\"Constraint\",\"isAttached\":true}]},{\"name\":\"StackLayout\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.StackLayout\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"Spacing\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.StackLayout\",\"type\":\"Double\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"IView\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"IList\\u00601\"},{\"name\":\"LayoutHandler\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\\u00601\",\"type\":\"ILayoutHandler\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TemplatedItemsList\\u00602\",\"namespace\":\"Microsoft.Maui.Controls.Internals\",\"doc\":null,\"attributes\":[{\"name\":\"CollectionChanged\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"NotifyCollectionChangedEventHandler\",\"isEvent\":true},{\"name\":\"GroupedCollectionChanged\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"NotifyCollectionChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GroupDisplayBinding\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"BindingBase\"},{\"name\":\"GroupHeaderTemplate\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"DataTemplate\"},{\"name\":\"GroupHeaderTemplateProperty\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"BindableProperty\"},{\"name\":\"GroupShortNameBinding\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"BindingBase\"},{\"name\":\"HeaderContent\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"TItem\"},{\"name\":\"IsGroupingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"Boolean\"},{\"name\":\"IsGroupingEnabledProperty\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"BindableProperty\"},{\"name\":\"ItemsSource\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"IEnumerable\"},{\"name\":\"Name\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"String\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"TemplatedItemsList\\u00602\"},{\"name\":\"ProgressiveLoadingProperty\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"BindableProperty\"},{\"name\":\"ShortName\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"String\"},{\"name\":\"ShortNames\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"Int32\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Internals.TemplatedItemsList\\u00602\",\"type\":\"TItem\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AndExpandGrid\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ColumnDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"ColumnDefinitionCollection\"},{\"name\":\"RowDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"RowDefinitionCollection\"},{\"name\":\"RowSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Double\"},{\"name\":\"ColumnSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Column\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"ColumnSpan\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"Row\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"RowSpan\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true}]},{\"name\":\"ProxyElement\",\"namespace\":\"Microsoft.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BindableObjectProxy\\u00601\",\"namespace\":\"Microsoft.Maui.Controls.Internals\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TargetReference\",\"namespace\":\"Microsoft.Maui.Controls.Internals.BindableObjectProxy\\u00601\",\"type\":\"WeakReference\\u00601\"},{\"name\":\"BindingsBackpack\",\"namespace\":\"Microsoft.Maui.Controls.Internals.BindableObjectProxy\\u00601\",\"type\":\"IList\\u00601\"},{\"name\":\"ValuesBackpack\",\"namespace\":\"Microsoft.Maui.Controls.Internals.BindableObjectProxy\\u00601\",\"type\":\"IList\\u00601\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:24 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/SkiaSharp.Extended.UI.json",
    "content": "{\"xmlns\":\"assembly=SkiaSharp.Extended.UI\",\"types\":[{\"name\":\"SKConfettiEmitter\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ParticlesCreated\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiEmitter\",\"type\":\"Action\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ParticleRate\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiEmitter\",\"type\":\"Int32\"},{\"name\":\"MaxParticles\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiEmitter\",\"type\":\"Int32\"},{\"name\":\"Duration\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiEmitter\",\"type\":\"Double\"},{\"name\":\"IsComplete\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiEmitter\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKConfettiSquareShape\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKConfettiCircleShape\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKConfettiRectShape\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HeightRatio\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiRectShape\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKConfettiOvalShape\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HeightRatio\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiOvalShape\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKConfettiPathShape\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Path\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiPathShape\",\"type\":\"SKPath\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKConfettiSystem\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsAnimationEnabled\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"Boolean\"},{\"name\":\"EmitterBounds\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":[]},{\"name\":\"Emitter\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"SKConfettiEmitter\"},{\"name\":\"Colors\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"SKConfettiColorCollection\"},{\"name\":\"Physics\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"SKConfettiPhysicsCollection\"},{\"name\":\"Shapes\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"SKConfettiShapeCollection\"},{\"name\":\"StartAngle\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"Double\"},{\"name\":\"EndAngle\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"Double\"},{\"name\":\"MinimumInitialVelocity\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"Double\"},{\"name\":\"MaximumInitialVelocity\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"Double\"},{\"name\":\"MinimumRotationVelocity\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"Double\"},{\"name\":\"MaximumRotationVelocity\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"Double\"},{\"name\":\"MaximumVelocity\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"Double\"},{\"name\":\"Lifetime\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"Double\"},{\"name\":\"FadeOut\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"Boolean\"},{\"name\":\"Gravity\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":[\"Zero\"]},{\"name\":\"IsComplete\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiSystem\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKConfettiView\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsComplete\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiView\",\"type\":\"Boolean\"},{\"name\":\"Systems\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKConfettiView\",\"type\":\"SKConfettiSystemCollection\"},{\"name\":\"IsAnimationEnabled\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKAnimatedSurfaceView\",\"type\":\"Boolean\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKFileLottieImageSource\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"File\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKFileLottieImageSource\",\"type\":\"String\"},{\"name\":\"IsEmpty\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKFileLottieImageSource\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKLottieImageSource\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEmpty\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKLottieImageSource\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKLottieView\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"AnimationFailed\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKLottieView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"AnimationLoaded\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKLottieView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Source\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKLottieView\",\"type\":\"SKLottieImageSource\"},{\"name\":\"Duration\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKLottieView\",\"type\":[\"Zero\",\"MaxValue\",\"MinValue\",\"NanosecondsPerTick\",\"TicksPerMicrosecond\",\"TicksPerMillisecond\",\"TicksPerSecond\",\"TicksPerMinute\",\"TicksPerHour\",\"TicksPerDay\"]},{\"name\":\"Progress\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKLottieView\",\"type\":[\"Zero\",\"MaxValue\",\"MinValue\",\"NanosecondsPerTick\",\"TicksPerMicrosecond\",\"TicksPerMillisecond\",\"TicksPerSecond\",\"TicksPerMinute\",\"TicksPerHour\",\"TicksPerDay\"]},{\"name\":\"IsComplete\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKLottieView\",\"type\":\"Boolean\"},{\"name\":\"RepeatCount\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKLottieView\",\"type\":\"Int32\"},{\"name\":\"RepeatMode\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKLottieView\",\"type\":[\"value__\",\"Restart\",\"Reverse\"]},{\"name\":\"IsAnimationEnabled\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKAnimatedSurfaceView\",\"type\":\"Boolean\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKStreamLottieImageSource\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Stream\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKStreamLottieImageSource\",\"type\":\"Func\\u00602\"},{\"name\":\"IsEmpty\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKStreamLottieImageSource\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKUriLottieImageSource\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Uri\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKUriLottieImageSource\",\"type\":\"Uri\"},{\"name\":\"IsEmpty\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKUriLottieImageSource\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKAnimatedSurfaceView\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsAnimationEnabled\",\"namespace\":\"SkiaSharp.Extended.UI.Controls.SKAnimatedSurfaceView\",\"type\":\"Boolean\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKSurfaceView\",\"namespace\":\"SkiaSharp.Extended.UI.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/SkiaSharp.Views.Maui.Controls.json",
    "content": "{\"xmlns\":\"assembly=SkiaSharp.Views.Maui.Controls\",\"types\":[{\"name\":\"SKCanvasView\",\"namespace\":\"SkiaSharp.Views.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PaintSurface\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKCanvasView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Touch\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKCanvasView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CanvasSize\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKCanvasView\",\"type\":[\"Empty\"]},{\"name\":\"IgnorePixelScaling\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKCanvasView\",\"type\":\"Boolean\"},{\"name\":\"EnableTouchEvents\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKCanvasView\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKImageImageSource\",\"namespace\":\"SkiaSharp.Views.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Image\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKImageImageSource\",\"type\":\"SKImage\"},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.ImageSource\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKBitmapImageSource\",\"namespace\":\"SkiaSharp.Views.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Bitmap\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKBitmapImageSource\",\"type\":\"SKBitmap\"},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.ImageSource\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKPixmapImageSource\",\"namespace\":\"SkiaSharp.Views.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Pixmap\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKPixmapImageSource\",\"type\":\"SKPixmap\"},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.ImageSource\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKPictureImageSource\",\"namespace\":\"SkiaSharp.Views.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Picture\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKPictureImageSource\",\"type\":\"SKPicture\"},{\"name\":\"Dimensions\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKPictureImageSource\",\"type\":[\"Empty\"]},{\"name\":\"IsEmpty\",\"namespace\":\"Microsoft.Maui.Controls.ImageSource\",\"type\":\"Boolean\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SKGLView\",\"namespace\":\"SkiaSharp.Views.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"PaintSurface\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKGLView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Touch\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKGLView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HasRenderLoop\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKGLView\",\"type\":\"Boolean\"},{\"name\":\"EnableTouchEvents\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKGLView\",\"type\":\"Boolean\"},{\"name\":\"CanvasSize\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKGLView\",\"type\":[\"Empty\"]},{\"name\":\"GRContext\",\"namespace\":\"SkiaSharp.Views.Maui.Controls.SKGLView\",\"type\":\"GRContext\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.Backdrop.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"FlatEdgeShape\",\"namespace\":\"Syncfusion.Maui.Backdrop\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BackdropBackLayer\",\"namespace\":\"Syncfusion.Maui.Backdrop\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BackdropFrontLayer\",\"namespace\":\"Syncfusion.Maui.Backdrop\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"RevealedHeight\",\"namespace\":\"Syncfusion.Maui.Backdrop.BackdropFrontLayer\",\"type\":\"Double\"},{\"name\":\"EnableSwiping\",\"namespace\":\"Syncfusion.Maui.Backdrop.BackdropFrontLayer\",\"type\":\"Boolean\"},{\"name\":\"RightCornerRadius\",\"namespace\":\"Syncfusion.Maui.Backdrop.BackdropFrontLayer\",\"type\":\"Double\"},{\"name\":\"LeftCornerRadius\",\"namespace\":\"Syncfusion.Maui.Backdrop.BackdropFrontLayer\",\"type\":\"Double\"},{\"name\":\"EdgeShape\",\"namespace\":\"Syncfusion.Maui.Backdrop.BackdropFrontLayer\",\"type\":[\"value__\",\"Flat\",\"Curve\"]},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfBackdropPage\",\"namespace\":\"Syncfusion.Maui.Backdrop\",\"doc\":null,\"attributes\":[{\"name\":\"BackLayerStateChanged\",\"namespace\":\"Syncfusion.Maui.Backdrop.SfBackdropPage\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedTo\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatingFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"NavigatedFrom\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Appearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Disappearing\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Backdrop.SfBackdropPage\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Syncfusion.Maui.Backdrop.SfBackdropPage\",\"type\":\"ControlTemplate\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Backdrop.SfBackdropPage\",\"type\":[\"Zero\"]},{\"name\":\"BackLayer\",\"namespace\":\"Syncfusion.Maui.Backdrop.SfBackdropPage\",\"type\":\"BackdropBackLayer\"},{\"name\":\"FrontLayer\",\"namespace\":\"Syncfusion.Maui.Backdrop.SfBackdropPage\",\"type\":\"BackdropFrontLayer\"},{\"name\":\"CloseIconImageSource\",\"namespace\":\"Syncfusion.Maui.Backdrop.SfBackdropPage\",\"type\":\"ImageSource\"},{\"name\":\"OpenIconImageSource\",\"namespace\":\"Syncfusion.Maui.Backdrop.SfBackdropPage\",\"type\":\"ImageSource\"},{\"name\":\"OpenText\",\"namespace\":\"Syncfusion.Maui.Backdrop.SfBackdropPage\",\"type\":\"String\"},{\"name\":\"CloseText\",\"namespace\":\"Syncfusion.Maui.Backdrop.SfBackdropPage\",\"type\":\"String\"},{\"name\":\"IsBackLayerRevealed\",\"namespace\":\"Syncfusion.Maui.Backdrop.SfBackdropPage\",\"type\":\"Boolean\"},{\"name\":\"BackLayerRevealOption\",\"namespace\":\"Syncfusion.Maui.Backdrop.SfBackdropPage\",\"type\":[\"value__\",\"Auto\",\"Fill\"]},{\"name\":\"BackgroundImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IconImageSource\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ImageSource\"},{\"name\":\"IsBusy\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"Title\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"String\"},{\"name\":\"ToolbarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"MenuBarItems\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"IList\\u00601\"},{\"name\":\"ContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":[\"Zero\"]},{\"name\":\"IgnoresContainerArea\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"Boolean\"},{\"name\":\"InternalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Page\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.Barcode.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"BarcodeTextStyle\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Barcode.BarcodeTextStyle\",\"type\":\"Double\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Barcode.BarcodeTextStyle\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Barcode.BarcodeTextStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Barcode.BarcodeTextStyle\",\"type\":\"Color\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BarcodeView\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfBarcodeGenerator\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Barcode.SfBarcodeGenerator\",\"type\":\"String\"},{\"name\":\"Symbology\",\"namespace\":\"Syncfusion.Maui.Barcode.SfBarcodeGenerator\",\"type\":\"SymbologyBase\"},{\"name\":\"ForegroundColor\",\"namespace\":\"Syncfusion.Maui.Barcode.SfBarcodeGenerator\",\"type\":\"Color\"},{\"name\":\"ShowText\",\"namespace\":\"Syncfusion.Maui.Barcode.SfBarcodeGenerator\",\"type\":\"Boolean\"},{\"name\":\"TextAlignment\",\"namespace\":\"Syncfusion.Maui.Barcode.SfBarcodeGenerator\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"TextSpacing\",\"namespace\":\"Syncfusion.Maui.Barcode.SfBarcodeGenerator\",\"type\":\"Double\"},{\"name\":\"TextStyle\",\"namespace\":\"Syncfusion.Maui.Barcode.SfBarcodeGenerator\",\"type\":\"BarcodeTextStyle\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Codabar\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Code128\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Code128A\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Code128B\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Code128C\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Code39\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"EnableCheckSum\",\"namespace\":\"Syncfusion.Maui.Barcode.Code39\",\"type\":\"Boolean\"},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Code39Extended\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"EnableCheckSum\",\"namespace\":\"Syncfusion.Maui.Barcode.Code39\",\"type\":\"Boolean\"},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"Code93\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"EAN13\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"EAN8\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"UPCA\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"UPCE\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataMatrix\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Encoding\",\"namespace\":\"Syncfusion.Maui.Barcode.DataMatrix\",\"type\":[\"value__\",\"Auto\",\"ASCII\",\"ASCIINumeric\",\"Base256\"]},{\"name\":\"Size\",\"namespace\":\"Syncfusion.Maui.Barcode.DataMatrix\",\"type\":[\"value__\",\"Auto\",\"Size10x10\",\"Size12x12\",\"Size14x14\",\"Size16x16\",\"Size18x18\",\"Size20x20\",\"Size22x22\",\"Size24x24\",\"Size26x26\",\"Size32x32\",\"Size36x36\",\"Size40x40\",\"Size44x44\",\"Size48x48\",\"Size52x52\",\"Size64x64\",\"Size72x72\",\"Size80x80\",\"Size88x88\",\"Size96x96\",\"Size104x104\",\"Size120x120\",\"Size132x132\",\"Size144x144\",\"Size8x18\",\"Size8x32\",\"Size12x26\",\"Size12x36\",\"Size16x36\",\"Size16x48\"]},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"QRCode\",\"namespace\":\"Syncfusion.Maui.Barcode\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CodeVersion\",\"namespace\":\"Syncfusion.Maui.Barcode.QRCode\",\"type\":[\"value__\",\"Auto\",\"Version01\",\"Version02\",\"Version03\",\"Version04\",\"Version05\",\"Version06\",\"Version07\",\"Version08\",\"Version09\",\"Version10\",\"Version11\",\"Version12\",\"Version13\",\"Version14\",\"Version15\",\"Version16\",\"Version17\",\"Version18\",\"Version19\",\"Version20\",\"Version21\",\"Version22\",\"Version23\",\"Version24\",\"Version25\",\"Version26\",\"Version27\",\"Version28\",\"Version29\",\"Version30\",\"Version31\",\"Version32\",\"Version33\",\"Version34\",\"Version35\",\"Version36\",\"Version37\",\"Version38\",\"Version39\",\"Version40\"]},{\"name\":\"ErrorCorrectionLevel\",\"namespace\":\"Syncfusion.Maui.Barcode.QRCode\",\"type\":[\"value__\",\"Auto\",\"Low\",\"Medium\",\"Quartile\",\"High\"]},{\"name\":\"InputMode\",\"namespace\":\"Syncfusion.Maui.Barcode.QRCode\",\"type\":[\"value__\",\"Auto\",\"Numeric\",\"AlphaNumeric\",\"Binary\"]},{\"name\":\"Module\",\"namespace\":\"Syncfusion.Maui.Barcode.SymbologyBase\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.Calendar.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"CalendarVerticalStackLayout\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CustomSnapLayout\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CalendarDateRange\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"StartDate\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarDateRange\",\"type\":[]},{\"name\":\"EndDate\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarDateRange\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CalendarTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarTextStyle\",\"type\":\"Color\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarTextStyle\",\"type\":\"Double\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarTextStyle\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarTextStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CalendarHeaderView\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Height\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarHeaderView\",\"type\":\"Double\"},{\"name\":\"TextFormat\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarHeaderView\",\"type\":\"String\"},{\"name\":\"TextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarHeaderView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarHeaderView\",\"type\":\"Brush\"},{\"name\":\"ShowNavigationArrows\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarHeaderView\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CalendarMonthView\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"WeekNumberStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"CalendarWeekNumberStyle\"},{\"name\":\"NumberOfVisibleWeeks\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"Int32\"},{\"name\":\"FirstDayOfWeek\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":[\"value__\",\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"]},{\"name\":\"ShowWeekNumber\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"Boolean\"},{\"name\":\"HeaderView\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"CalendarMonthHeaderView\"},{\"name\":\"WeekendDays\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"List\\u00601\"},{\"name\":\"SpecialDates\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"List\\u00601\"},{\"name\":\"SpecialDatesBackground\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"Brush\"},{\"name\":\"WeekendDatesBackground\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"Brush\"},{\"name\":\"DisabledDatesBackground\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"Brush\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"Brush\"},{\"name\":\"TodayBackground\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"Brush\"},{\"name\":\"TrailingLeadingDatesBackground\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"Brush\"},{\"name\":\"TextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"TodayTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"TrailingLeadingDatesTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"DisabledDatesTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"WeekendDatesTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"SpecialDatesTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"RangeTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"SelectionTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CalendarMonthHeaderView\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextFormat\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthHeaderView\",\"type\":\"String\"},{\"name\":\"Height\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthHeaderView\",\"type\":\"Double\"},{\"name\":\"TextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthHeaderView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarMonthHeaderView\",\"type\":\"Brush\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CalendarWeekNumberStyle\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarWeekNumberStyle\",\"type\":\"Brush\"},{\"name\":\"TextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarWeekNumberStyle\",\"type\":\"CalendarTextStyle\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CalendarYearView\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"MonthFormat\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarYearView\",\"type\":\"String\"},{\"name\":\"DisabledDatesBackground\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarYearView\",\"type\":\"Brush\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarYearView\",\"type\":\"Brush\"},{\"name\":\"TodayBackground\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarYearView\",\"type\":\"Brush\"},{\"name\":\"LeadingDatesBackground\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarYearView\",\"type\":\"Brush\"},{\"name\":\"TextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarYearView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"TodayTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarYearView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"LeadingDatesTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarYearView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"DisabledDatesTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarYearView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"RangeTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarYearView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"SelectionTextStyle\",\"namespace\":\"Syncfusion.Maui.Calendar.CalendarYearView\",\"type\":\"CalendarTextStyle\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfCalendar\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"ViewChanged\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SelectionChanged\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Tapped\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DoubleTapped\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LongPressed\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SelectableDayPredicate\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"Func\\u00602\"},{\"name\":\"View\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":[\"value__\",\"Month\",\"Year\",\"Decade\",\"Century\"]},{\"name\":\"HeaderView\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"CalendarHeaderView\"},{\"name\":\"NavigationDirection\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":[\"value__\",\"Horizontal\",\"Vertical\"]},{\"name\":\"DisplayDate\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"MinimumDate\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"MaximumDate\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"EnablePastDates\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"Boolean\"},{\"name\":\"MonthView\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"CalendarMonthView\"},{\"name\":\"SelectionShape\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":[\"value__\",\"Circle\",\"Rectangle\"]},{\"name\":\"EnableSwipeSelection\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"Boolean\"},{\"name\":\"YearView\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"CalendarYearView\"},{\"name\":\"SelectedDate\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":[]},{\"name\":\"SelectedDates\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"SelectedDateRange\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"CalendarDateRange\"},{\"name\":\"SelectionMode\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":[\"value__\",\"Single\",\"Multiple\",\"Range\"]},{\"name\":\"CanToggleDaySelection\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"Boolean\"},{\"name\":\"AllowViewNavigation\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"Boolean\"},{\"name\":\"TodayHighlightBrush\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"Brush\"},{\"name\":\"SelectionBackground\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"Brush\"},{\"name\":\"StartRangeSelectionBackground\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"Brush\"},{\"name\":\"EndRangeSelectionBackground\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"Brush\"},{\"name\":\"ShowTrailingAndLeadingDates\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":\"Boolean\"},{\"name\":\"RangeSelectionDirection\",\"namespace\":\"Syncfusion.Maui.Calendar.SfCalendar\",\"type\":[\"value__\",\"Default\",\"None\",\"Forward\",\"Backward\",\"Both\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MonthHoverView\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MonthView\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MonthViewHeader\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MonthViewLayout\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"YearHoverView\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"YearView\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"HeaderLayout\",\"namespace\":\"Syncfusion.Maui.Calendar\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.Charts.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"CartesianChartArea\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PrimaryAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianChartArea\",\"type\":\"ChartAxis\"},{\"name\":\"SecondaryAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianChartArea\",\"type\":\"RangeAxisBase\"},{\"name\":\"IsTransposed\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianChartArea\",\"type\":\"Boolean\"},{\"name\":\"EnableSideBySideSeriesPlacement\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianChartArea\",\"type\":\"Boolean\"},{\"name\":\"Series\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianChartArea\",\"type\":\"ChartSeriesCollection\"},{\"name\":\"VisibleSeries\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianChartArea\",\"type\":\"ReadOnlyObservableCollection\\u00601\"},{\"name\":\"PlotArea\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianChartArea\",\"type\":\"IPlotArea\"},{\"name\":\"AreaBounds\",\"namespace\":\"Syncfusion.Maui.Core.Internals.AreaBase\",\"type\":[\"Zero\"]},{\"name\":\"NeedsRelayout\",\"namespace\":\"Syncfusion.Maui.Core.Internals.AreaBase\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"CartesianPlotArea\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Series\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":\"ChartSeriesCollection\"},{\"name\":\"PlotAreaBounds\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":[\"Zero\"]},{\"name\":\"ShouldPopulateLegendItems\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":\"Boolean\"},{\"name\":\"LegendItems\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":\"ReadOnlyObservableCollection\\u00601\"},{\"name\":\"VisibleSeries\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":\"ReadOnlyObservableCollection\\u00601\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"ChartPlotArea\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Series\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":\"ChartSeriesCollection\"},{\"name\":\"PlotAreaBounds\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":[\"Zero\"]},{\"name\":\"ShouldPopulateLegendItems\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":\"Boolean\"},{\"name\":\"LegendItems\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":\"ReadOnlyObservableCollection\\u00601\"},{\"name\":\"VisibleSeries\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":\"ReadOnlyObservableCollection\\u00601\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"CircularChartArea\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Series\",\"namespace\":\"Syncfusion.Maui.Charts.CircularChartArea\",\"type\":\"ChartSeriesCollection\"},{\"name\":\"VisibleSeries\",\"namespace\":\"Syncfusion.Maui.Charts.CircularChartArea\",\"type\":\"ReadOnlyObservableCollection\\u00601\"},{\"name\":\"PlotArea\",\"namespace\":\"Syncfusion.Maui.Charts.CircularChartArea\",\"type\":\"IPlotArea\"},{\"name\":\"AreaBounds\",\"namespace\":\"Syncfusion.Maui.Core.Internals.AreaBase\",\"type\":[\"Zero\"]},{\"name\":\"NeedsRelayout\",\"namespace\":\"Syncfusion.Maui.Core.Internals.AreaBase\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"CircularPlotArea\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Series\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":\"ChartSeriesCollection\"},{\"name\":\"PlotAreaBounds\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":[\"Zero\"]},{\"name\":\"ShouldPopulateLegendItems\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":\"Boolean\"},{\"name\":\"LegendItems\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":\"ReadOnlyObservableCollection\\u00601\"},{\"name\":\"VisibleSeries\",\"namespace\":\"Syncfusion.Maui.Charts.ChartPlotArea\",\"type\":\"ReadOnlyObservableCollection\\u00601\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"PyramidChartArea\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PlotArea\",\"namespace\":\"Syncfusion.Maui.Charts.PyramidChartArea\",\"type\":\"IPlotArea\"},{\"name\":\"LegendItems\",\"namespace\":\"Syncfusion.Maui.Charts.PyramidChartArea\",\"type\":\"ReadOnlyObservableCollection\\u00601\"},{\"name\":\"PlotAreaBounds\",\"namespace\":\"Syncfusion.Maui.Charts.PyramidChartArea\",\"type\":[\"Zero\"]},{\"name\":\"ShouldPopulateLegendItems\",\"namespace\":\"Syncfusion.Maui.Charts.PyramidChartArea\",\"type\":\"Boolean\"},{\"name\":\"AreaBounds\",\"namespace\":\"Syncfusion.Maui.Core.Internals.AreaBase\",\"type\":[\"Zero\"]},{\"name\":\"NeedsRelayout\",\"namespace\":\"Syncfusion.Maui.Core.Internals.AreaBase\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"CategoryAxis\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"LabelCreated\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ActualRangeChanged\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LabelPlacement\",\"namespace\":\"Syncfusion.Maui.Charts.CategoryAxis\",\"type\":[\"value__\",\"OnTicks\",\"BetweenTicks\"]},{\"name\":\"Interval\",\"namespace\":\"Syncfusion.Maui.Charts.CategoryAxis\",\"type\":\"Double\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"PlotOffsetStart\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"PlotOffsetEnd\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"AxisLineOffset\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"LabelRotation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartAxisLabelStyle\"},{\"name\":\"AxisLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartLineStyle\"},{\"name\":\"CrossesAt\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Object\"},{\"name\":\"RenderNextToCrossingValue\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"CrossAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartAxisTitle\"},{\"name\":\"IsInversed\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"EdgeLabelsDrawingMode\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":[\"value__\",\"Center\",\"Shift\",\"Fit\",\"Hide\"]},{\"name\":\"MajorGridLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartLineStyle\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartAxisTickStyle\"},{\"name\":\"ZoomPosition\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"ZoomFactor\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"ShowMajorGridLines\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"EnableAutoIntervalOnZooming\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"ShowTrackballLabel\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"TrackballLabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartLabelStyle\"},{\"name\":\"Name\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"String\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DateTimeAxis\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"LabelCreated\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ActualRangeChanged\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Interval\",\"namespace\":\"Syncfusion.Maui.Charts.DateTimeAxis\",\"type\":\"Double\"},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.Charts.DateTimeAxis\",\"type\":[]},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.Charts.DateTimeAxis\",\"type\":[]},{\"name\":\"RangePadding\",\"namespace\":\"Syncfusion.Maui.Charts.DateTimeAxis\",\"type\":[\"value__\",\"Additional\",\"None\",\"Auto\",\"Round\",\"RoundStart\",\"RoundEnd\",\"PrependInterval\",\"AppendInterval\"]},{\"name\":\"IntervalType\",\"namespace\":\"Syncfusion.Maui.Charts.DateTimeAxis\",\"type\":[\"value__\",\"Auto\",\"Milliseconds\",\"Seconds\",\"Minutes\",\"Hours\",\"Days\",\"Months\",\"Years\"]},{\"name\":\"ActualMinimum\",\"namespace\":\"Syncfusion.Maui.Charts.DateTimeAxis\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"ActualMaximum\",\"namespace\":\"Syncfusion.Maui.Charts.DateTimeAxis\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"EdgeLabelsVisibilityMode\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":[\"value__\",\"Default\",\"AlwaysVisible\",\"Visible\"]},{\"name\":\"MinorTicksPerInterval\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":\"Int32\"},{\"name\":\"MinorGridLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":\"ChartLineStyle\"},{\"name\":\"MinorTickStyle\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":\"ChartAxisTickStyle\"},{\"name\":\"ShowMinorGridLines\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"PlotOffsetStart\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"PlotOffsetEnd\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"AxisLineOffset\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"LabelRotation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartAxisLabelStyle\"},{\"name\":\"AxisLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartLineStyle\"},{\"name\":\"CrossesAt\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Object\"},{\"name\":\"RenderNextToCrossingValue\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"CrossAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartAxisTitle\"},{\"name\":\"IsInversed\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"EdgeLabelsDrawingMode\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":[\"value__\",\"Center\",\"Shift\",\"Fit\",\"Hide\"]},{\"name\":\"MajorGridLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartLineStyle\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartAxisTickStyle\"},{\"name\":\"ZoomPosition\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"ZoomFactor\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"ShowMajorGridLines\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"EnableAutoIntervalOnZooming\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"ShowTrackballLabel\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"TrackballLabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartLabelStyle\"},{\"name\":\"Name\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"String\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LogarithmicAxis\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"LabelCreated\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ActualRangeChanged\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ActualMinimum\",\"namespace\":\"Syncfusion.Maui.Charts.LogarithmicAxis\",\"type\":\"Double\"},{\"name\":\"ActualMaximum\",\"namespace\":\"Syncfusion.Maui.Charts.LogarithmicAxis\",\"type\":\"Double\"},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.Charts.LogarithmicAxis\",\"type\":[]},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.Charts.LogarithmicAxis\",\"type\":[]},{\"name\":\"LogarithmicBase\",\"namespace\":\"Syncfusion.Maui.Charts.LogarithmicAxis\",\"type\":\"Double\"},{\"name\":\"Interval\",\"namespace\":\"Syncfusion.Maui.Charts.LogarithmicAxis\",\"type\":\"Double\"},{\"name\":\"EdgeLabelsVisibilityMode\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":[\"value__\",\"Default\",\"AlwaysVisible\",\"Visible\"]},{\"name\":\"MinorTicksPerInterval\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":\"Int32\"},{\"name\":\"MinorGridLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":\"ChartLineStyle\"},{\"name\":\"MinorTickStyle\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":\"ChartAxisTickStyle\"},{\"name\":\"ShowMinorGridLines\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"PlotOffsetStart\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"PlotOffsetEnd\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"AxisLineOffset\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"LabelRotation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartAxisLabelStyle\"},{\"name\":\"AxisLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartLineStyle\"},{\"name\":\"CrossesAt\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Object\"},{\"name\":\"RenderNextToCrossingValue\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"CrossAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartAxisTitle\"},{\"name\":\"IsInversed\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"EdgeLabelsDrawingMode\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":[\"value__\",\"Center\",\"Shift\",\"Fit\",\"Hide\"]},{\"name\":\"MajorGridLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartLineStyle\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartAxisTickStyle\"},{\"name\":\"ZoomPosition\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"ZoomFactor\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"ShowMajorGridLines\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"EnableAutoIntervalOnZooming\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"ShowTrackballLabel\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"TrackballLabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartLabelStyle\"},{\"name\":\"Name\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"String\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"NumericalAxis\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"LabelCreated\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ActualRangeChanged\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Interval\",\"namespace\":\"Syncfusion.Maui.Charts.NumericalAxis\",\"type\":\"Double\"},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.Charts.NumericalAxis\",\"type\":[]},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.Charts.NumericalAxis\",\"type\":[]},{\"name\":\"RangePadding\",\"namespace\":\"Syncfusion.Maui.Charts.NumericalAxis\",\"type\":[\"value__\",\"Auto\",\"None\",\"Round\",\"Normal\",\"Additional\",\"RoundStart\",\"RoundEnd\",\"PrependInterval\",\"AppendInterval\"]},{\"name\":\"ActualMinimum\",\"namespace\":\"Syncfusion.Maui.Charts.NumericalAxis\",\"type\":\"Double\"},{\"name\":\"ActualMaximum\",\"namespace\":\"Syncfusion.Maui.Charts.NumericalAxis\",\"type\":\"Double\"},{\"name\":\"EdgeLabelsVisibilityMode\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":[\"value__\",\"Default\",\"AlwaysVisible\",\"Visible\"]},{\"name\":\"MinorTicksPerInterval\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":\"Int32\"},{\"name\":\"MinorGridLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":\"ChartLineStyle\"},{\"name\":\"MinorTickStyle\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":\"ChartAxisTickStyle\"},{\"name\":\"ShowMinorGridLines\",\"namespace\":\"Syncfusion.Maui.Charts.RangeAxisBase\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"PlotOffsetStart\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"PlotOffsetEnd\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"AxisLineOffset\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"LabelRotation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartAxisLabelStyle\"},{\"name\":\"AxisLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartLineStyle\"},{\"name\":\"CrossesAt\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Object\"},{\"name\":\"RenderNextToCrossingValue\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"CrossAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"String\"},{\"name\":\"Title\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartAxisTitle\"},{\"name\":\"IsInversed\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"EdgeLabelsDrawingMode\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":[\"value__\",\"Center\",\"Shift\",\"Fit\",\"Hide\"]},{\"name\":\"MajorGridLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartLineStyle\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartAxisTickStyle\"},{\"name\":\"ZoomPosition\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"ZoomFactor\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Double\"},{\"name\":\"ShowMajorGridLines\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"EnableAutoIntervalOnZooming\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"ShowTrackballLabel\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"Boolean\"},{\"name\":\"TrackballLabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"ChartLabelStyle\"},{\"name\":\"Name\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxis\",\"type\":\"String\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CartesianAxisLayout\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"CartesianGridLineLayout\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartTooltipBehavior\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTooltipBehavior\",\"type\":\"Brush\"},{\"name\":\"Duration\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTooltipBehavior\",\"type\":\"Int32\"},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTooltipBehavior\",\"type\":\"Color\"},{\"name\":\"Margin\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTooltipBehavior\",\"type\":[\"Zero\"]},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTooltipBehavior\",\"type\":\"Single\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTooltipBehavior\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTooltipBehavior\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartTrackballBehavior\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DisplayMode\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTrackballBehavior\",\"type\":[\"value__\",\"FloatAllPoints\",\"NearestPoint\"]},{\"name\":\"LineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTrackballBehavior\",\"type\":\"ChartLineStyle\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTrackballBehavior\",\"type\":\"ChartLabelStyle\"},{\"name\":\"MarkerSettings\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTrackballBehavior\",\"type\":\"ChartMarkerSettings\"},{\"name\":\"ShowMarkers\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTrackballBehavior\",\"type\":\"Boolean\"},{\"name\":\"ShowLine\",\"namespace\":\"Syncfusion.Maui.Charts.ChartTrackballBehavior\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartZoomPanBehavior\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"EnablePinchZooming\",\"namespace\":\"Syncfusion.Maui.Charts.ChartZoomPanBehavior\",\"type\":\"Boolean\"},{\"name\":\"EnablePanning\",\"namespace\":\"Syncfusion.Maui.Charts.ChartZoomPanBehavior\",\"type\":\"Boolean\"},{\"name\":\"EnableDoubleTap\",\"namespace\":\"Syncfusion.Maui.Charts.ChartZoomPanBehavior\",\"type\":\"Boolean\"},{\"name\":\"ZoomMode\",\"namespace\":\"Syncfusion.Maui.Charts.ChartZoomPanBehavior\",\"type\":[\"value__\",\"X\",\"Y\",\"XY\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataPointSelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"SelectionChanging\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSelectionBehavior\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SelectionChanged\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSelectionBehavior\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Type\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSelectionBehavior\",\"type\":[\"value__\",\"None\",\"Single\",\"Multiple\",\"SingleDeselect\"]},{\"name\":\"SelectionBrush\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSelectionBehavior\",\"type\":\"Brush\"},{\"name\":\"SelectedIndex\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSelectionBehavior\",\"type\":\"Int32\"},{\"name\":\"SelectedIndexes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSelectionBehavior\",\"type\":\"List\\u00601\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SeriesSelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"SelectionChanging\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSelectionBehavior\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SelectionChanged\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSelectionBehavior\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Type\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSelectionBehavior\",\"type\":[\"value__\",\"None\",\"Single\",\"Multiple\",\"SingleDeselect\"]},{\"name\":\"SelectionBrush\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSelectionBehavior\",\"type\":\"Brush\"},{\"name\":\"SelectedIndex\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSelectionBehavior\",\"type\":\"Int32\"},{\"name\":\"SelectedIndexes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSelectionBehavior\",\"type\":\"List\\u00601\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CartesianDataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"BarAlignment\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianDataLabelSettings\",\"type\":[\"value__\",\"Top\",\"Middle\",\"Bottom\"]},{\"name\":\"UseSeriesPalette\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelSettings\",\"type\":\"Boolean\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelSettings\",\"type\":\"ChartDataLabelStyle\"},{\"name\":\"LabelPlacement\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelSettings\",\"type\":[\"value__\",\"Auto\",\"Inner\",\"Center\",\"Outer\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CircularDataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ConnectorType\",\"namespace\":\"Syncfusion.Maui.Charts.CircularDataLabelSettings\",\"type\":[\"value__\",\"Curve\",\"Line\"]},{\"name\":\"UseSeriesPalette\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelSettings\",\"type\":\"Boolean\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelSettings\",\"type\":\"ChartDataLabelStyle\"},{\"name\":\"LabelPlacement\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelSettings\",\"type\":[\"value__\",\"Auto\",\"Inner\",\"Center\",\"Outer\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PyramidDataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Context\",\"namespace\":\"Syncfusion.Maui.Charts.PyramidDataLabelSettings\",\"type\":[\"value__\",\"YValue\",\"XValue\"]},{\"name\":\"UseSeriesPalette\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelSettings\",\"type\":\"Boolean\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelSettings\",\"type\":\"ChartDataLabelStyle\"},{\"name\":\"LabelPlacement\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelSettings\",\"type\":[\"value__\",\"Auto\",\"Inner\",\"Center\",\"Outer\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FunnelDataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Context\",\"namespace\":\"Syncfusion.Maui.Charts.FunnelDataLabelSettings\",\"type\":[\"value__\",\"YValue\",\"XValue\"]},{\"name\":\"UseSeriesPalette\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelSettings\",\"type\":\"Boolean\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelSettings\",\"type\":\"ChartDataLabelStyle\"},{\"name\":\"LabelPlacement\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelSettings\",\"type\":[\"value__\",\"Auto\",\"Inner\",\"Center\",\"Outer\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartAxisView\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataLabelView\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PyramidDataLabelsView\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SeriesView\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartTitleView\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HasShadow\",\"namespace\":\"Microsoft.Maui.Controls.Frame\",\"type\":\"Boolean\"},{\"name\":\"BorderColor\",\"namespace\":\"Microsoft.Maui.Controls.Frame\",\"type\":\"Color\"},{\"name\":\"CornerRadius\",\"namespace\":\"Microsoft.Maui.Controls.Frame\",\"type\":\"Single\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PyramidChartView\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartLegend\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLegend\",\"type\":\"Boolean\"},{\"name\":\"Placement\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLegend\",\"type\":[\"value__\",\"Left\",\"Top\",\"Right\",\"Bottom\"]},{\"name\":\"ToggleSeriesVisibility\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLegend\",\"type\":\"Boolean\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLegend\",\"type\":\"DataTemplate\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfLegendExt\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Core.SfLegend\",\"type\":\"IEnumerable\"},{\"name\":\"ToggleVisibility\",\"namespace\":\"Syncfusion.Maui.Core.SfLegend\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LegendRectangle\",\"namespace\":\"Syncfusion.Maui.Core.SfLegend\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"ChartLegendShapeView\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ShapeType\",\"namespace\":\"Syncfusion.Maui.Core.SfShapeView\",\"type\":[\"value__\",\"Custom\",\"Rectangle\",\"HorizontalLine\",\"Circle\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"IconBrush\",\"namespace\":\"Syncfusion.Maui.Core.SfShapeView\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Core.SfShapeView\",\"type\":\"Color\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Core.SfShapeView\",\"type\":\"Single\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AreaSeries\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"StrokeDashArray\",\"namespace\":\"Syncfusion.Maui.Charts.AreaSeries\",\"type\":\"DoubleCollection\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.AreaSeries\",\"type\":\"Brush\"},{\"name\":\"ShowMarkers\",\"namespace\":\"Syncfusion.Maui.Charts.AreaSeries\",\"type\":\"Boolean\"},{\"name\":\"MarkerSettings\",\"namespace\":\"Syncfusion.Maui.Charts.AreaSeries\",\"type\":\"ChartMarkerSettings\"},{\"name\":\"YBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"String\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"Double\"},{\"name\":\"XAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"YAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"CartesianDataLabelSettings\"},{\"name\":\"Label\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"ActualXAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ActualYAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ShowTrackballLabel\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"Boolean\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Object\"},{\"name\":\"XBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"String\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Brush\"},{\"name\":\"PaletteBrushes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"IList\\u00601\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"Opacity\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"EnableTooltip\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"TooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataTemplate\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"LegendIcon\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[\"value__\",\"Circle\",\"Rectangle\",\"HorizontalLine\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"IsVisibleOnLegend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"SelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataPointSelectionBehavior\"},{\"name\":\"XRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"YRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ColumnSeries\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.ColumnSeries\",\"type\":\"Brush\"},{\"name\":\"Spacing\",\"namespace\":\"Syncfusion.Maui.Charts.ColumnSeries\",\"type\":\"Double\"},{\"name\":\"Width\",\"namespace\":\"Syncfusion.Maui.Charts.ColumnSeries\",\"type\":\"Double\"},{\"name\":\"CornerRadius\",\"namespace\":\"Syncfusion.Maui.Charts.ColumnSeries\",\"type\":[]},{\"name\":\"YBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"String\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"Double\"},{\"name\":\"XAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"YAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"CartesianDataLabelSettings\"},{\"name\":\"Label\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"ActualXAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ActualYAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ShowTrackballLabel\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"Boolean\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Object\"},{\"name\":\"XBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"String\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Brush\"},{\"name\":\"PaletteBrushes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"IList\\u00601\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"Opacity\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"EnableTooltip\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"TooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataTemplate\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"LegendIcon\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[\"value__\",\"Circle\",\"Rectangle\",\"HorizontalLine\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"IsVisibleOnLegend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"SelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataPointSelectionBehavior\"},{\"name\":\"XRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"YRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DoughnutSeries\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"InnerRadius\",\"namespace\":\"Syncfusion.Maui.Charts.DoughnutSeries\",\"type\":\"Double\"},{\"name\":\"CenterView\",\"namespace\":\"Syncfusion.Maui.Charts.DoughnutSeries\",\"type\":\"View\"},{\"name\":\"CenterHoleSize\",\"namespace\":\"Syncfusion.Maui.Charts.DoughnutSeries\",\"type\":\"Double\"},{\"name\":\"ExplodeIndex\",\"namespace\":\"Syncfusion.Maui.Charts.PieSeries\",\"type\":\"Int32\"},{\"name\":\"ExplodeRadius\",\"namespace\":\"Syncfusion.Maui.Charts.PieSeries\",\"type\":\"Double\"},{\"name\":\"ExplodeOnTouch\",\"namespace\":\"Syncfusion.Maui.Charts.PieSeries\",\"type\":\"Boolean\"},{\"name\":\"YBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"String\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"Brush\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"Double\"},{\"name\":\"Radius\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"Double\"},{\"name\":\"StartAngle\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"Double\"},{\"name\":\"EndAngle\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"Double\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"CircularDataLabelSettings\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Object\"},{\"name\":\"XBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"String\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Brush\"},{\"name\":\"PaletteBrushes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"IList\\u00601\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"Opacity\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"EnableTooltip\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"TooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataTemplate\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"LegendIcon\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[\"value__\",\"Circle\",\"Rectangle\",\"HorizontalLine\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"IsVisibleOnLegend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"SelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataPointSelectionBehavior\"},{\"name\":\"XRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"YRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"FastLineSeries\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"EnableAntiAliasing\",\"namespace\":\"Syncfusion.Maui.Charts.FastLineSeries\",\"type\":\"Boolean\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Syncfusion.Maui.Charts.FastLineSeries\",\"type\":\"DoubleCollection\"},{\"name\":\"YBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"String\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"Double\"},{\"name\":\"XAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"YAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"CartesianDataLabelSettings\"},{\"name\":\"Label\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"ActualXAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ActualYAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ShowTrackballLabel\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"Boolean\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Object\"},{\"name\":\"XBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"String\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Brush\"},{\"name\":\"PaletteBrushes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"IList\\u00601\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"Opacity\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"EnableTooltip\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"TooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataTemplate\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"LegendIcon\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[\"value__\",\"Circle\",\"Rectangle\",\"HorizontalLine\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"IsVisibleOnLegend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"SelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataPointSelectionBehavior\"},{\"name\":\"XRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"YRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LineSeries\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"StrokeDashArray\",\"namespace\":\"Syncfusion.Maui.Charts.LineSeries\",\"type\":\"DoubleCollection\"},{\"name\":\"ShowMarkers\",\"namespace\":\"Syncfusion.Maui.Charts.LineSeries\",\"type\":\"Boolean\"},{\"name\":\"MarkerSettings\",\"namespace\":\"Syncfusion.Maui.Charts.LineSeries\",\"type\":\"ChartMarkerSettings\"},{\"name\":\"YBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"String\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"Double\"},{\"name\":\"XAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"YAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"CartesianDataLabelSettings\"},{\"name\":\"Label\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"ActualXAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ActualYAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ShowTrackballLabel\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"Boolean\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Object\"},{\"name\":\"XBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"String\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Brush\"},{\"name\":\"PaletteBrushes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"IList\\u00601\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"Opacity\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"EnableTooltip\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"TooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataTemplate\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"LegendIcon\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[\"value__\",\"Circle\",\"Rectangle\",\"HorizontalLine\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"IsVisibleOnLegend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"SelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataPointSelectionBehavior\"},{\"name\":\"XRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"YRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PieSeries\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ExplodeIndex\",\"namespace\":\"Syncfusion.Maui.Charts.PieSeries\",\"type\":\"Int32\"},{\"name\":\"ExplodeRadius\",\"namespace\":\"Syncfusion.Maui.Charts.PieSeries\",\"type\":\"Double\"},{\"name\":\"ExplodeOnTouch\",\"namespace\":\"Syncfusion.Maui.Charts.PieSeries\",\"type\":\"Boolean\"},{\"name\":\"YBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"String\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"Brush\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"Double\"},{\"name\":\"Radius\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"Double\"},{\"name\":\"StartAngle\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"Double\"},{\"name\":\"EndAngle\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"Double\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts.CircularSeries\",\"type\":\"CircularDataLabelSettings\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Object\"},{\"name\":\"XBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"String\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Brush\"},{\"name\":\"PaletteBrushes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"IList\\u00601\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"Opacity\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"EnableTooltip\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"TooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataTemplate\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"LegendIcon\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[\"value__\",\"Circle\",\"Rectangle\",\"HorizontalLine\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"IsVisibleOnLegend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"SelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataPointSelectionBehavior\"},{\"name\":\"XRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"YRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ScatterSeries\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PointHeight\",\"namespace\":\"Syncfusion.Maui.Charts.ScatterSeries\",\"type\":\"Double\"},{\"name\":\"PointWidth\",\"namespace\":\"Syncfusion.Maui.Charts.ScatterSeries\",\"type\":\"Double\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.ScatterSeries\",\"type\":\"Brush\"},{\"name\":\"Type\",\"namespace\":\"Syncfusion.Maui.Charts.ScatterSeries\",\"type\":[\"value__\",\"Custom\",\"Rectangle\",\"HorizontalLine\",\"Circle\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"YBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"String\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"Double\"},{\"name\":\"XAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"YAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"CartesianDataLabelSettings\"},{\"name\":\"Label\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"ActualXAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ActualYAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ShowTrackballLabel\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"Boolean\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Object\"},{\"name\":\"XBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"String\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Brush\"},{\"name\":\"PaletteBrushes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"IList\\u00601\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"Opacity\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"EnableTooltip\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"TooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataTemplate\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"LegendIcon\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[\"value__\",\"Circle\",\"Rectangle\",\"HorizontalLine\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"IsVisibleOnLegend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"SelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataPointSelectionBehavior\"},{\"name\":\"XRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"YRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SplineAreaSeries\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Type\",\"namespace\":\"Syncfusion.Maui.Charts.SplineAreaSeries\",\"type\":[\"value__\",\"Natural\",\"Monotonic\",\"Cardinal\",\"Clamped\"]},{\"name\":\"StrokeDashArray\",\"namespace\":\"Syncfusion.Maui.Charts.AreaSeries\",\"type\":\"DoubleCollection\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.AreaSeries\",\"type\":\"Brush\"},{\"name\":\"ShowMarkers\",\"namespace\":\"Syncfusion.Maui.Charts.AreaSeries\",\"type\":\"Boolean\"},{\"name\":\"MarkerSettings\",\"namespace\":\"Syncfusion.Maui.Charts.AreaSeries\",\"type\":\"ChartMarkerSettings\"},{\"name\":\"YBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"String\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"Double\"},{\"name\":\"XAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"YAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"CartesianDataLabelSettings\"},{\"name\":\"Label\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"ActualXAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ActualYAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ShowTrackballLabel\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"Boolean\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Object\"},{\"name\":\"XBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"String\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Brush\"},{\"name\":\"PaletteBrushes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"IList\\u00601\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"Opacity\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"EnableTooltip\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"TooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataTemplate\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"LegendIcon\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[\"value__\",\"Circle\",\"Rectangle\",\"HorizontalLine\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"IsVisibleOnLegend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"SelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataPointSelectionBehavior\"},{\"name\":\"XRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"YRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SplineSeries\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"StrokeDashArray\",\"namespace\":\"Syncfusion.Maui.Charts.SplineSeries\",\"type\":\"DoubleCollection\"},{\"name\":\"Type\",\"namespace\":\"Syncfusion.Maui.Charts.SplineSeries\",\"type\":[\"value__\",\"Natural\",\"Monotonic\",\"Cardinal\",\"Clamped\"]},{\"name\":\"ShowMarkers\",\"namespace\":\"Syncfusion.Maui.Charts.SplineSeries\",\"type\":\"Boolean\"},{\"name\":\"MarkerSettings\",\"namespace\":\"Syncfusion.Maui.Charts.SplineSeries\",\"type\":\"ChartMarkerSettings\"},{\"name\":\"YBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"String\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.XYDataSeries\",\"type\":\"Double\"},{\"name\":\"XAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"YAxisName\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"CartesianDataLabelSettings\"},{\"name\":\"Label\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"String\"},{\"name\":\"ActualXAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ActualYAxis\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"ChartAxis\"},{\"name\":\"ShowTrackballLabel\",\"namespace\":\"Syncfusion.Maui.Charts.CartesianSeries\",\"type\":\"Boolean\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Object\"},{\"name\":\"XBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"String\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Brush\"},{\"name\":\"PaletteBrushes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"IList\\u00601\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"Opacity\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"EnableTooltip\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"TooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataTemplate\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"LegendIcon\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[\"value__\",\"Circle\",\"Rectangle\",\"HorizontalLine\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"IsVisibleOnLegend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"Boolean\"},{\"name\":\"SelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":\"DataPointSelectionBehavior\"},{\"name\":\"XRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"YRange\",\"namespace\":\"Syncfusion.Maui.Charts.ChartSeries\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfCartesianChart\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Series\",\"namespace\":\"Syncfusion.Maui.Charts.SfCartesianChart\",\"type\":\"ChartSeriesCollection\"},{\"name\":\"XAxes\",\"namespace\":\"Syncfusion.Maui.Charts.SfCartesianChart\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"YAxes\",\"namespace\":\"Syncfusion.Maui.Charts.SfCartesianChart\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"EnableSideBySideSeriesPlacement\",\"namespace\":\"Syncfusion.Maui.Charts.SfCartesianChart\",\"type\":\"Boolean\"},{\"name\":\"IsTransposed\",\"namespace\":\"Syncfusion.Maui.Charts.SfCartesianChart\",\"type\":\"Boolean\"},{\"name\":\"PaletteBrushes\",\"namespace\":\"Syncfusion.Maui.Charts.SfCartesianChart\",\"type\":\"IList\\u00601\"},{\"name\":\"ZoomPanBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.SfCartesianChart\",\"type\":\"ChartZoomPanBehavior\"},{\"name\":\"SelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.SfCartesianChart\",\"type\":\"SeriesSelectionBehavior\"},{\"name\":\"TrackballBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.SfCartesianChart\",\"type\":\"ChartTrackballBehavior\"},{\"name\":\"Title\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"Object\"},{\"name\":\"Legend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"ChartLegend\"},{\"name\":\"TooltipBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"ChartTooltipBehavior\"},{\"name\":\"PlotAreaBackgroundView\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"View\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfCircularChart\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Series\",\"namespace\":\"Syncfusion.Maui.Charts.SfCircularChart\",\"type\":\"ChartSeriesCollection\"},{\"name\":\"Title\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"Object\"},{\"name\":\"Legend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"ChartLegend\"},{\"name\":\"TooltipBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"ChartTooltipBehavior\"},{\"name\":\"PlotAreaBackgroundView\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"View\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfFunnelChart\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":\"Object\"},{\"name\":\"XBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":\"String\"},{\"name\":\"YBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":\"String\"},{\"name\":\"PaletteBrushes\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":\"IList\\u00601\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":\"Brush\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":\"Double\"},{\"name\":\"LegendIcon\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":[\"value__\",\"Circle\",\"Rectangle\",\"HorizontalLine\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"TooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":\"DataTemplate\"},{\"name\":\"EnableTooltip\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":\"Boolean\"},{\"name\":\"SelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":\"DataPointSelectionBehavior\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":\"Boolean\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":\"FunnelDataLabelSettings\"},{\"name\":\"GapRatio\",\"namespace\":\"Syncfusion.Maui.Charts.SfFunnelChart\",\"type\":\"Double\"},{\"name\":\"Title\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"Object\"},{\"name\":\"Legend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"ChartLegend\"},{\"name\":\"TooltipBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"ChartTooltipBehavior\"},{\"name\":\"PlotAreaBackgroundView\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"View\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfPyramidChart\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":\"Object\"},{\"name\":\"TooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":\"DataTemplate\"},{\"name\":\"EnableTooltip\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":\"Boolean\"},{\"name\":\"XBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":\"String\"},{\"name\":\"YBindingPath\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":\"String\"},{\"name\":\"PaletteBrushes\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":\"IList\\u00601\"},{\"name\":\"SelectionBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":\"DataPointSelectionBehavior\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":\"Boolean\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":\"PyramidDataLabelSettings\"},{\"name\":\"LegendIcon\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":[\"value__\",\"Circle\",\"Rectangle\",\"HorizontalLine\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":\"Brush\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":\"Double\"},{\"name\":\"GapRatio\",\"namespace\":\"Syncfusion.Maui.Charts.SfPyramidChart\",\"type\":\"Double\"},{\"name\":\"Title\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"Object\"},{\"name\":\"Legend\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"ChartLegend\"},{\"name\":\"TooltipBehavior\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"ChartTooltipBehavior\"},{\"name\":\"PlotAreaBackgroundView\",\"namespace\":\"Syncfusion.Maui.Charts.ChartBase\",\"type\":\"View\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartAxisTitle\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Text\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxisTitle\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Brush\"},{\"name\":\"Margin\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":[\"Zero\"]},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Double\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Brush\"},{\"name\":\"LabelFormat\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Double\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"CornerRadius\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartAxisLabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LabelAlignment\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxisLabelStyle\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Brush\"},{\"name\":\"Margin\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":[\"Zero\"]},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Double\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Brush\"},{\"name\":\"LabelFormat\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Double\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"CornerRadius\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartAxisRangeStyle\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Start\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxisRangeStyle\",\"type\":\"Object\"},{\"name\":\"End\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxisRangeStyle\",\"type\":\"Object\"},{\"name\":\"MajorGridLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxisRangeStyle\",\"type\":\"ChartLineStyle\"},{\"name\":\"MinorGridLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxisRangeStyle\",\"type\":\"ChartLineStyle\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxisRangeStyle\",\"type\":\"ChartAxisLabelStyle\"},{\"name\":\"MinorTickStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxisRangeStyle\",\"type\":\"ChartAxisTickStyle\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxisRangeStyle\",\"type\":\"ChartAxisTickStyle\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartAxisTickStyle\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TickSize\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxisTickStyle\",\"type\":\"Double\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxisTickStyle\",\"type\":\"Brush\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.ChartAxisTickStyle\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartDataLabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LabelPadding\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelStyle\",\"type\":\"Double\"},{\"name\":\"OffsetX\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelStyle\",\"type\":\"Double\"},{\"name\":\"OffsetY\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelStyle\",\"type\":\"Double\"},{\"name\":\"Angle\",\"namespace\":\"Syncfusion.Maui.Charts.ChartDataLabelStyle\",\"type\":\"Double\"},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Brush\"},{\"name\":\"Margin\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":[\"Zero\"]},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Double\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Brush\"},{\"name\":\"LabelFormat\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Double\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"CornerRadius\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartLabelStyle\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Brush\"},{\"name\":\"Margin\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":[\"Zero\"]},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Double\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Brush\"},{\"name\":\"LabelFormat\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"Double\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"CornerRadius\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLabelStyle\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartLineStyle\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLineStyle\",\"type\":\"Brush\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLineStyle\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Syncfusion.Maui.Charts.ChartLineStyle\",\"type\":\"DoubleCollection\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartMarkerSettings\",\"namespace\":\"Syncfusion.Maui.Charts\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Type\",\"namespace\":\"Syncfusion.Maui.Charts.ChartMarkerSettings\",\"type\":[\"value__\",\"Custom\",\"Rectangle\",\"HorizontalLine\",\"Circle\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Charts.ChartMarkerSettings\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Charts.ChartMarkerSettings\",\"type\":\"Brush\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Charts.ChartMarkerSettings\",\"type\":\"Double\"},{\"name\":\"Width\",\"namespace\":\"Syncfusion.Maui.Charts.ChartMarkerSettings\",\"type\":\"Double\"},{\"name\":\"Height\",\"namespace\":\"Syncfusion.Maui.Charts.ChartMarkerSettings\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ChartTrackballView\",\"namespace\":\"Syncfusion.Maui.Charts.Chart.Layouts\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Behavior\",\"namespace\":\"Syncfusion.Maui.Charts.Chart.Layouts.ChartTrackballView\",\"type\":\"ChartTrackballBehavior\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.Core.json",
    "content": "{\"xmlns\":\"assembly=Syncfusion.Maui.Core\",\"types\":[{\"name\":\"SfDrawableView\",\"namespace\":\"Syncfusion.Maui.Graphics.Internals\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"AvatarGroupView\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ColumnDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"ColumnDefinitionCollection\"},{\"name\":\"RowDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"RowDefinitionCollection\"},{\"name\":\"RowSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Double\"},{\"name\":\"ColumnSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Column\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"ColumnSpan\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"Row\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"RowSpan\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true}]},{\"name\":\"FontIconLabel\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"FormattedText\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"FormattedString\"},{\"name\":\"HorizontalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"LineBreakMode\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"NoWrap\",\"WordWrap\",\"CharacterWrap\",\"HeadTruncation\",\"TailTruncation\",\"MiddleTruncation\"]},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Double\"},{\"name\":\"VerticalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"TextDecorations\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"None\",\"Underline\",\"Strikethrough\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Boolean\"},{\"name\":\"LineHeight\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Double\"},{\"name\":\"MaxLines\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"Zero\"]},{\"name\":\"TextType\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"Text\",\"Html\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfAvatarView\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"Double\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"Brush\"},{\"name\":\"AvatarCharacter\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":[\"value__\",\"Avatar1\",\"Avatar2\",\"Avatar3\",\"Avatar4\",\"Avatar5\",\"Avatar6\",\"Avatar7\",\"Avatar8\",\"Avatar9\",\"Avatar10\",\"Avatar11\",\"Avatar12\",\"Avatar13\",\"Avatar14\",\"Avatar15\",\"Avatar16\",\"Avatar17\",\"Avatar18\",\"Avatar19\",\"Avatar20\",\"Avatar21\",\"Avatar22\",\"Avatar23\",\"Avatar24\",\"Avatar25\",\"Avatar26\",\"Avatar27\",\"Avatar28\",\"Avatar29\",\"Avatar30\"]},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"String\"},{\"name\":\"InitialsColor\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"Color\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"Double\"},{\"name\":\"ImageSource\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"ImageSource\"},{\"name\":\"ContentType\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":[\"value__\",\"AvatarCharacter\",\"Initials\",\"Custom\",\"Group\",\"Default\"]},{\"name\":\"AvatarName\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"String\"},{\"name\":\"HeightRequest\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"Double\"},{\"name\":\"InitialsType\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":[\"value__\",\"SingleCharacter\",\"DoubleCharacter\"]},{\"name\":\"BackgroundColor\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"Brush\"},{\"name\":\"GroupSource\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"IEnumerable\"},{\"name\":\"BackgroundColorMemberPath\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"String\"},{\"name\":\"ImageSourceMemberPath\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"String\"},{\"name\":\"CornerRadius\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":[]},{\"name\":\"AvatarColorMode\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":[\"value__\",\"Default\",\"LightBackground\",\"DarkBackground\"]},{\"name\":\"InitialsColorMemberPath\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"String\"},{\"name\":\"WidthRequest\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"Double\"},{\"name\":\"InitialsMemberPath\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":\"String\"},{\"name\":\"AvatarShape\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":[\"value__\",\"Square\",\"Circle\",\"Custom\"]},{\"name\":\"AvatarSize\",\"namespace\":\"Syncfusion.Maui.Core.SfAvatarView\",\"type\":[\"value__\",\"ExtraLarge\",\"Large\",\"Medium\",\"Small\",\"ExtraSmall\"]},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BadgeSettings\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":\"Double\"},{\"name\":\"CornerRadius\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":[]},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":\"Color\"},{\"name\":\"Position\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":[\"value__\",\"Left\",\"Right\",\"Top\",\"Bottom\",\"BottomLeft\",\"BottomRight\",\"TopLeft\",\"TopRight\"]},{\"name\":\"Offset\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":[\"Zero\"]},{\"name\":\"Animation\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":[\"value__\",\"None\",\"Scale\"]},{\"name\":\"Type\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":[\"value__\",\"Dark\",\"Error\",\"Info\",\"Light\",\"None\",\"Primary\",\"Secondary\",\"Success\",\"Warning\"]},{\"name\":\"TextPadding\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":[\"Zero\"]},{\"name\":\"AutoHide\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":\"Boolean\"},{\"name\":\"BadgeAlignment\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":\"Double\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":\"Color\"},{\"name\":\"Icon\",\"namespace\":\"Syncfusion.Maui.Core.BadgeSettings\",\"type\":[\"value__\",\"Add\",\"Available\",\"Away\",\"Busy\",\"Delete\",\"Dot\",\"None\",\"Prohibit1\",\"Prohibit2\"]},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfBadgeView\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ScreenReaderText\",\"namespace\":\"Syncfusion.Maui.Core.SfBadgeView\",\"type\":\"String\"},{\"name\":\"BadgeText\",\"namespace\":\"Syncfusion.Maui.Core.SfBadgeView\",\"type\":\"String\"},{\"name\":\"BadgeSettings\",\"namespace\":\"Syncfusion.Maui.Core.SfBadgeView\",\"type\":\"BadgeSettings\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfBusyIndicator\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsRunning\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":\"Boolean\"},{\"name\":\"IndicatorColor\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":\"Color\"},{\"name\":\"OverlayFill\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":\"Brush\"},{\"name\":\"AnimationType\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":[\"value__\",\"CircularMaterial\",\"LinearMaterial\",\"Cupertino\",\"SingleCircle\",\"DoubleCircle\"]},{\"name\":\"Title\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":\"String\"},{\"name\":\"DurationFactor\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":\"Double\"},{\"name\":\"TitlePlacement\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":[\"value__\",\"Top\",\"Bottom\",\"None\"]},{\"name\":\"TitleSpacing\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":\"Double\"},{\"name\":\"SizeFactor\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":\"Double\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":\"Double\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Core.SfBusyIndicator\",\"type\":\"Color\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfDropdownView\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfInputLabel\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"FormattedText\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"FormattedString\"},{\"name\":\"HorizontalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"LineBreakMode\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"NoWrap\",\"WordWrap\",\"CharacterWrap\",\"HeadTruncation\",\"TailTruncation\",\"MiddleTruncation\"]},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Double\"},{\"name\":\"VerticalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"TextDecorations\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"None\",\"Underline\",\"Strikethrough\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Boolean\"},{\"name\":\"LineHeight\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Double\"},{\"name\":\"MaxLines\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"Zero\"]},{\"name\":\"TextType\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"Text\",\"Html\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfInputView\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Completed\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextChanged\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HorizontalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"VerticalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"IsPassword\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Boolean\"},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Boolean\"},{\"name\":\"IsTextPredictionEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Boolean\"},{\"name\":\"ReturnType\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":[\"value__\",\"Default\",\"Done\",\"Go\",\"Next\",\"Search\",\"Send\"]},{\"name\":\"CursorPosition\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Int32\"},{\"name\":\"SelectionLength\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Int32\"},{\"name\":\"ReturnCommand\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"ICommand\"},{\"name\":\"ReturnCommandParameter\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":\"Object\"},{\"name\":\"ClearButtonVisibility\",\"namespace\":\"Microsoft.Maui.Controls.Entry\",\"type\":[\"value__\",\"Never\",\"WhileEditing\"]},{\"name\":\"MaxLength\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Int32\"},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"String\"},{\"name\":\"Keyboard\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Keyboard\"},{\"name\":\"IsSpellCheckEnabled\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Boolean\"},{\"name\":\"Placeholder\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Color\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":\"Double\"},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.InputView\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfEffectsView\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"AnimationCompleted\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SelectionChanged\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TouchDown\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TouchUp\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LongPressed\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"RippleAnimationDuration\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Double\"},{\"name\":\"ScaleAnimationDuration\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Double\"},{\"name\":\"RotationAnimationDuration\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Double\"},{\"name\":\"InitialRippleFactor\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Double\"},{\"name\":\"ScaleFactor\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Double\"},{\"name\":\"HighlightBackground\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Brush\"},{\"name\":\"RippleBackground\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Brush\"},{\"name\":\"SelectionBackground\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Brush\"},{\"name\":\"Angle\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Int32\"},{\"name\":\"FadeOutRipple\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Boolean\"},{\"name\":\"AutoResetEffects\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":[\"value__\",\"None\",\"Highlight\",\"Ripple\",\"Scale\"]},{\"name\":\"TouchDownEffects\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":[\"value__\",\"None\",\"Highlight\",\"Ripple\",\"Scale\",\"Selection\",\"Rotation\"]},{\"name\":\"TouchUpEffects\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":[\"value__\",\"None\",\"Highlight\",\"Ripple\",\"Scale\",\"Selection\",\"Rotation\"]},{\"name\":\"LongPressEffects\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":[\"value__\",\"None\",\"Highlight\",\"Ripple\",\"Scale\",\"Selection\",\"Rotation\"]},{\"name\":\"IsSelected\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Boolean\"},{\"name\":\"ShouldIgnoreTouches\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Boolean\"},{\"name\":\"LongPressedCommand\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"ICommand\"},{\"name\":\"TouchDownCommand\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"ICommand\"},{\"name\":\"TouchUpCommand\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"ICommand\"},{\"name\":\"TouchDownCommandParameter\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Object\"},{\"name\":\"LongPressedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Object\"},{\"name\":\"TouchUpCommandParameter\",\"namespace\":\"Syncfusion.Maui.Core.SfEffectsView\",\"type\":\"Object\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CustomScrollLayout\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LayoutAreaOverride\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"Zero\"]},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"View\"},{\"name\":\"ContentSize\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"Zero\"]},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\",\"Both\",\"Neither\"]},{\"name\":\"ScrollX\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"Double\"},{\"name\":\"ScrollY\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"Double\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfIconButton\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ColumnDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"ColumnDefinitionCollection\"},{\"name\":\"RowDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"RowDefinitionCollection\"},{\"name\":\"RowSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Double\"},{\"name\":\"ColumnSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Column\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"ColumnSpan\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"Row\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"RowSpan\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true}]},{\"name\":\"SfIconView\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TextStyle\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Core.TextStyle\",\"type\":\"Color\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Core.TextStyle\",\"type\":\"Double\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Core.TextStyle\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Core.TextStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfLegend\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Core.SfLegend\",\"type\":\"IEnumerable\"},{\"name\":\"ToggleVisibility\",\"namespace\":\"Syncfusion.Maui.Core.SfLegend\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LegendRectangle\",\"namespace\":\"Syncfusion.Maui.Core.SfLegend\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"LegendItemView\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfShapeView\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ShapeType\",\"namespace\":\"Syncfusion.Maui.Core.SfShapeView\",\"type\":[\"value__\",\"Custom\",\"Rectangle\",\"HorizontalLine\",\"Circle\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"IconBrush\",\"namespace\":\"Syncfusion.Maui.Core.SfShapeView\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Core.SfShapeView\",\"type\":\"Color\"},{\"name\":\"StrokeWidth\",\"namespace\":\"Syncfusion.Maui.Core.SfShapeView\",\"type\":\"Single\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Core.LabelStyle\",\"type\":\"Double\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Core.LabelStyle\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Core.LabelStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Core.LabelStyle\",\"type\":\"Color\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfTextInputLayout\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ShowHint\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Boolean\"},{\"name\":\"ShowHelperText\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Boolean\"},{\"name\":\"HasError\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Boolean\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Color\"},{\"name\":\"ContainerBackground\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Brush\"},{\"name\":\"OutlineCornerRadius\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Double\"},{\"name\":\"FocusedStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Double\"},{\"name\":\"UnfocusedStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Double\"},{\"name\":\"CharMaxLength\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Int32\"},{\"name\":\"LeadingView\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"View\"},{\"name\":\"TrailingView\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"View\"},{\"name\":\"ShowLeadingView\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Boolean\"},{\"name\":\"ShowTrailingView\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Boolean\"},{\"name\":\"LeadingViewPosition\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":[\"value__\",\"Inside\",\"Outside\"]},{\"name\":\"TrailingViewPosition\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":[\"value__\",\"Inside\",\"Outside\"]},{\"name\":\"InputViewPadding\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":[\"Zero\"]},{\"name\":\"IsHintAlwaysFloated\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Boolean\"},{\"name\":\"Hint\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"String\"},{\"name\":\"HelperText\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"String\"},{\"name\":\"ErrorText\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"String\"},{\"name\":\"ReserveSpaceForAssistiveLabels\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Boolean\"},{\"name\":\"ContainerType\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":[\"value__\",\"Outlined\",\"Filled\",\"None\"]},{\"name\":\"EnablePasswordVisibilityToggle\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Boolean\"},{\"name\":\"CurrentActiveColor\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Color\"},{\"name\":\"IsEnabled\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Boolean\"},{\"name\":\"EnableFloating\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Boolean\"},{\"name\":\"EnableHintAnimation\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"Boolean\"},{\"name\":\"HintLabelStyle\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"LabelStyle\"},{\"name\":\"HelperLabelStyle\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"LabelStyle\"},{\"name\":\"ErrorLabelStyle\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"LabelStyle\"},{\"name\":\"Text\",\"namespace\":\"Syncfusion.Maui.Core.SfTextInputLayout\",\"type\":\"String\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfTooltip\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"TooltipClosed\",\"namespace\":\"Syncfusion.Maui.Core.SfTooltip\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfTooltip\",\"type\":\"View\"},{\"name\":\"Position\",\"namespace\":\"Syncfusion.Maui.Core.SfTooltip\",\"type\":[\"value__\",\"Auto\",\"Left\",\"Top\",\"Right\",\"Bottom\"]},{\"name\":\"Duration\",\"namespace\":\"Syncfusion.Maui.Core.SfTooltip\",\"type\":\"Int32\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Core.SfTooltip\",\"type\":\"Brush\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TooltipDrawableView\",\"namespace\":\"Syncfusion.Maui.Core\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfBorder\",\"namespace\":\"Syncfusion.Maui.Core.Helper\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"View\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":[\"Zero\"]},{\"name\":\"StrokeShape\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"IShape\"},{\"name\":\"Stroke\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"DoubleCollection\"},{\"name\":\"StrokeDashOffset\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":[\"value__\",\"Flat\",\"Square\",\"Round\"]},{\"name\":\"StrokeLineJoin\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":[\"value__\",\"Miter\",\"Bevel\",\"Round\"]},{\"name\":\"StrokeMiterLimit\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Double\"},{\"name\":\"StrokeDashPattern\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Single[]\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridScrollViewExt\",\"namespace\":\"Syncfusion.Maui.Core.Internals\",\"doc\":null,\"attributes\":[{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LayoutAreaOverride\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"Zero\"]},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"View\"},{\"name\":\"ContentSize\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"Zero\"]},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\",\"Both\",\"Neither\"]},{\"name\":\"ScrollX\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"Double\"},{\"name\":\"ScrollY\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"Double\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ContentPlaceHolder\",\"namespace\":\"Syncfusion.Maui.Core.Internals\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"SfInteractiveScrollView\",\"namespace\":\"Syncfusion.Maui.Core.Internals\",\"doc\":null,\"attributes\":[{\"name\":\"ZoomChanged\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ZoomStarted\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ZoomEnded\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ScrollChanged\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ZoomLocation\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":[\"value__\",\"Default\",\"Centered\"]},{\"name\":\"ScrollYProportion\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"ScrollXProportion\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"ViewportHeight\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"ViewportWidth\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"MinZoomFactor\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"MaxZoomFactor\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"DoubleTapSettings\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"DoubleTapSettings\"},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"Orientation\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\",\"Both\",\"Neither\"]},{\"name\":\"ExtentSize\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":[]},{\"name\":\"ScrollY\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"ScrollX\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"ZoomFactor\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"View\"},{\"name\":\"AllowZoom\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LegendLayout\",\"namespace\":\"Syncfusion.Maui.Core.Internals\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Legend\",\"namespace\":\"Syncfusion.Maui.Core.Internals.LegendLayout\",\"type\":\"ILegend\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"ParametersOfMultiConverter\",\"namespace\":\"Syncfusion.Maui.Core.Converters\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TypeOfConverter\",\"namespace\":\"Syncfusion.Maui.Core.Converters.ParametersOfMultiConverter\",\"type\":\"Type\"},{\"name\":\"ValueOfConverter\",\"namespace\":\"Syncfusion.Maui.Core.Converters.ParametersOfMultiConverter\",\"type\":\"Object\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.DataForm.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"DataFormGroupItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ColumnCount\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormGroupItem\",\"type\":\"Int32\"},{\"name\":\"Items\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormGroupItem\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"IsExpanded\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormGroupItem\",\"type\":\"Boolean\"},{\"name\":\"AllowExpandCollapse\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormGroupItem\",\"type\":\"Boolean\"},{\"name\":\"HeaderTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormGroupItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"HeaderBackground\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormGroupItem\",\"type\":\"Brush\"},{\"name\":\"ItemsPadding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormGroupItem\",\"type\":[\"Zero\"]},{\"name\":\"Name\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormGroupItem\",\"type\":\"String\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormTextItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Keyboard\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormTextEditorItem\",\"type\":\"Keyboard\"},{\"name\":\"MaxLength\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormTextEditorItem\",\"type\":\"Int32\"},{\"name\":\"GroupName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"FieldName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"LabelText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Color\"},{\"name\":\"ShowLabel\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":[]},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Brush\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"ItemsOrderInRow\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Int32\"},{\"name\":\"LeadingLabelIcon\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"ImageSource\"},{\"name\":\"IsValid\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"PropertyInfo\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"PropertyInfo\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormPasswordItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Keyboard\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormTextEditorItem\",\"type\":\"Keyboard\"},{\"name\":\"MaxLength\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormTextEditorItem\",\"type\":\"Int32\"},{\"name\":\"GroupName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"FieldName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"LabelText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Color\"},{\"name\":\"ShowLabel\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":[]},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Brush\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"ItemsOrderInRow\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Int32\"},{\"name\":\"LeadingLabelIcon\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"ImageSource\"},{\"name\":\"IsValid\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"PropertyInfo\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"PropertyInfo\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormMultilineItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Keyboard\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormTextEditorItem\",\"type\":\"Keyboard\"},{\"name\":\"MaxLength\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormTextEditorItem\",\"type\":\"Int32\"},{\"name\":\"GroupName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"FieldName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"LabelText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Color\"},{\"name\":\"ShowLabel\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":[]},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Brush\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"ItemsOrderInRow\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Int32\"},{\"name\":\"LeadingLabelIcon\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"ImageSource\"},{\"name\":\"IsValid\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"PropertyInfo\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"PropertyInfo\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormCustomItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"EditorView\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormCustomItem\",\"type\":\"View\"},{\"name\":\"EditorValue\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormCustomItem\",\"type\":\"Object\"},{\"name\":\"GroupName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"FieldName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"LabelText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Color\"},{\"name\":\"ShowLabel\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":[]},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Brush\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"ItemsOrderInRow\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Int32\"},{\"name\":\"LeadingLabelIcon\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"ImageSource\"},{\"name\":\"IsValid\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"PropertyInfo\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"PropertyInfo\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormCheckBoxItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Color\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormCheckBoxItem\",\"type\":\"Color\"},{\"name\":\"GroupName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"FieldName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"LabelText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Color\"},{\"name\":\"ShowLabel\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":[]},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Brush\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"ItemsOrderInRow\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Int32\"},{\"name\":\"LeadingLabelIcon\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"ImageSource\"},{\"name\":\"IsValid\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"PropertyInfo\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"PropertyInfo\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormSwitchItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"OnColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormSwitchItem\",\"type\":\"Color\"},{\"name\":\"ThumbColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormSwitchItem\",\"type\":\"Color\"},{\"name\":\"GroupName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"FieldName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"LabelText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Color\"},{\"name\":\"ShowLabel\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":[]},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Brush\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"ItemsOrderInRow\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Int32\"},{\"name\":\"LeadingLabelIcon\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"ImageSource\"},{\"name\":\"IsValid\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"PropertyInfo\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"PropertyInfo\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormDateItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Format\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormDateItem\",\"type\":\"String\"},{\"name\":\"MaximumDisplayDate\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormDateItem\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"MinimumDisplayDate\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormDateItem\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"GroupName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"FieldName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"LabelText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Color\"},{\"name\":\"ShowLabel\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":[]},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Brush\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"ItemsOrderInRow\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Int32\"},{\"name\":\"LeadingLabelIcon\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"ImageSource\"},{\"name\":\"IsValid\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"PropertyInfo\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"PropertyInfo\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormTimeItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Format\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormTimeItem\",\"type\":\"String\"},{\"name\":\"GroupName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"FieldName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"LabelText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Color\"},{\"name\":\"ShowLabel\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":[]},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Brush\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"ItemsOrderInRow\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Int32\"},{\"name\":\"LeadingLabelIcon\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"ImageSource\"},{\"name\":\"IsValid\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"PropertyInfo\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"PropertyInfo\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormRadioGroupItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormListItem\",\"type\":\"Object\"},{\"name\":\"DisplayMemberPath\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormListItem\",\"type\":\"String\"},{\"name\":\"SelectedValuePath\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormListItem\",\"type\":\"String\"},{\"name\":\"GroupName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"FieldName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"LabelText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Color\"},{\"name\":\"ShowLabel\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":[]},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Brush\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"ItemsOrderInRow\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Int32\"},{\"name\":\"LeadingLabelIcon\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"ImageSource\"},{\"name\":\"IsValid\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"PropertyInfo\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"PropertyInfo\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormPickerItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormListItem\",\"type\":\"Object\"},{\"name\":\"DisplayMemberPath\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormListItem\",\"type\":\"String\"},{\"name\":\"SelectedValuePath\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormListItem\",\"type\":\"String\"},{\"name\":\"GroupName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"FieldName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"LabelText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Color\"},{\"name\":\"ShowLabel\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":[]},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Brush\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"ItemsOrderInRow\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Int32\"},{\"name\":\"LeadingLabelIcon\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"ImageSource\"},{\"name\":\"IsValid\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"PropertyInfo\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"PropertyInfo\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormComboBoxItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEditable\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormComboBoxItem\",\"type\":\"Boolean\"},{\"name\":\"TextSearchMode\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormComboBoxItem\",\"type\":[\"value__\",\"StartsWith\",\"Contains\"]},{\"name\":\"MaxDropDownHeight\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormComboBoxItem\",\"type\":\"Double\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormListItem\",\"type\":\"Object\"},{\"name\":\"DisplayMemberPath\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormListItem\",\"type\":\"String\"},{\"name\":\"SelectedValuePath\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormListItem\",\"type\":\"String\"},{\"name\":\"GroupName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"FieldName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"LabelText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Color\"},{\"name\":\"ShowLabel\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":[]},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Brush\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"ItemsOrderInRow\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Int32\"},{\"name\":\"LeadingLabelIcon\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"ImageSource\"},{\"name\":\"IsValid\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"PropertyInfo\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"PropertyInfo\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormAutoCompleteItem\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextSearchMode\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormAutoCompleteItem\",\"type\":[\"value__\",\"StartsWith\",\"Contains\"]},{\"name\":\"MaxDropDownHeight\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormAutoCompleteItem\",\"type\":\"Double\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormListItem\",\"type\":\"Object\"},{\"name\":\"DisplayMemberPath\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormListItem\",\"type\":\"String\"},{\"name\":\"SelectedValuePath\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormListItem\",\"type\":\"String\"},{\"name\":\"GroupName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"FieldName\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"LabelText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderText\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Color\"},{\"name\":\"ShowLabel\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":[]},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormTextStyle\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Brush\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"ItemsOrderInRow\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Int32\"},{\"name\":\"LeadingLabelIcon\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"ImageSource\"},{\"name\":\"IsValid\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"Boolean\"},{\"name\":\"PropertyInfo\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormItem\",\"type\":\"PropertyInfo\"},{\"name\":\"RowSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"ColumnSpan\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"IsVisible\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Boolean\"},{\"name\":\"RowOrder\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormViewItem\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormTextStyle\",\"type\":\"Color\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormTextStyle\",\"type\":\"Double\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormTextStyle\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormTextStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormDefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LabelPosition\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormDefaultLayoutSettings\",\"type\":[]},{\"name\":\"LabelWidth\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormDefaultLayoutSettings\",\"type\":[]},{\"name\":\"EditorWidth\",\"namespace\":\"Syncfusion.Maui.DataForm.DataFormDefaultLayoutSettings\",\"type\":[]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfDataForm\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"GenerateDataFormItem\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValidateProperty\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValidateForm\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DataObject\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"Object\"},{\"name\":\"Items\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"ColumnCount\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"Int32\"},{\"name\":\"AutoGenerateItems\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"Boolean\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"Boolean\"},{\"name\":\"EditorTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"DataFormTextStyle\"},{\"name\":\"LabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ErrorLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"DataFormTextStyle\"},{\"name\":\"ValidMessageLabelTextStyle\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"DataFormTextStyle\"},{\"name\":\"DefaultLayoutSettings\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"DataFormDefaultLayoutSettings\"},{\"name\":\"CommitMode\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":[\"value__\",\"LostFocus\",\"PropertyChanged\",\"Manual\"]},{\"name\":\"ValidationMode\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":[\"value__\",\"LostFocus\",\"PropertyChanged\",\"Manual\"]},{\"name\":\"ItemsSourceProvider\",\"namespace\":\"Syncfusion.Maui.DataForm.SfDataForm\",\"type\":\"IDataFormSourceProvider\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormItemView\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataFormLayout\",\"namespace\":\"Syncfusion.Maui.DataForm\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.DataGrid.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"DataGridCell\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"Brush\"},{\"name\":\"TextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":[]},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"Double\"},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"Color\"},{\"name\":\"CellValue\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"Object\"},{\"name\":\"RowIndex\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"Int32\"},{\"name\":\"ColumnIndex\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"Int32\"},{\"name\":\"DataColumn\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"DataColumnBase\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridHeaderCell\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DataGridColumn\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridHeaderCell\",\"type\":\"DataGridColumn\"},{\"name\":\"SortDirection\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridHeaderCell\",\"type\":[]},{\"name\":\"SortColumn\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridHeaderCell\",\"type\":\"String\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"Brush\"},{\"name\":\"TextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":[]},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"Double\"},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"Color\"},{\"name\":\"CellValue\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"Object\"},{\"name\":\"RowIndex\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"Int32\"},{\"name\":\"ColumnIndex\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"Int32\"},{\"name\":\"DataColumn\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridCell\",\"type\":\"DataColumnBase\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridSortNumberView\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Text\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridSortNumberView\",\"type\":\"String\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridRow\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ClipRect\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridRow\",\"type\":[\"Zero\"]},{\"name\":\"Visibility\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridRow\",\"type\":\"Boolean\"},{\"name\":\"DataGrid\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridRow\",\"type\":\"SfDataGrid\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridRow\",\"type\":\"Brush\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridHeaderRow\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ClipRect\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridRow\",\"type\":[\"Zero\"]},{\"name\":\"Visibility\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridRow\",\"type\":\"Boolean\"},{\"name\":\"DataGrid\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridRow\",\"type\":\"SfDataGrid\"},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridRow\",\"type\":\"Brush\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfDataGrid\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"AutoGeneratingColumn\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SortColumnsChanging\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"QueryRowHeight\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SortColumnsChanged\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"CellTapped\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"CellDoubleTapped\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"CellLongPress\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"CurrentCellActivating\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"CurrentCellActivated\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SelectionChanging\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SelectionChanged\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"CellValueChanged\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"RowHeight\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"Double\"},{\"name\":\"HeaderRowHeight\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"Double\"},{\"name\":\"DefaultColumnWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"Double\"},{\"name\":\"ColumnSizer\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"DataGridColumnSizer\"},{\"name\":\"ColumnWidthMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":[\"value__\",\"None\",\"Fill\",\"FitByHeader\",\"Auto\",\"LastColumnFill\",\"FitByCell\"]},{\"name\":\"AutoGenerateColumnsModeForCustomType\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":[\"value__\",\"Parent\",\"Child\",\"Both\",\"None\"]},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"Object\"},{\"name\":\"AutoGenerateColumnsMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":[\"value__\",\"None\",\"Reset\",\"ResetAll\",\"RetainOld\",\"SmartReset\"]},{\"name\":\"View\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"ICollectionViewAdv\"},{\"name\":\"CellRenderers\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"GridCellRendererCollection\"},{\"name\":\"Columns\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"ColumnCollection\"},{\"name\":\"SortColumnDescriptions\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"SortColumnDescriptionCollection\"},{\"name\":\"DefaultStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"DataGridStyle\"},{\"name\":\"HeaderGridLinesVisibility\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":[\"value__\",\"Both\",\"Horizontal\",\"Vertical\",\"None\"]},{\"name\":\"GridLinesVisibility\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":[\"value__\",\"Both\",\"Horizontal\",\"Vertical\",\"None\"]},{\"name\":\"SortingMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":[\"value__\",\"Single\",\"Multiple\",\"None\"]},{\"name\":\"AllowTriStateSorting\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"Boolean\"},{\"name\":\"CanMaintainScrollPosition\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"Boolean\"},{\"name\":\"ShowSortNumbers\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"Boolean\"},{\"name\":\"SortComparers\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"SortComparers\"},{\"name\":\"SortingGestureType\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":[\"value__\",\"Tap\",\"DoubleTap\"]},{\"name\":\"NavigationMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":[\"value__\",\"Cell\",\"Row\"]},{\"name\":\"SelectionMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":[\"value__\",\"Single\",\"Multiple\",\"SingleDeselect\",\"None\"]},{\"name\":\"SelectedIndex\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"Int32\"},{\"name\":\"SelectedRow\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"Object\"},{\"name\":\"SelectedRows\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"CurrentRow\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"Object\"},{\"name\":\"CurrentCell\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":[]},{\"name\":\"AlternationRowCount\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":\"Int32\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Syncfusion.Maui.DataGrid.SfDataGrid\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridTextColumn\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ColumnWidthMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"None\",\"Fill\",\"FitByHeader\",\"Auto\",\"LastColumnFill\",\"FitByCell\"]},{\"name\":\"CellStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Style\"},{\"name\":\"ActualWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"AllowSorting\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Boolean\"},{\"name\":\"MappingName\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"HeaderStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Style\"},{\"name\":\"HeaderText\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"Format\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"Width\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"DataTemplate\"},{\"name\":\"DisplayBinding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"BindingBase\"},{\"name\":\"MinimumWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"MaximumWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"Visible\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Boolean\"},{\"name\":\"CellType\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"CellPadding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"Zero\"]},{\"name\":\"HeaderPadding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"Zero\"]},{\"name\":\"HeaderTextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"CellTextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"SortMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Default\",\"Display\",\"Value\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridNumericColumn\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ColumnWidthMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"None\",\"Fill\",\"FitByHeader\",\"Auto\",\"LastColumnFill\",\"FitByCell\"]},{\"name\":\"CellStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Style\"},{\"name\":\"ActualWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"AllowSorting\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Boolean\"},{\"name\":\"MappingName\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"HeaderStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Style\"},{\"name\":\"HeaderText\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"Format\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"Width\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"DataTemplate\"},{\"name\":\"DisplayBinding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"BindingBase\"},{\"name\":\"MinimumWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"MaximumWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"Visible\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Boolean\"},{\"name\":\"CellType\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"CellPadding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"Zero\"]},{\"name\":\"HeaderPadding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"Zero\"]},{\"name\":\"HeaderTextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"CellTextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"SortMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Default\",\"Display\",\"Value\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridCheckBoxColumn\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ColumnWidthMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"None\",\"Fill\",\"FitByHeader\",\"Auto\",\"LastColumnFill\",\"FitByCell\"]},{\"name\":\"CellStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Style\"},{\"name\":\"ActualWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"AllowSorting\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Boolean\"},{\"name\":\"MappingName\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"HeaderStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Style\"},{\"name\":\"HeaderText\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"Format\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"Width\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"DataTemplate\"},{\"name\":\"DisplayBinding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"BindingBase\"},{\"name\":\"MinimumWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"MaximumWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"Visible\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Boolean\"},{\"name\":\"CellType\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"CellPadding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"Zero\"]},{\"name\":\"HeaderPadding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"Zero\"]},{\"name\":\"HeaderTextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"CellTextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"SortMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Default\",\"Display\",\"Value\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridTemplateColumn\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"CellTemplate\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridTemplateColumn\",\"type\":\"DataTemplate\"},{\"name\":\"ColumnWidthMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"None\",\"Fill\",\"FitByHeader\",\"Auto\",\"LastColumnFill\",\"FitByCell\"]},{\"name\":\"CellStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Style\"},{\"name\":\"ActualWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"AllowSorting\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Boolean\"},{\"name\":\"MappingName\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"HeaderStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Style\"},{\"name\":\"HeaderText\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"Format\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"Width\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"DataTemplate\"},{\"name\":\"DisplayBinding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"BindingBase\"},{\"name\":\"MinimumWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"MaximumWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"Visible\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Boolean\"},{\"name\":\"CellType\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"CellPadding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"Zero\"]},{\"name\":\"HeaderPadding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"Zero\"]},{\"name\":\"HeaderTextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"CellTextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"SortMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Default\",\"Display\",\"Value\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridImageColumn\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Aspect\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridImageColumn\",\"type\":[\"value__\",\"AspectFit\",\"AspectFill\",\"Fill\",\"Center\"]},{\"name\":\"ColumnWidthMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"None\",\"Fill\",\"FitByHeader\",\"Auto\",\"LastColumnFill\",\"FitByCell\"]},{\"name\":\"CellStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Style\"},{\"name\":\"ActualWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"AllowSorting\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Boolean\"},{\"name\":\"MappingName\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"HeaderStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Style\"},{\"name\":\"HeaderText\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"Format\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"Width\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"DataTemplate\"},{\"name\":\"DisplayBinding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"BindingBase\"},{\"name\":\"MinimumWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"MaximumWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"Visible\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Boolean\"},{\"name\":\"CellType\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"CellPadding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"Zero\"]},{\"name\":\"HeaderPadding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"Zero\"]},{\"name\":\"HeaderTextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"CellTextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"SortMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Default\",\"Display\",\"Value\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridDateColumn\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ColumnWidthMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"None\",\"Fill\",\"FitByHeader\",\"Auto\",\"LastColumnFill\",\"FitByCell\"]},{\"name\":\"CellStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Style\"},{\"name\":\"ActualWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"AllowSorting\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Boolean\"},{\"name\":\"MappingName\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"HeaderStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Style\"},{\"name\":\"HeaderText\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"Format\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"Width\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"DataTemplate\"},{\"name\":\"DisplayBinding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"BindingBase\"},{\"name\":\"MinimumWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"MaximumWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Double\"},{\"name\":\"Visible\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"Boolean\"},{\"name\":\"CellType\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":\"String\"},{\"name\":\"CellPadding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"Zero\"]},{\"name\":\"HeaderPadding\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"Zero\"]},{\"name\":\"HeaderTextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"CellTextAlignment\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"SortMode\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridColumn\",\"type\":[\"value__\",\"Default\",\"Display\",\"Value\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SortColumnDescription\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ColumnName\",\"namespace\":\"Syncfusion.Maui.DataGrid.SortColumnDescription\",\"type\":\"String\"},{\"name\":\"SortDirection\",\"namespace\":\"Syncfusion.Maui.DataGrid.SortColumnDescription\",\"type\":[\"value__\",\"Ascending\",\"Descending\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridScrollView\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"container\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridScrollView\",\"type\":\"VisualContainer\"},{\"name\":\"LayoutAreaOverride\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"Zero\"]},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"View\"},{\"name\":\"ContentSize\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"Zero\"]},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\",\"Both\",\"Neither\"]},{\"name\":\"ScrollX\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"Double\"},{\"name\":\"ScrollY\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"Double\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"VisualContainer\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsChildInSwipe\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"Boolean\"},{\"name\":\"RowGenerator\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"RowGenerator\"},{\"name\":\"NeedToRefreshColumn\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"Boolean\"},{\"name\":\"RowHeights\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"IPaddedEditableLineSizeHost\"},{\"name\":\"ColumnWidths\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"IPaddedEditableLineSizeHost\"},{\"name\":\"RowCount\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"Int32\"},{\"name\":\"ColumnCount\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"Int32\"},{\"name\":\"FrozenRows\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"Int32\"},{\"name\":\"FrozenColumns\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"Int32\"},{\"name\":\"ScrollOwner\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"DataGridScrollView\"},{\"name\":\"ScrollRows\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"ScrollAxisBase\"},{\"name\":\"ScrollColumns\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"ScrollAxisBase\"},{\"name\":\"HScrollBar\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"IScrollBar\"},{\"name\":\"VScrollBar\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"IScrollBar\"},{\"name\":\"ExtentWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"Double\"},{\"name\":\"ExtentHeight\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"Double\"},{\"name\":\"HorizontalOffset\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"Double\"},{\"name\":\"VerticalOffset\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"Double\"},{\"name\":\"ScrollerHeight\",\"namespace\":\"Syncfusion.Maui.DataGrid.VisualContainer\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"DataGridStyle\",\"namespace\":\"Syncfusion.Maui.DataGrid\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HeaderRowBackground\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Brush\"},{\"name\":\"GridLineColor\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Color\"},{\"name\":\"GridLineStrokeThickness\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Single\"},{\"name\":\"HeaderRowFontAttributes\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"HeaderRowFontFamily\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"String\"},{\"name\":\"HeaderRowFontSize\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Double\"},{\"name\":\"HeaderRowTextColor\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Color\"},{\"name\":\"RowBackground\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Brush\"},{\"name\":\"RowFontSize\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Double\"},{\"name\":\"RowFontAttributes\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"RowFontFamily\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"String\"},{\"name\":\"RowTextColor\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Color\"},{\"name\":\"CurrentCellBorderColor\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Color\"},{\"name\":\"CurrentCellBorderWidth\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Double\"},{\"name\":\"SelectionBackground\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Brush\"},{\"name\":\"SelectedRowTextColor\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Color\"},{\"name\":\"AlternateRowBackground\",\"namespace\":\"Syncfusion.Maui.DataGrid.DataGridStyle\",\"type\":\"Brush\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.Gauges.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"GaugeGradientStop\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Color\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeGradientStop\",\"type\":\"Color\"},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeGradientStop\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GaugeLabelStyle\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeLabelStyle\",\"type\":\"Double\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeLabelStyle\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeLabelStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeLabelStyle\",\"type\":\"Color\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LinearLineStyle\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearLineStyle\",\"type\":\"Brush\"},{\"name\":\"GradientStops\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearLineStyle\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"CornerRadius\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearLineStyle\",\"type\":[\"Zero\"]},{\"name\":\"Thickness\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearLineStyle\",\"type\":\"Double\"},{\"name\":\"CornerStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearLineStyle\",\"type\":[\"value__\",\"BothFlat\",\"BothCurve\",\"EndCurve\",\"StartCurve\"]},{\"name\":\"DashArray\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearLineStyle\",\"type\":\"DoubleCollection\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LinearTickStyle\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeTickStyle\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeTickStyle\",\"type\":\"Double\"},{\"name\":\"Length\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeTickStyle\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeTickStyle\",\"type\":\"DoubleCollection\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"BarPointer\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStarted\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeCompleted\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"AnimationCompleted\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Offset\",\"namespace\":\"Syncfusion.Maui.Gauges.BarPointer\",\"type\":\"Double\"},{\"name\":\"PointerSize\",\"namespace\":\"Syncfusion.Maui.Gauges.BarPointer\",\"type\":\"Double\"},{\"name\":\"CornerStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.BarPointer\",\"type\":[\"value__\",\"BothFlat\",\"BothCurve\",\"EndCurve\",\"StartCurve\"]},{\"name\":\"GradientStops\",\"namespace\":\"Syncfusion.Maui.Gauges.BarPointer\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Gauges.BarPointer\",\"type\":\"Brush\"},{\"name\":\"Child\",\"namespace\":\"Syncfusion.Maui.Gauges.BarPointer\",\"type\":\"View\"},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Boolean\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Double\"},{\"name\":\"AnimationEasing\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Easing\"},{\"name\":\"IsInteractive\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Boolean\"},{\"name\":\"StepFrequency\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Double\"},{\"name\":\"DragOffset\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Double\"},{\"name\":\"Position\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":[\"value__\",\"Inside\",\"Outside\",\"Cross\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LinearContentPointer\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStarted\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeCompleted\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"AnimationCompleted\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearContentPointer\",\"type\":\"View\"},{\"name\":\"OffsetX\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearMarkerPointer\",\"type\":\"Double\"},{\"name\":\"OffsetY\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearMarkerPointer\",\"type\":\"Double\"},{\"name\":\"Alignment\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearMarkerPointer\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Boolean\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Double\"},{\"name\":\"AnimationEasing\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Easing\"},{\"name\":\"IsInteractive\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Boolean\"},{\"name\":\"StepFrequency\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Double\"},{\"name\":\"DragOffset\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Double\"},{\"name\":\"Position\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":[\"value__\",\"Inside\",\"Outside\",\"Cross\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LinearShapePointer\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStarted\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeCompleted\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"AnimationCompleted\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ShapeType\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearShapePointer\",\"type\":[\"value__\",\"Circle\",\"Diamond\",\"InvertedTriangle\",\"Rectangle\",\"Triangle\"]},{\"name\":\"ShapeHeight\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearShapePointer\",\"type\":\"Double\"},{\"name\":\"ShapeWidth\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearShapePointer\",\"type\":\"Double\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearShapePointer\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearShapePointer\",\"type\":\"Color\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearShapePointer\",\"type\":\"Double\"},{\"name\":\"HasShadow\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearShapePointer\",\"type\":\"Boolean\"},{\"name\":\"OffsetX\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearMarkerPointer\",\"type\":\"Double\"},{\"name\":\"OffsetY\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearMarkerPointer\",\"type\":\"Double\"},{\"name\":\"Alignment\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearMarkerPointer\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Boolean\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Double\"},{\"name\":\"AnimationEasing\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Easing\"},{\"name\":\"IsInteractive\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Boolean\"},{\"name\":\"StepFrequency\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Double\"},{\"name\":\"DragOffset\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":\"Double\"},{\"name\":\"Position\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearPointer\",\"type\":[\"value__\",\"Inside\",\"Outside\",\"Cross\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LinearRange\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"StartValue\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearRange\",\"type\":\"Double\"},{\"name\":\"EndValue\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearRange\",\"type\":\"Double\"},{\"name\":\"StartWidth\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearRange\",\"type\":\"Double\"},{\"name\":\"MidWidth\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearRange\",\"type\":\"Double\"},{\"name\":\"EndWidth\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearRange\",\"type\":\"Double\"},{\"name\":\"Position\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearRange\",\"type\":[\"value__\",\"Inside\",\"Outside\",\"Cross\"]},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearRange\",\"type\":\"Brush\"},{\"name\":\"GradientStops\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearRange\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Child\",\"namespace\":\"Syncfusion.Maui.Gauges.LinearRange\",\"type\":\"View\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LinearPointerView\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LinearRangeView\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LinearScaleView\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfLinearGauge\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"LabelCreated\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Double\"},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Double\"},{\"name\":\"Interval\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Double\"},{\"name\":\"MinorTicksPerInterval\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Int32\"},{\"name\":\"MaximumLabelsCount\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Int32\"},{\"name\":\"LabelFormat\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"String\"},{\"name\":\"LabelPosition\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":[\"value__\",\"Inside\",\"Outside\"]},{\"name\":\"LabelOffset\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Double\"},{\"name\":\"TickPosition\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":[\"value__\",\"Inside\",\"Outside\",\"Cross\"]},{\"name\":\"TickOffset\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Double\"},{\"name\":\"LineStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"LinearLineStyle\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"GaugeLabelStyle\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"LinearTickStyle\"},{\"name\":\"MinorTickStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"LinearTickStyle\"},{\"name\":\"IsMirrored\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Boolean\"},{\"name\":\"IsInversed\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Boolean\"},{\"name\":\"ShowTicks\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Boolean\"},{\"name\":\"ShowLine\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Boolean\"},{\"name\":\"ShowLabels\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Boolean\"},{\"name\":\"EnableAxisAnimation\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Boolean\"},{\"name\":\"EnableRangeAnimation\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Boolean\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Double\"},{\"name\":\"UseRangeColorForAxis\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"Boolean\"},{\"name\":\"Orientation\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":[\"value__\",\"Horizontal\",\"Vertical\"]},{\"name\":\"Ranges\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"BarPointers\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"MarkerPointers\",\"namespace\":\"Syncfusion.Maui.Gauges.SfLinearGauge\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GaugeAnnotation\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DirectionValue\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeAnnotation\",\"type\":\"Double\"},{\"name\":\"DirectionUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeAnnotation\",\"type\":[\"value__\",\"Angle\",\"AxisValue\"]},{\"name\":\"PositionFactor\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeAnnotation\",\"type\":\"Double\"},{\"name\":\"HorizontalAlignment\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeAnnotation\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"VerticalAlignment\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeAnnotation\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeAnnotation\",\"type\":\"View\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RadialLineStyle\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialLineStyle\",\"type\":\"Brush\"},{\"name\":\"GradientStops\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialLineStyle\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"ThicknessUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialLineStyle\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"Thickness\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialLineStyle\",\"type\":\"Double\"},{\"name\":\"CornerStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialLineStyle\",\"type\":[\"value__\",\"BothFlat\",\"BothCurve\",\"EndCurve\",\"StartCurve\"]},{\"name\":\"DashArray\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialLineStyle\",\"type\":\"DoubleCollection\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RadialTickStyle\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LengthUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialTickStyle\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeTickStyle\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeTickStyle\",\"type\":\"Double\"},{\"name\":\"Length\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeTickStyle\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Syncfusion.Maui.Gauges.GaugeTickStyle\",\"type\":\"DoubleCollection\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ContentPointer\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStarted\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeCompleted\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Gauges.ContentPointer\",\"type\":\"View\"},{\"name\":\"Offset\",\"namespace\":\"Syncfusion.Maui.Gauges.MarkerPointer\",\"type\":\"Double\"},{\"name\":\"OffsetUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.MarkerPointer\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Double\"},{\"name\":\"StepFrequency\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Boolean\"},{\"name\":\"IsInteractive\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Boolean\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Double\"},{\"name\":\"AnimationEasing\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Easing\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"NeedlePointer\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStarted\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeCompleted\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"KnobRadius\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":\"Double\"},{\"name\":\"KnobStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":\"Double\"},{\"name\":\"KnobFill\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":\"Brush\"},{\"name\":\"KnobStroke\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":\"Color\"},{\"name\":\"KnobSizeUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"NeedleLength\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":\"Double\"},{\"name\":\"NeedleLengthUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"NeedleStartWidth\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":\"Double\"},{\"name\":\"NeedleEndWidth\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":\"Double\"},{\"name\":\"NeedleFill\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":\"Brush\"},{\"name\":\"TailLength\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":\"Double\"},{\"name\":\"TailFill\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":\"Brush\"},{\"name\":\"TailLengthUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"TailWidth\",\"namespace\":\"Syncfusion.Maui.Gauges.NeedlePointer\",\"type\":\"Double\"},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Double\"},{\"name\":\"StepFrequency\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Boolean\"},{\"name\":\"IsInteractive\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Boolean\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Double\"},{\"name\":\"AnimationEasing\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Easing\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RangePointer\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStarted\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeCompleted\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PointerWidth\",\"namespace\":\"Syncfusion.Maui.Gauges.RangePointer\",\"type\":\"Double\"},{\"name\":\"WidthUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.RangePointer\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"PointerOffset\",\"namespace\":\"Syncfusion.Maui.Gauges.RangePointer\",\"type\":\"Double\"},{\"name\":\"OffsetUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.RangePointer\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"CornerStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.RangePointer\",\"type\":[\"value__\",\"BothFlat\",\"BothCurve\",\"EndCurve\",\"StartCurve\"]},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Gauges.RangePointer\",\"type\":\"Brush\"},{\"name\":\"GradientStops\",\"namespace\":\"Syncfusion.Maui.Gauges.RangePointer\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Double\"},{\"name\":\"StepFrequency\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Boolean\"},{\"name\":\"IsInteractive\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Boolean\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Double\"},{\"name\":\"AnimationEasing\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Easing\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ShapePointer\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStarted\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeCompleted\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"BorderWidth\",\"namespace\":\"Syncfusion.Maui.Gauges.ShapePointer\",\"type\":\"Double\"},{\"name\":\"ShapeHeight\",\"namespace\":\"Syncfusion.Maui.Gauges.ShapePointer\",\"type\":\"Double\"},{\"name\":\"ShapeWidth\",\"namespace\":\"Syncfusion.Maui.Gauges.ShapePointer\",\"type\":\"Double\"},{\"name\":\"ShapeType\",\"namespace\":\"Syncfusion.Maui.Gauges.ShapePointer\",\"type\":[\"value__\",\"Circle\",\"Diamond\",\"InvertedTriangle\",\"Rectangle\",\"Triangle\"]},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Gauges.ShapePointer\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Gauges.ShapePointer\",\"type\":\"Color\"},{\"name\":\"OverlayFill\",\"namespace\":\"Syncfusion.Maui.Gauges.ShapePointer\",\"type\":\"Brush\"},{\"name\":\"OverlayRadius\",\"namespace\":\"Syncfusion.Maui.Gauges.ShapePointer\",\"type\":\"Double\"},{\"name\":\"HasShadow\",\"namespace\":\"Syncfusion.Maui.Gauges.ShapePointer\",\"type\":\"Boolean\"},{\"name\":\"Offset\",\"namespace\":\"Syncfusion.Maui.Gauges.MarkerPointer\",\"type\":\"Double\"},{\"name\":\"OffsetUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.MarkerPointer\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Double\"},{\"name\":\"StepFrequency\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Double\"},{\"name\":\"EnableAnimation\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Boolean\"},{\"name\":\"IsInteractive\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Boolean\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Double\"},{\"name\":\"AnimationEasing\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialPointer\",\"type\":\"Easing\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RadialAxis\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"LabelCreated\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Double\"},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Double\"},{\"name\":\"Interval\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Double\"},{\"name\":\"MinorTicksPerInterval\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Int32\"},{\"name\":\"MaximumLabelsCount\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Int32\"},{\"name\":\"StartAngle\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Double\"},{\"name\":\"EndAngle\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Double\"},{\"name\":\"RadiusFactor\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Double\"},{\"name\":\"CanScaleToFit\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Boolean\"},{\"name\":\"ShowTicks\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Boolean\"},{\"name\":\"ShowAxisLine\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Boolean\"},{\"name\":\"ShowLabels\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Boolean\"},{\"name\":\"ShowFirstLabel\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Boolean\"},{\"name\":\"ShowLastLabel\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Boolean\"},{\"name\":\"IsInversed\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Boolean\"},{\"name\":\"CanRotateLabels\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Boolean\"},{\"name\":\"UseRangeColorForAxis\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Boolean\"},{\"name\":\"EnableLoadingAnimation\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Boolean\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Double\"},{\"name\":\"TickPosition\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":[\"value__\",\"Inside\",\"Outside\",\"Cross\"]},{\"name\":\"TickOffset\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Double\"},{\"name\":\"LabelPosition\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":[\"value__\",\"Inside\",\"Outside\"]},{\"name\":\"LabelOffset\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"Double\"},{\"name\":\"OffsetUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"LabelFormat\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"String\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"RadialTickStyle\"},{\"name\":\"MinorTickStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"RadialTickStyle\"},{\"name\":\"AxisLabelStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"GaugeLabelStyle\"},{\"name\":\"AxisLineStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"RadialLineStyle\"},{\"name\":\"BackgroundContent\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"View\"},{\"name\":\"Ranges\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Pointers\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Annotations\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialAxis\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RadialRange\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"StartValue\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialRange\",\"type\":\"Double\"},{\"name\":\"EndValue\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialRange\",\"type\":\"Double\"},{\"name\":\"RangeOffset\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialRange\",\"type\":\"Double\"},{\"name\":\"OffsetUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialRange\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"WidthUnit\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialRange\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"StartWidth\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialRange\",\"type\":\"Double\"},{\"name\":\"EndWidth\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialRange\",\"type\":\"Double\"},{\"name\":\"Label\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialRange\",\"type\":\"String\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialRange\",\"type\":\"GaugeLabelStyle\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialRange\",\"type\":\"Brush\"},{\"name\":\"GradientStops\",\"namespace\":\"Syncfusion.Maui.Gauges.RadialRange\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PointerView\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RadialAxisView\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RangeView\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfRadialGauge\",\"namespace\":\"Syncfusion.Maui.Gauges\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Axes\",\"namespace\":\"Syncfusion.Maui.Gauges.SfRadialGauge\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.Inputs.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"SfAutocomplete\",\"namespace\":\"Syncfusion.Maui.Inputs\",\"doc\":null,\"attributes\":[{\"name\":\"SelectionChanged\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"FilterBehavior\",\"namespace\":\"Syncfusion.Maui.Inputs.SfAutocomplete\",\"type\":\"IAutocompleteFilterBehavior\"},{\"name\":\"SearchBehavior\",\"namespace\":\"Syncfusion.Maui.Inputs.SfAutocomplete\",\"type\":\"IAutocompleteSearchBehavior\"},{\"name\":\"TextSearchMode\",\"namespace\":\"Syncfusion.Maui.Inputs.SfAutocomplete\",\"type\":[\"value__\",\"Contains\",\"StartsWith\"]},{\"name\":\"IsDropDownOpen\",\"namespace\":\"Syncfusion.Maui.Inputs.SfAutocomplete\",\"type\":\"Boolean\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"Object\"},{\"name\":\"DisplayMemberPath\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"String\"},{\"name\":\"TextMemberPath\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"String\"},{\"name\":\"SelectedValuePath\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"String\"},{\"name\":\"SelectedValue\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"Object\"},{\"name\":\"SelectedItem\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"Object\"},{\"name\":\"IsClearButtonVisible\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Boolean\"},{\"name\":\"Placeholder\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Color\"},{\"name\":\"ClearButtonIconColor\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Color\"},{\"name\":\"MaxDropDownHeight\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Double\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Color\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Double\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Color\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfComboBox\",\"namespace\":\"Syncfusion.Maui.Inputs\",\"doc\":null,\"attributes\":[{\"name\":\"SelectionChanged\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsEditable\",\"namespace\":\"Syncfusion.Maui.Inputs.SfComboBox\",\"type\":\"Boolean\"},{\"name\":\"DropDownIconColor\",\"namespace\":\"Syncfusion.Maui.Inputs.SfComboBox\",\"type\":\"Color\"},{\"name\":\"TextSearchMode\",\"namespace\":\"Syncfusion.Maui.Inputs.SfComboBox\",\"type\":[\"value__\",\"Contains\",\"StartsWith\"]},{\"name\":\"SelectedIndex\",\"namespace\":\"Syncfusion.Maui.Inputs.SfComboBox\",\"type\":\"Int32\"},{\"name\":\"IsDropdownButtonVisible\",\"namespace\":\"Syncfusion.Maui.Inputs.SfComboBox\",\"type\":\"Boolean\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"Object\"},{\"name\":\"DisplayMemberPath\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"String\"},{\"name\":\"TextMemberPath\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"String\"},{\"name\":\"SelectedValuePath\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"String\"},{\"name\":\"SelectedValue\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"Object\"},{\"name\":\"SelectedItem\",\"namespace\":\"Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase\",\"type\":\"Object\"},{\"name\":\"IsClearButtonVisible\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Boolean\"},{\"name\":\"Placeholder\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"String\"},{\"name\":\"PlaceholderColor\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Color\"},{\"name\":\"ClearButtonIconColor\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Color\"},{\"name\":\"MaxDropDownHeight\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Double\"},{\"name\":\"IsDropDownOpen\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Boolean\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Color\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Double\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Core.SfDropdownEntry\",\"type\":\"Color\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RatingSettings\",\"namespace\":\"Syncfusion.Maui.Inputs\",\"doc\":null,\"attributes\":[{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"RatedStroke\",\"namespace\":\"Syncfusion.Maui.Inputs.RatingSettings\",\"type\":\"Brush\"},{\"name\":\"RatedFill\",\"namespace\":\"Syncfusion.Maui.Inputs.RatingSettings\",\"type\":\"Brush\"},{\"name\":\"RatedStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Inputs.RatingSettings\",\"type\":\"Double\"},{\"name\":\"UnratedStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Inputs.RatingSettings\",\"type\":\"Double\"},{\"name\":\"UnratedFill\",\"namespace\":\"Syncfusion.Maui.Inputs.RatingSettings\",\"type\":\"Brush\"},{\"name\":\"UnratedStroke\",\"namespace\":\"Syncfusion.Maui.Inputs.RatingSettings\",\"type\":\"Brush\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfRating\",\"namespace\":\"Syncfusion.Maui.Inputs\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Inputs.SfRating\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"RatingSettings\",\"namespace\":\"Syncfusion.Maui.Inputs.SfRating\",\"type\":\"RatingSettings\"},{\"name\":\"RatingShape\",\"namespace\":\"Syncfusion.Maui.Inputs.SfRating\",\"type\":[\"value__\",\"Custom\",\"Circle\",\"Diamond\",\"Heart\",\"Star\"]},{\"name\":\"BackgroundColor\",\"namespace\":\"Syncfusion.Maui.Inputs.SfRating\",\"type\":\"Color\"},{\"name\":\"ItemSize\",\"namespace\":\"Syncfusion.Maui.Inputs.SfRating\",\"type\":\"Double\"},{\"name\":\"ItemCount\",\"namespace\":\"Syncfusion.Maui.Inputs.SfRating\",\"type\":\"Int32\"},{\"name\":\"ItemSpacing\",\"namespace\":\"Syncfusion.Maui.Inputs.SfRating\",\"type\":\"Double\"},{\"name\":\"Precision\",\"namespace\":\"Syncfusion.Maui.Inputs.SfRating\",\"type\":[\"value__\",\"Standard\",\"Half\",\"Exact\"]},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Inputs.SfRating\",\"type\":\"Double\"},{\"name\":\"Path\",\"namespace\":\"Syncfusion.Maui.Inputs.SfRating\",\"type\":\"String\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Syncfusion.Maui.Inputs.SfRating\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.ListView.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"ListViewLoadMoreIndicator\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Color\",\"namespace\":\"Microsoft.Maui.Controls.ActivityIndicator\",\"type\":\"Color\"},{\"name\":\"IsRunning\",\"namespace\":\"Microsoft.Maui.Controls.ActivityIndicator\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ListViewItem\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsSelected\",\"namespace\":\"Syncfusion.Maui.ListView.ListViewItem\",\"type\":\"Boolean\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ListViewHeaderItem\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsSelected\",\"namespace\":\"Syncfusion.Maui.ListView.ListViewItem\",\"type\":\"Boolean\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ListViewFooterItem\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsSelected\",\"namespace\":\"Syncfusion.Maui.ListView.ListViewItem\",\"type\":\"Boolean\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ListViewLoadMoreItem\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsSelected\",\"namespace\":\"Syncfusion.Maui.ListView.ListViewItem\",\"type\":\"Boolean\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ListViewGroupHeaderItem\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsSelected\",\"namespace\":\"Syncfusion.Maui.ListView.ListViewItem\",\"type\":\"Boolean\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ListViewEmptyViewItem\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsSelected\",\"namespace\":\"Syncfusion.Maui.ListView.ListViewItem\",\"type\":\"Boolean\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"GridLayout\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SpanCount\",\"namespace\":\"Syncfusion.Maui.ListView.GridLayout\",\"type\":\"Int32\"},{\"name\":\"ItemsCacheLimit\",\"namespace\":\"Syncfusion.Maui.ListView.ListViewLayout\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LinearLayout\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ItemsCacheLimit\",\"namespace\":\"Syncfusion.Maui.ListView.ListViewLayout\",\"type\":\"Int32\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ListViewScrollView\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LayoutAreaOverride\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"Zero\"]},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"View\"},{\"name\":\"ContentSize\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"Zero\"]},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\",\"Both\",\"Neither\"]},{\"name\":\"ScrollX\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"Double\"},{\"name\":\"ScrollY\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"Double\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"VisualContainer\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ScrollRows\",\"namespace\":\"Syncfusion.Maui.ListView.VisualContainer\",\"type\":\"ScrollAxisBase\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfListView\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"SwipeStarting\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Swiping\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SwipeEnded\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SwipeReset\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ItemTapped\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ItemDoubleTapped\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ItemLongPress\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ItemAppearing\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ItemDisappearing\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SelectionChanged\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"SelectionChanging\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"GroupExpanding\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"GroupCollapsing\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"GroupExpanded\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"GroupCollapsed\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"QueryItemSize\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ScrollStateChanged\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SwipeOffset\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Double\"},{\"name\":\"SwipeThreshold\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Double\"},{\"name\":\"AllowSwiping\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Boolean\"},{\"name\":\"StartSwipeTemplate\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"DataTemplate\"},{\"name\":\"EndSwipeTemplate\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"DataTemplate\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Object\"},{\"name\":\"ItemSize\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Double\"},{\"name\":\"HeaderSize\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Double\"},{\"name\":\"FooterSize\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Double\"},{\"name\":\"GroupHeaderSize\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Double\"},{\"name\":\"ItemsLayout\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"ListViewLayout\"},{\"name\":\"ItemTemplate\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"DataTemplate\"},{\"name\":\"HeaderTemplate\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"DataTemplate\"},{\"name\":\"EmptyView\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Object\"},{\"name\":\"EmptyViewTemplate\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"DataTemplate\"},{\"name\":\"FooterTemplate\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"DataTemplate\"},{\"name\":\"SelectedItemTemplate\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"DataTemplate\"},{\"name\":\"LoadMoreTemplate\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"DataTemplate\"},{\"name\":\"LoadMoreCommand\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"ICommand\"},{\"name\":\"LongPressCommand\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"ICommand\"},{\"name\":\"LongPressCommandParameter\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Object\"},{\"name\":\"TapCommand\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"ICommand\"},{\"name\":\"TapCommandParameter\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Object\"},{\"name\":\"LoadMoreCommandParameter\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Object\"},{\"name\":\"SelectionChangedCommand\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"ICommand\"},{\"name\":\"SelectionChangedCommandParameter\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Object\"},{\"name\":\"LoadMoreOption\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":[\"value__\",\"None\",\"Auto\",\"Manual\",\"AutoOnScroll\"]},{\"name\":\"LoadMorePosition\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":[\"value__\",\"Start\",\"End\"]},{\"name\":\"IsLazyLoading\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Boolean\"},{\"name\":\"GroupHeaderTemplate\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"DataTemplate\"},{\"name\":\"IsStickyHeader\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Boolean\"},{\"name\":\"IsStickyFooter\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Boolean\"},{\"name\":\"StickyFooterPosition\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":[\"value__\",\"Default\",\"Body\"]},{\"name\":\"IsStickyGroupHeader\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Boolean\"},{\"name\":\"AllowGroupExpandCollapse\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Boolean\"},{\"name\":\"DataSource\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"DataSource\"},{\"name\":\"ItemSpacing\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":[\"Zero\"]},{\"name\":\"SelectionGesture\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":[\"value__\",\"Tap\",\"DoubleTap\",\"LongPress\"]},{\"name\":\"SelectionMode\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":[\"value__\",\"Single\",\"SingleDeselect\",\"Multiple\",\"None\"]},{\"name\":\"SelectedItems\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"CurrentItem\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Object\"},{\"name\":\"SelectedItem\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Object\"},{\"name\":\"SelectionBackground\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Brush\"},{\"name\":\"Orientation\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"AutoFitMode\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":[\"value__\",\"None\",\"Height\",\"DynamicHeight\"]},{\"name\":\"IsScrollingEnabled\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Boolean\"},{\"name\":\"ItemsSourceChangeCachingStrategy\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":[\"value__\",\"RecycleItems\",\"ClearItems\"]},{\"name\":\"CachingStrategy\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":[\"value__\",\"CreateNewTemplate\",\"RecycleTemplate\"]},{\"name\":\"ItemGenerator\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"ItemsGenerator\"},{\"name\":\"ScrollBarVisibility\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"CanMaintainScrollPosition\",\"namespace\":\"Syncfusion.Maui.ListView.SfListView\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SwipeView\",\"namespace\":\"Syncfusion.Maui.ListView\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.SfContentView\",\"type\":\"View\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.Maps.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"MapArea\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PlotArea\",\"namespace\":\"Syncfusion.Maui.Maps.MapArea\",\"type\":\"IPlotArea\"},{\"name\":\"AreaBounds\",\"namespace\":\"Syncfusion.Maui.Core.Internals.AreaBase\",\"type\":[\"Zero\"]},{\"name\":\"NeedsRelayout\",\"namespace\":\"Syncfusion.Maui.Core.Internals.AreaBase\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"MapPlotArea\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PlotAreaBounds\",\"namespace\":\"Syncfusion.Maui.Maps.MapPlotArea\",\"type\":[\"Zero\"]},{\"name\":\"ShouldPopulateLegendItems\",\"namespace\":\"Syncfusion.Maui.Maps.MapPlotArea\",\"type\":\"Boolean\"},{\"name\":\"LegendItems\",\"namespace\":\"Syncfusion.Maui.Maps.MapPlotArea\",\"type\":\"ReadOnlyObservableCollection\\u00601\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"LayoutFlags\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"value__\",\"None\",\"XProportional\",\"YProportional\",\"WidthProportional\",\"HeightProportional\",\"PositionProportional\",\"SizeProportional\",\"All\"],\"isAttached\":true},{\"name\":\"LayoutBounds\",\"namespace\":\"Microsoft.Maui.Controls.AbsoluteLayout\",\"type\":[\"Zero\"],\"isAttached\":true}]},{\"name\":\"MapLabelStyle\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Maps.MapLabelStyle\",\"type\":\"Double\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Maps.MapLabelStyle\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Maps.MapLabelStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Maps.MapLabelStyle\",\"type\":\"Color\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapLatLngBounds\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Northeast\",\"namespace\":\"Syncfusion.Maui.Maps.MapLatLngBounds\",\"type\":\"MapLatLng\"},{\"name\":\"Southwest\",\"namespace\":\"Syncfusion.Maui.Maps.MapLatLngBounds\",\"type\":\"MapLatLng\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapZoomPanBehavior\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ZoomLevel\",\"namespace\":\"Syncfusion.Maui.Maps.MapZoomPanBehavior\",\"type\":\"Double\"},{\"name\":\"MinZoomLevel\",\"namespace\":\"Syncfusion.Maui.Maps.MapZoomPanBehavior\",\"type\":\"Double\"},{\"name\":\"MaxZoomLevel\",\"namespace\":\"Syncfusion.Maui.Maps.MapZoomPanBehavior\",\"type\":\"Double\"},{\"name\":\"EnablePanning\",\"namespace\":\"Syncfusion.Maui.Maps.MapZoomPanBehavior\",\"type\":\"Boolean\"},{\"name\":\"EnableZooming\",\"namespace\":\"Syncfusion.Maui.Maps.MapZoomPanBehavior\",\"type\":\"Boolean\"},{\"name\":\"EnableDoubleTapZooming\",\"namespace\":\"Syncfusion.Maui.Maps.MapZoomPanBehavior\",\"type\":\"Boolean\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapMarker\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Latitude\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Double\"},{\"name\":\"Longitude\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Double\"},{\"name\":\"IconType\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":[\"value__\",\"Circle\",\"Diamond\",\"Square\",\"Triangle\"]},{\"name\":\"IconHeight\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Double\"},{\"name\":\"IconWidth\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Double\"},{\"name\":\"IconFill\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Brush\"},{\"name\":\"IconStroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Brush\"},{\"name\":\"IconStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":\"Double\"},{\"name\":\"HorizontalAlignment\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"VerticalAlignment\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"Offset\",\"namespace\":\"Syncfusion.Maui.Maps.MapMarker\",\"type\":[\"Zero\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapTile\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapTileLayer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"MarkerSelected\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ZoomLevelChanging\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"UrlTemplate\",\"namespace\":\"Syncfusion.Maui.Maps.MapTileLayer\",\"type\":\"String\"},{\"name\":\"Center\",\"namespace\":\"Syncfusion.Maui.Maps.MapTileLayer\",\"type\":\"MapLatLng\"},{\"name\":\"CanCacheTiles\",\"namespace\":\"Syncfusion.Maui.Maps.MapTileLayer\",\"type\":\"Boolean\"},{\"name\":\"Radius\",\"namespace\":\"Syncfusion.Maui.Maps.MapTileLayer\",\"type\":\"Double\"},{\"name\":\"DistanceType\",\"namespace\":\"Syncfusion.Maui.Maps.MapTileLayer\",\"type\":[\"value__\",\"Meter\",\"Kilometer\",\"Mile\"]},{\"name\":\"LatLngBounds\",\"namespace\":\"Syncfusion.Maui.Maps.MapTileLayer\",\"type\":\"MapLatLngBounds\"},{\"name\":\"EnableCenterAnimation\",\"namespace\":\"Syncfusion.Maui.Maps.MapTileLayer\",\"type\":\"Boolean\"},{\"name\":\"Markers\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"IEnumerable\\u00601\"},{\"name\":\"MarkerTemplate\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"DataTemplate\"},{\"name\":\"ShowMarkerTooltip\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"Boolean\"},{\"name\":\"MarkerTooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"DataTemplate\"},{\"name\":\"MarkerTooltipSettings\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"MapTooltipSettings\"},{\"name\":\"Sublayers\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"EnableZoomingAnimation\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"Boolean\"},{\"name\":\"ZoomPanBehavior\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"MapZoomPanBehavior\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"BingUrl\",\"namespace\":\"Syncfusion.Maui.Maps.MapTileLayer\",\"type\":\"Task\\u00601\",\"isAttached\":true}]},{\"name\":\"MapBubbleRenderer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapElementRenderer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapRenderer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapSubShapeLayerRenderer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapSubVectorLayerRenderer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SublayerBubbleRenderer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SublayerElementRenderer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfMaps\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Layer\",\"namespace\":\"Syncfusion.Maui.Maps.SfMaps\",\"type\":\"MapLayer\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"EqualColorMapping\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Maps.EqualColorMapping\",\"type\":\"String\"},{\"name\":\"Color\",\"namespace\":\"Syncfusion.Maui.Maps.ColorMapping\",\"type\":\"Color\"},{\"name\":\"Text\",\"namespace\":\"Syncfusion.Maui.Maps.ColorMapping\",\"type\":\"String\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"RangeColorMapping\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"From\",\"namespace\":\"Syncfusion.Maui.Maps.RangeColorMapping\",\"type\":\"Double\"},{\"name\":\"To\",\"namespace\":\"Syncfusion.Maui.Maps.RangeColorMapping\",\"type\":\"Double\"},{\"name\":\"Color\",\"namespace\":\"Syncfusion.Maui.Maps.ColorMapping\",\"type\":\"Color\"},{\"name\":\"Text\",\"namespace\":\"Syncfusion.Maui.Maps.ColorMapping\",\"type\":\"String\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapBubbleSettings\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeValuePath\",\"namespace\":\"Syncfusion.Maui.Maps.MapBubbleSettings\",\"type\":\"String\"},{\"name\":\"MinSize\",\"namespace\":\"Syncfusion.Maui.Maps.MapBubbleSettings\",\"type\":\"Double\"},{\"name\":\"MaxSize\",\"namespace\":\"Syncfusion.Maui.Maps.MapBubbleSettings\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Syncfusion.Maui.Maps.MapBubbleSettings\",\"type\":\"Double\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Maps.MapBubbleSettings\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapBubbleSettings\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapBubbleSettings\",\"type\":\"Double\"},{\"name\":\"ColorValuePath\",\"namespace\":\"Syncfusion.Maui.Maps.MapBubbleSettings\",\"type\":\"String\"},{\"name\":\"ColorMappings\",\"namespace\":\"Syncfusion.Maui.Maps.MapBubbleSettings\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"HoverFill\",\"namespace\":\"Syncfusion.Maui.Maps.MapBubbleSettings\",\"type\":\"Brush\"},{\"name\":\"HoverStroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapBubbleSettings\",\"type\":\"Brush\"},{\"name\":\"HoverStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapBubbleSettings\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapDataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DataLabelPath\",\"namespace\":\"Syncfusion.Maui.Maps.MapDataLabelSettings\",\"type\":\"String\"},{\"name\":\"DataLabelStyle\",\"namespace\":\"Syncfusion.Maui.Maps.MapDataLabelSettings\",\"type\":\"MapLabelStyle\"},{\"name\":\"OverflowMode\",\"namespace\":\"Syncfusion.Maui.Maps.MapDataLabelSettings\",\"type\":[\"value__\",\"None\",\"Trim\",\"Hide\"]},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapLegend\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Placement\",\"namespace\":\"Syncfusion.Maui.Maps.MapLegend\",\"type\":[\"value__\",\"Left\",\"Top\",\"Right\",\"Bottom\"]},{\"name\":\"SourceType\",\"namespace\":\"Syncfusion.Maui.Maps.MapLegend\",\"type\":[\"value__\",\"Shape\",\"Bubble\"]},{\"name\":\"IconSize\",\"namespace\":\"Syncfusion.Maui.Maps.MapLegend\",\"type\":[\"Zero\"]},{\"name\":\"IconType\",\"namespace\":\"Syncfusion.Maui.Maps.MapLegend\",\"type\":[\"value__\",\"Custom\",\"Rectangle\",\"HorizontalLine\",\"Circle\",\"Diamond\",\"Pentagon\",\"Triangle\",\"InvertedTriangle\",\"Cross\",\"Plus\",\"Hexagon\",\"VerticalLine\"]},{\"name\":\"TextStyle\",\"namespace\":\"Syncfusion.Maui.Maps.MapLegend\",\"type\":\"MapLabelStyle\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapShapeLayer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"ShapeSelected\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MarkerSelected\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ZoomLevelChanging\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ShapesSource\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"MapSource\"},{\"name\":\"ShapeFill\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Brush\"},{\"name\":\"ShapeStroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Brush\"},{\"name\":\"ShapeStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Double\"},{\"name\":\"DataSource\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Object\"},{\"name\":\"ShapeDataField\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"String\"},{\"name\":\"PrimaryValuePath\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"String\"},{\"name\":\"ShapeColorValuePath\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"String\"},{\"name\":\"ColorMappings\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Boolean\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"MapDataLabelSettings\"},{\"name\":\"BubbleSettings\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"MapBubbleSettings\"},{\"name\":\"ShowBubbles\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Boolean\"},{\"name\":\"Legend\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"MapLegend\"},{\"name\":\"SelectedShapeFill\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Brush\"},{\"name\":\"SelectedShapeStroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Brush\"},{\"name\":\"SelectedShapeStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Double\"},{\"name\":\"EnableSelection\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Boolean\"},{\"name\":\"ShapeHoverFill\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Brush\"},{\"name\":\"ShapeHoverStroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Brush\"},{\"name\":\"ShapeHoverStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Double\"},{\"name\":\"ShowShapeTooltip\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Boolean\"},{\"name\":\"ShowBubbleTooltip\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"Boolean\"},{\"name\":\"ShapeTooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"DataTemplate\"},{\"name\":\"BubbleTooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"DataTemplate\"},{\"name\":\"ShapeTooltipSettings\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"MapTooltipSettings\"},{\"name\":\"BubbleTooltipSettings\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":\"MapTooltipSettings\"},{\"name\":\"Geometry\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeLayer\",\"type\":[\"value__\",\"Points\",\"GeographicPoints\"]},{\"name\":\"Markers\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"IEnumerable\\u00601\"},{\"name\":\"MarkerTemplate\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"DataTemplate\"},{\"name\":\"ShowMarkerTooltip\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"Boolean\"},{\"name\":\"MarkerTooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"DataTemplate\"},{\"name\":\"MarkerTooltipSettings\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"MapTooltipSettings\"},{\"name\":\"Sublayers\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"EnableZoomingAnimation\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"Boolean\"},{\"name\":\"ZoomPanBehavior\",\"namespace\":\"Syncfusion.Maui.Maps.MapLayer\",\"type\":\"MapZoomPanBehavior\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapShapeSublayer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"ShapeSelected\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ShapesSource\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"MapSource\"},{\"name\":\"ShapeFill\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Brush\"},{\"name\":\"ShapeStroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Brush\"},{\"name\":\"ShapeStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Double\"},{\"name\":\"DataSource\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Object\"},{\"name\":\"ShapeDataField\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"String\"},{\"name\":\"PrimaryValuePath\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"String\"},{\"name\":\"ShapeColorValuePath\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"String\"},{\"name\":\"ColorMappings\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"ShowDataLabels\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Boolean\"},{\"name\":\"DataLabelSettings\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"MapDataLabelSettings\"},{\"name\":\"BubbleSettings\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"MapBubbleSettings\"},{\"name\":\"ShowBubbles\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Boolean\"},{\"name\":\"SelectedShapeFill\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Brush\"},{\"name\":\"SelectedShapeStroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Brush\"},{\"name\":\"SelectedShapeStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Double\"},{\"name\":\"EnableSelection\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Boolean\"},{\"name\":\"ShapeHoverFill\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Brush\"},{\"name\":\"ShapeHoverStroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Brush\"},{\"name\":\"ShapeHoverStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Double\"},{\"name\":\"ShowShapeTooltip\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Boolean\"},{\"name\":\"ShowBubbleTooltip\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"Boolean\"},{\"name\":\"ShapeTooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"DataTemplate\"},{\"name\":\"BubbleTooltipTemplate\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"DataTemplate\"},{\"name\":\"ShapeTooltipSettings\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"MapTooltipSettings\"},{\"name\":\"BubbleTooltipSettings\",\"namespace\":\"Syncfusion.Maui.Maps.MapShapeSublayer\",\"type\":\"MapTooltipSettings\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapArc\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"From\",\"namespace\":\"Syncfusion.Maui.Maps.MapArc\",\"type\":\"MapLatLng\"},{\"name\":\"To\",\"namespace\":\"Syncfusion.Maui.Maps.MapArc\",\"type\":\"MapLatLng\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapArc\",\"type\":\"Double\"},{\"name\":\"HeightFactor\",\"namespace\":\"Syncfusion.Maui.Maps.MapArc\",\"type\":\"Double\"},{\"name\":\"ControlPointFactor\",\"namespace\":\"Syncfusion.Maui.Maps.MapArc\",\"type\":\"Double\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapArc\",\"type\":\"Brush\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Syncfusion.Maui.Maps.MapArc\",\"type\":\"DoubleCollection\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapArcLayer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Arcs\",\"namespace\":\"Syncfusion.Maui.Maps.MapArcLayer\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapCircle\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Center\",\"namespace\":\"Syncfusion.Maui.Maps.MapCircle\",\"type\":\"MapLatLng\"},{\"name\":\"Radius\",\"namespace\":\"Syncfusion.Maui.Maps.MapCircle\",\"type\":\"Double\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Maps.MapCircle\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapCircle\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapCircle\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapCircleLayer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Circles\",\"namespace\":\"Syncfusion.Maui.Maps.MapCircleLayer\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"AnimationEasing\",\"namespace\":\"Syncfusion.Maui.Maps.MapCircleLayer\",\"type\":\"Easing\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.Maps.MapCircleLayer\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapLine\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"From\",\"namespace\":\"Syncfusion.Maui.Maps.MapLine\",\"type\":\"MapLatLng\"},{\"name\":\"To\",\"namespace\":\"Syncfusion.Maui.Maps.MapLine\",\"type\":\"MapLatLng\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapLine\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Syncfusion.Maui.Maps.MapLine\",\"type\":[\"value__\",\"Butt\",\"Round\",\"Square\"]},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapLine\",\"type\":\"Brush\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Syncfusion.Maui.Maps.MapLine\",\"type\":\"DoubleCollection\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapLineLayer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Lines\",\"namespace\":\"Syncfusion.Maui.Maps.MapLineLayer\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"AnimationEasing\",\"namespace\":\"Syncfusion.Maui.Maps.MapLineLayer\",\"type\":\"Easing\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.Maps.MapLineLayer\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapPolygon\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Points\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolygon\",\"type\":\"IList\\u00601\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolygon\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolygon\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolygon\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapPolygonLayer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Polygons\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolygonLayer\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapPolyline\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Points\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolyline\",\"type\":\"IList\\u00601\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolyline\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolyline\",\"type\":[\"value__\",\"Butt\",\"Round\",\"Square\"]},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolyline\",\"type\":\"Brush\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolyline\",\"type\":\"DoubleCollection\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapPolylineLayer\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Polylines\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolylineLayer\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"AnimationEasing\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolylineLayer\",\"type\":\"Easing\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.Maps.MapPolylineLayer\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"MapTooltipSettings\",\"namespace\":\"Syncfusion.Maui.Maps\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Background\",\"namespace\":\"Syncfusion.Maui.Maps.MapTooltipSettings\",\"type\":\"Brush\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Maps.MapTooltipSettings\",\"type\":[\"Zero\"]},{\"name\":\"TextStyle\",\"namespace\":\"Syncfusion.Maui.Maps.MapTooltipSettings\",\"type\":\"MapLabelStyle\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.PdfViewer.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"PdfDocumentView\",\"namespace\":\"Syncfusion.Maui.PdfViewer\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PdfPageContentView\",\"namespace\":\"Syncfusion.Maui.PdfViewer\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Aspect\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":[\"value__\",\"AspectFit\",\"AspectFill\",\"Fill\",\"Center\"]},{\"name\":\"IsLoading\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":\"Boolean\"},{\"name\":\"IsOpaque\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":\"Boolean\"},{\"name\":\"IsAnimationPlaying\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":\"Boolean\"},{\"name\":\"Source\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":\"ImageSource\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"PdfPageView\",\"namespace\":\"Syncfusion.Maui.PdfViewer\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"ScrollHeadView\",\"namespace\":\"Syncfusion.Maui.PdfViewer\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"View\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":[\"Zero\"]},{\"name\":\"StrokeShape\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"IShape\"},{\"name\":\"Stroke\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Double\"},{\"name\":\"StrokeDashArray\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"DoubleCollection\"},{\"name\":\"StrokeDashOffset\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Double\"},{\"name\":\"StrokeLineCap\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":[\"value__\",\"Flat\",\"Square\",\"Round\"]},{\"name\":\"StrokeLineJoin\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":[\"value__\",\"Miter\",\"Bevel\",\"Round\"]},{\"name\":\"StrokeMiterLimit\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Double\"},{\"name\":\"StrokeDashPattern\",\"namespace\":\"Microsoft.Maui.Controls.Border\",\"type\":\"Single[]\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfInteractiveScrollViewExt\",\"namespace\":\"Syncfusion.Maui.PdfViewer\",\"doc\":null,\"attributes\":[{\"name\":\"ZoomChanged\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ZoomStarted\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ZoomEnded\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ScrollChanged\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ZoomLocation\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":[\"value__\",\"Default\",\"Centered\"]},{\"name\":\"ScrollYProportion\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"ScrollXProportion\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"ViewportHeight\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"ViewportWidth\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"MinZoomFactor\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"MaxZoomFactor\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"DoubleTapSettings\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"DoubleTapSettings\"},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"Orientation\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\",\"Both\",\"Neither\"]},{\"name\":\"ExtentSize\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":[]},{\"name\":\"ScrollY\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"ScrollX\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"ZoomFactor\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Double\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"View\"},{\"name\":\"AllowZoom\",\"namespace\":\"Syncfusion.Maui.Core.Internals.SfInteractiveScrollView\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfPdfViewer\",\"namespace\":\"Syncfusion.Maui.PdfViewer\",\"doc\":null,\"attributes\":[{\"name\":\"DocumentUnloaded\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DocumentLoaded\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DocumentLoadFailed\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PasswordRequested\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"DocumentSource\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"Object\"},{\"name\":\"PageCount\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"Int32\"},{\"name\":\"PageNumber\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"Int32\"},{\"name\":\"ZoomFactor\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"Double\"},{\"name\":\"MinZoomFactor\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"Double\"},{\"name\":\"MaxZoomFactor\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"Double\"},{\"name\":\"VerticalOffset\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":[]},{\"name\":\"HorizontalOffset\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":[]},{\"name\":\"ShowScrollHead\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"Boolean\"},{\"name\":\"GoToPageCommand\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"ICommand\"},{\"name\":\"GoToPreviousPageCommand\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"ICommand\"},{\"name\":\"GoToNextPageCommand\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"ICommand\"},{\"name\":\"GoToFirstPageCommand\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"ICommand\"},{\"name\":\"GoToLastPageCommand\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"ICommand\"},{\"name\":\"ScrollToOffsetCommand\",\"namespace\":\"Syncfusion.Maui.PdfViewer.SfPdfViewer\",\"type\":\"ICommand\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.ProgressBar.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"ProgressGradientStop\",\"namespace\":\"Syncfusion.Maui.ProgressBar\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Color\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressGradientStop\",\"type\":\"Color\"},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressGradientStop\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfCircularProgressBar\",\"namespace\":\"Syncfusion.Maui.ProgressBar\",\"doc\":null,\"attributes\":[{\"name\":\"ProgressChanged\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ProgressCompleted\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"StartAngle\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfCircularProgressBar\",\"type\":\"Double\"},{\"name\":\"EndAngle\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfCircularProgressBar\",\"type\":\"Double\"},{\"name\":\"TrackRadiusFactor\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfCircularProgressBar\",\"type\":\"Double\"},{\"name\":\"TrackThickness\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfCircularProgressBar\",\"type\":\"Double\"},{\"name\":\"ThicknessUnit\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfCircularProgressBar\",\"type\":[\"value__\",\"Pixel\",\"Factor\"]},{\"name\":\"ProgressRadiusFactor\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfCircularProgressBar\",\"type\":\"Double\"},{\"name\":\"ProgressThickness\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfCircularProgressBar\",\"type\":\"Double\"},{\"name\":\"TrackCornerStyle\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfCircularProgressBar\",\"type\":[\"value__\",\"BothFlat\",\"BothCurve\",\"EndCurve\",\"StartCurve\"]},{\"name\":\"ProgressCornerStyle\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfCircularProgressBar\",\"type\":[\"value__\",\"BothFlat\",\"BothCurve\",\"EndCurve\",\"StartCurve\"]},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfCircularProgressBar\",\"type\":\"View\"},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"TrackFill\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Brush\"},{\"name\":\"Progress\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"ProgressFill\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Brush\"},{\"name\":\"SegmentCount\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Int32\"},{\"name\":\"SegmentGapWidth\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"IsIndeterminate\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Boolean\"},{\"name\":\"IndeterminateIndicatorWidthFactor\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"IndeterminateAnimationEasing\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Easing\"},{\"name\":\"IndeterminateAnimationDuration\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"AnimationEasing\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Easing\"},{\"name\":\"GradientStops\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfLinearProgressBar\",\"namespace\":\"Syncfusion.Maui.ProgressBar\",\"doc\":null,\"attributes\":[{\"name\":\"ProgressChanged\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ProgressCompleted\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TrackCornerRadius\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfLinearProgressBar\",\"type\":[]},{\"name\":\"TrackHeight\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfLinearProgressBar\",\"type\":\"Double\"},{\"name\":\"ProgressCornerRadius\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfLinearProgressBar\",\"type\":[]},{\"name\":\"ProgressHeight\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfLinearProgressBar\",\"type\":\"Double\"},{\"name\":\"SecondaryProgress\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfLinearProgressBar\",\"type\":\"Double\"},{\"name\":\"SecondaryProgressFill\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfLinearProgressBar\",\"type\":\"Brush\"},{\"name\":\"SecondaryAnimationDuration\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfLinearProgressBar\",\"type\":\"Double\"},{\"name\":\"SecondaryProgressHeight\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfLinearProgressBar\",\"type\":\"Double\"},{\"name\":\"SecondaryProgressCornerRadius\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfLinearProgressBar\",\"type\":[]},{\"name\":\"ProgressPadding\",\"namespace\":\"Syncfusion.Maui.ProgressBar.SfLinearProgressBar\",\"type\":\"Double\"},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"TrackFill\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Brush\"},{\"name\":\"Progress\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"ProgressFill\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Brush\"},{\"name\":\"SegmentCount\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Int32\"},{\"name\":\"SegmentGapWidth\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"IsIndeterminate\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Boolean\"},{\"name\":\"IndeterminateIndicatorWidthFactor\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"IndeterminateAnimationEasing\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Easing\"},{\"name\":\"IndeterminateAnimationDuration\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"AnimationDuration\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Double\"},{\"name\":\"AnimationEasing\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"Easing\"},{\"name\":\"GradientStops\",\"namespace\":\"Syncfusion.Maui.ProgressBar.ProgressBarBase\",\"type\":\"ObservableCollection\\u00601\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.SignaturePad.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"SfSignaturePad\",\"namespace\":\"Syncfusion.Maui.SignaturePad\",\"doc\":null,\"attributes\":[{\"name\":\"DrawStarted\",\"namespace\":\"Syncfusion.Maui.SignaturePad.SfSignaturePad\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DrawCompleted\",\"namespace\":\"Syncfusion.Maui.SignaturePad.SfSignaturePad\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"MinimumStrokeThickness\",\"namespace\":\"Syncfusion.Maui.SignaturePad.SfSignaturePad\",\"type\":\"Double\"},{\"name\":\"MaximumStrokeThickness\",\"namespace\":\"Syncfusion.Maui.SignaturePad.SfSignaturePad\",\"type\":\"Double\"},{\"name\":\"StrokeColor\",\"namespace\":\"Syncfusion.Maui.SignaturePad.SfSignaturePad\",\"type\":\"Color\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.Sliders.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"SliderDrawableView\\u00601\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfDateTimeRangeSelector\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeRangeSelector\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeRangeSelector\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStart\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeEnd\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LabelCreated\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IntervalType\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeRangeSelector\",\"type\":[\"value__\",\"Years\",\"Months\",\"Days\",\"Hours\",\"Minutes\",\"Seconds\",\"Auto\"]},{\"name\":\"StepDuration\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeRangeSelector\",\"type\":[]},{\"name\":\"DateFormat\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeRangeSelector\",\"type\":\"String\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":\"View\"},{\"name\":\"ActiveRegionFill\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":\"Brush\"},{\"name\":\"InactiveRegionFill\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":\"Brush\"},{\"name\":\"ActiveRegionStroke\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":\"Brush\"},{\"name\":\"InactiveRegionStroke\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":\"Brush\"},{\"name\":\"ActiveRegionStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":[\"Zero\"]},{\"name\":\"InactiveRegionStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":[\"Zero\"]},{\"name\":\"RangeStart\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"RangeEnd\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"StartThumbIcon\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"View\"},{\"name\":\"EndThumbIcon\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"View\"},{\"name\":\"DragBehavior\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":[\"value__\",\"OnThumb\",\"BetweenThumbs\",\"Both\"]},{\"name\":\"EnableIntervalSelection\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"Boolean\"},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"Interval\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"MinorTicksPerInterval\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Int32\"},{\"name\":\"ShowDividers\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"ShowTicks\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"ShowLabels\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"IsInversed\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"TrackExtent\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"LabelsPlacement\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"value__\",\"OnTicks\",\"BetweenTicks\"]},{\"name\":\"EdgeLabelsPlacement\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"value__\",\"Default\",\"Inside\"]},{\"name\":\"EnableDeferredUpdate\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"DeferredUpdateDelay\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Int32\"},{\"name\":\"TrackStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTrackStyle\"},{\"name\":\"ThumbStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderThumbStyle\"},{\"name\":\"ThumbOverlayStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderThumbOverlayStyle\"},{\"name\":\"DividerStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderDividerStyle\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTickStyle\"},{\"name\":\"MinorTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTickStyle\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderLabelStyle\"},{\"name\":\"Tooltip\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTooltip\"},{\"name\":\"DragStartedCommand\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"ICommand\"},{\"name\":\"DragStartedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Object\"},{\"name\":\"DragCompletedCommand\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"ICommand\"},{\"name\":\"DragCompletedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Object\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfDateTimeRangeSlider\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeRangeSlider\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeRangeSlider\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStart\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeEnd\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LabelCreated\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Orientation\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeRangeSlider\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"IntervalType\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeRangeSlider\",\"type\":[\"value__\",\"Years\",\"Months\",\"Days\",\"Hours\",\"Minutes\",\"Seconds\",\"Auto\"]},{\"name\":\"StepDuration\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeRangeSlider\",\"type\":[]},{\"name\":\"DateFormat\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeRangeSlider\",\"type\":\"String\"},{\"name\":\"RangeStart\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"RangeEnd\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"StartThumbIcon\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"View\"},{\"name\":\"EndThumbIcon\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"View\"},{\"name\":\"DragBehavior\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":[\"value__\",\"OnThumb\",\"BetweenThumbs\",\"Both\"]},{\"name\":\"EnableIntervalSelection\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"Boolean\"},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"Interval\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"MinorTicksPerInterval\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Int32\"},{\"name\":\"ShowDividers\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"ShowTicks\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"ShowLabels\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"IsInversed\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"TrackExtent\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"LabelsPlacement\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"value__\",\"OnTicks\",\"BetweenTicks\"]},{\"name\":\"EdgeLabelsPlacement\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"value__\",\"Default\",\"Inside\"]},{\"name\":\"EnableDeferredUpdate\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"DeferredUpdateDelay\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Int32\"},{\"name\":\"TrackStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTrackStyle\"},{\"name\":\"ThumbStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderThumbStyle\"},{\"name\":\"ThumbOverlayStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderThumbOverlayStyle\"},{\"name\":\"DividerStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderDividerStyle\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTickStyle\"},{\"name\":\"MinorTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTickStyle\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderLabelStyle\"},{\"name\":\"Tooltip\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTooltip\"},{\"name\":\"DragStartedCommand\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"ICommand\"},{\"name\":\"DragStartedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Object\"},{\"name\":\"DragCompletedCommand\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"ICommand\"},{\"name\":\"DragCompletedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Object\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfDateTimeSlider\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeSlider\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeSlider\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStart\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeEnd\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LabelCreated\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IntervalType\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeSlider\",\"type\":[\"value__\",\"Years\",\"Months\",\"Days\",\"Hours\",\"Minutes\",\"Seconds\",\"Auto\"]},{\"name\":\"StepDuration\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeSlider\",\"type\":[]},{\"name\":\"DateFormat\",\"namespace\":\"Syncfusion.Maui.Sliders.SfDateTimeSlider\",\"type\":\"String\"},{\"name\":\"Orientation\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderBase\\u00601\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderBase\\u00601\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"ThumbIcon\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderBase\\u00601\",\"type\":\"View\"},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"MinValue\",\"MaxValue\",\"UnixEpoch\"]},{\"name\":\"Interval\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"MinorTicksPerInterval\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Int32\"},{\"name\":\"ShowDividers\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"ShowTicks\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"ShowLabels\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"IsInversed\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"TrackExtent\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"LabelsPlacement\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"value__\",\"OnTicks\",\"BetweenTicks\"]},{\"name\":\"EdgeLabelsPlacement\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"value__\",\"Default\",\"Inside\"]},{\"name\":\"EnableDeferredUpdate\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"DeferredUpdateDelay\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Int32\"},{\"name\":\"TrackStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTrackStyle\"},{\"name\":\"ThumbStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderThumbStyle\"},{\"name\":\"ThumbOverlayStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderThumbOverlayStyle\"},{\"name\":\"DividerStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderDividerStyle\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTickStyle\"},{\"name\":\"MinorTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTickStyle\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderLabelStyle\"},{\"name\":\"Tooltip\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTooltip\"},{\"name\":\"DragStartedCommand\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"ICommand\"},{\"name\":\"DragStartedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Object\"},{\"name\":\"DragCompletedCommand\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"ICommand\"},{\"name\":\"DragCompletedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Object\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfRangeSelector\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Sliders.SfRangeSelector\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Sliders.SfRangeSelector\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStart\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeEnd\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LabelCreated\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"NumberFormat\",\"namespace\":\"Syncfusion.Maui.Sliders.SfRangeSelector\",\"type\":\"String\"},{\"name\":\"StepSize\",\"namespace\":\"Syncfusion.Maui.Sliders.SfRangeSelector\",\"type\":\"Double\"},{\"name\":\"Content\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":\"View\"},{\"name\":\"ActiveRegionFill\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":\"Brush\"},{\"name\":\"InactiveRegionFill\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":\"Brush\"},{\"name\":\"ActiveRegionStroke\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":\"Brush\"},{\"name\":\"InactiveRegionStroke\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":\"Brush\"},{\"name\":\"ActiveRegionStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":[\"Zero\"]},{\"name\":\"InactiveRegionStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSelectorBase\\u00601\",\"type\":[\"Zero\"]},{\"name\":\"RangeStart\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"Double\"},{\"name\":\"RangeEnd\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"Double\"},{\"name\":\"StartThumbIcon\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"View\"},{\"name\":\"EndThumbIcon\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"View\"},{\"name\":\"DragBehavior\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":[\"value__\",\"OnThumb\",\"BetweenThumbs\",\"Both\"]},{\"name\":\"EnableIntervalSelection\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"Boolean\"},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"Interval\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"MinorTicksPerInterval\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Int32\"},{\"name\":\"ShowDividers\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"ShowTicks\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"ShowLabels\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"IsInversed\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"TrackExtent\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"LabelsPlacement\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"value__\",\"OnTicks\",\"BetweenTicks\"]},{\"name\":\"EdgeLabelsPlacement\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"value__\",\"Default\",\"Inside\"]},{\"name\":\"EnableDeferredUpdate\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"DeferredUpdateDelay\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Int32\"},{\"name\":\"TrackStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTrackStyle\"},{\"name\":\"ThumbStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderThumbStyle\"},{\"name\":\"ThumbOverlayStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderThumbOverlayStyle\"},{\"name\":\"DividerStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderDividerStyle\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTickStyle\"},{\"name\":\"MinorTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTickStyle\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderLabelStyle\"},{\"name\":\"Tooltip\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTooltip\"},{\"name\":\"DragStartedCommand\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"ICommand\"},{\"name\":\"DragStartedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Object\"},{\"name\":\"DragCompletedCommand\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"ICommand\"},{\"name\":\"DragCompletedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Object\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfRangeSlider\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Sliders.SfRangeSlider\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Sliders.SfRangeSlider\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStart\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeEnd\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LabelCreated\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Orientation\",\"namespace\":\"Syncfusion.Maui.Sliders.SfRangeSlider\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"NumberFormat\",\"namespace\":\"Syncfusion.Maui.Sliders.SfRangeSlider\",\"type\":\"String\"},{\"name\":\"StepSize\",\"namespace\":\"Syncfusion.Maui.Sliders.SfRangeSlider\",\"type\":\"Double\"},{\"name\":\"RangeStart\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"Double\"},{\"name\":\"RangeEnd\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"Double\"},{\"name\":\"StartThumbIcon\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"View\"},{\"name\":\"EndThumbIcon\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"View\"},{\"name\":\"DragBehavior\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":[\"value__\",\"OnThumb\",\"BetweenThumbs\",\"Both\"]},{\"name\":\"EnableIntervalSelection\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeSliderBase\\u00601\",\"type\":\"Boolean\"},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"Interval\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"MinorTicksPerInterval\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Int32\"},{\"name\":\"ShowDividers\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"ShowTicks\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"ShowLabels\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"IsInversed\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"TrackExtent\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"LabelsPlacement\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"value__\",\"OnTicks\",\"BetweenTicks\"]},{\"name\":\"EdgeLabelsPlacement\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"value__\",\"Default\",\"Inside\"]},{\"name\":\"EnableDeferredUpdate\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"DeferredUpdateDelay\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Int32\"},{\"name\":\"TrackStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTrackStyle\"},{\"name\":\"ThumbStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderThumbStyle\"},{\"name\":\"ThumbOverlayStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderThumbOverlayStyle\"},{\"name\":\"DividerStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderDividerStyle\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTickStyle\"},{\"name\":\"MinorTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTickStyle\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderLabelStyle\"},{\"name\":\"Tooltip\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTooltip\"},{\"name\":\"DragStartedCommand\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"ICommand\"},{\"name\":\"DragStartedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Object\"},{\"name\":\"DragCompletedCommand\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"ICommand\"},{\"name\":\"DragCompletedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Object\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfSlider\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"ValueChanging\",\"namespace\":\"Syncfusion.Maui.Sliders.SfSlider\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChanged\",\"namespace\":\"Syncfusion.Maui.Sliders.SfSlider\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeStart\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ValueChangeEnd\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LabelCreated\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"NumberFormat\",\"namespace\":\"Syncfusion.Maui.Sliders.SfSlider\",\"type\":\"String\"},{\"name\":\"StepSize\",\"namespace\":\"Syncfusion.Maui.Sliders.SfSlider\",\"type\":\"Double\"},{\"name\":\"Orientation\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderBase\\u00601\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"Value\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderBase\\u00601\",\"type\":\"Double\"},{\"name\":\"ThumbIcon\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderBase\\u00601\",\"type\":\"View\"},{\"name\":\"Minimum\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"Maximum\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"Interval\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"MinorTicksPerInterval\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Int32\"},{\"name\":\"ShowDividers\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"ShowTicks\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"ShowLabels\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"IsInversed\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"TrackExtent\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Double\"},{\"name\":\"LabelsPlacement\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"value__\",\"OnTicks\",\"BetweenTicks\"]},{\"name\":\"EdgeLabelsPlacement\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":[\"value__\",\"Default\",\"Inside\"]},{\"name\":\"EnableDeferredUpdate\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Boolean\"},{\"name\":\"DeferredUpdateDelay\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Int32\"},{\"name\":\"TrackStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTrackStyle\"},{\"name\":\"ThumbStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderThumbStyle\"},{\"name\":\"ThumbOverlayStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderThumbOverlayStyle\"},{\"name\":\"DividerStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderDividerStyle\"},{\"name\":\"MajorTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTickStyle\"},{\"name\":\"MinorTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTickStyle\"},{\"name\":\"LabelStyle\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderLabelStyle\"},{\"name\":\"Tooltip\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"SliderTooltip\"},{\"name\":\"DragStartedCommand\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"ICommand\"},{\"name\":\"DragStartedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Object\"},{\"name\":\"DragCompletedCommand\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"ICommand\"},{\"name\":\"DragCompletedCommandParameter\",\"namespace\":\"Syncfusion.Maui.Sliders.RangeView\\u00601\",\"type\":\"Object\"},{\"name\":\"Children\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"IList\\u00601\"},{\"name\":\"ClipToBounds\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Core.SfView\",\"type\":[\"Zero\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SliderDividerStyle\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ActiveRadius\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderDividerStyle\",\"type\":\"Double\"},{\"name\":\"InactiveRadius\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderDividerStyle\",\"type\":\"Double\"},{\"name\":\"ActiveFill\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderDividerStyle\",\"type\":\"Brush\"},{\"name\":\"InactiveFill\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderDividerStyle\",\"type\":\"Brush\"},{\"name\":\"ActiveStroke\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderDividerStyle\",\"type\":\"Brush\"},{\"name\":\"InactiveStroke\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderDividerStyle\",\"type\":\"Brush\"},{\"name\":\"ActiveStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderDividerStyle\",\"type\":\"Double\"},{\"name\":\"InactiveStrokeThickness\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderDividerStyle\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"LabelPaint\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SliderLabelStyle\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ActiveTextColor\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderLabelStyle\",\"type\":\"Color\"},{\"name\":\"InactiveTextColor\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderLabelStyle\",\"type\":\"Color\"},{\"name\":\"ActiveFontSize\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderLabelStyle\",\"type\":\"Double\"},{\"name\":\"InactiveFontSize\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderLabelStyle\",\"type\":\"Double\"},{\"name\":\"ActiveFontFamily\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderLabelStyle\",\"type\":\"String\"},{\"name\":\"InactiveFontFamily\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderLabelStyle\",\"type\":\"String\"},{\"name\":\"ActiveFontAttributes\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderLabelStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"InactiveFontAttributes\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderLabelStyle\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"Offset\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderLabelStyle\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SliderThumbOverlayStyle\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Radius\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderThumbOverlayStyle\",\"type\":\"Double\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderThumbOverlayStyle\",\"type\":\"Brush\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SliderThumbStyle\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Radius\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderThumbStyle\",\"type\":\"Double\"},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderThumbStyle\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderThumbStyle\",\"type\":\"Brush\"},{\"name\":\"OverlapStroke\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderThumbStyle\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderThumbStyle\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SliderTickStyle\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ActiveSize\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTickStyle\",\"type\":[\"Zero\"]},{\"name\":\"InactiveSize\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTickStyle\",\"type\":[\"Zero\"]},{\"name\":\"ActiveFill\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTickStyle\",\"type\":\"Brush\"},{\"name\":\"InactiveFill\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTickStyle\",\"type\":\"Brush\"},{\"name\":\"Offset\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTickStyle\",\"type\":\"Double\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SliderTooltip\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"TooltipLabelCreated\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Fill\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":\"Brush\"},{\"name\":\"Stroke\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":\"Brush\"},{\"name\":\"StrokeThickness\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":\"Double\"},{\"name\":\"Padding\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":[\"Zero\"]},{\"name\":\"Position\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":[\"value__\",\"Auto\",\"Right\",\"Left\"]},{\"name\":\"ShowAlways\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":\"Boolean\"},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":\"Double\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":\"Color\"},{\"name\":\"NumberFormat\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":\"String\"},{\"name\":\"DateFormat\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTooltip\",\"type\":\"String\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SliderTrackStyle\",\"namespace\":\"Syncfusion.Maui.Sliders\",\"doc\":null,\"attributes\":[{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ActiveSize\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTrackStyle\",\"type\":\"Double\"},{\"name\":\"InactiveSize\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTrackStyle\",\"type\":\"Double\"},{\"name\":\"ActiveFill\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTrackStyle\",\"type\":\"Brush\"},{\"name\":\"InactiveFill\",\"namespace\":\"Syncfusion.Maui.Sliders.SliderTrackStyle\",\"type\":\"Brush\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/Syncfusion.Maui.TabView.json",
    "content": "{\"xmlns\":\"http://schemas.syncfusion.com/maui\",\"types\":[{\"name\":\"SfHorizontalContent\",\"namespace\":\"Syncfusion.Maui.TabView\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Items\",\"namespace\":\"Syncfusion.Maui.TabView.SfHorizontalContent\",\"type\":\"TabItemCollection\"},{\"name\":\"SelectedIndex\",\"namespace\":\"Syncfusion.Maui.TabView.SfHorizontalContent\",\"type\":\"Double\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfTabBar\",\"namespace\":\"Syncfusion.Maui.TabView\",\"doc\":null,\"attributes\":[{\"name\":\"SelectionChanged\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabBar\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"TabItemTapped\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabBar\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IndicatorPlacement\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabBar\",\"type\":[\"value__\",\"Bottom\",\"Fill\",\"Top\"]},{\"name\":\"TabWidthMode\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabBar\",\"type\":[\"value__\",\"Default\",\"SizeToContent\"]},{\"name\":\"IndicatorBackground\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabBar\",\"type\":\"Brush\"},{\"name\":\"Items\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabBar\",\"type\":\"TabItemCollection\"},{\"name\":\"SelectedIndex\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabBar\",\"type\":\"Double\"},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.StackLayout\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"Spacing\",\"namespace\":\"Microsoft.Maui.Controls.StackBase\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfTabItem\",\"namespace\":\"Syncfusion.Maui.TabView\",\"doc\":null,\"attributes\":[{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Header\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabItem\",\"type\":\"String\"},{\"name\":\"FontFamily\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabItem\",\"type\":\"String\"},{\"name\":\"FontAttributes\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabItem\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"FontSize\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabItem\",\"type\":\"Double\"},{\"name\":\"TextColor\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabItem\",\"type\":\"Color\"},{\"name\":\"ImageSource\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabItem\",\"type\":\"ImageSource\"},{\"name\":\"ImagePosition\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabItem\",\"type\":[\"value__\",\"Bottom\",\"Left\",\"Right\",\"Top\"]},{\"name\":\"BadgeText\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabItem\",\"type\":\"String\"},{\"name\":\"BadgeSettings\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabItem\",\"type\":\"BadgeSettings\"},{\"name\":\"ImageTextSpacing\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabItem\",\"type\":\"Double\"},{\"name\":\"IsSelected\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabItem\",\"type\":\"Boolean\"},{\"name\":\"Font\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabItem\",\"type\":[]},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfTabView\",\"namespace\":\"Syncfusion.Maui.TabView\",\"doc\":null,\"attributes\":[{\"name\":\"SelectionChanged\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"TabItemTapped\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TabBarBackground\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":\"Brush\"},{\"name\":\"TabBarPlacement\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":[\"value__\",\"Bottom\",\"Top\"]},{\"name\":\"IndicatorPlacement\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":[\"value__\",\"Bottom\",\"Fill\",\"Top\"]},{\"name\":\"TabWidthMode\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":[\"value__\",\"Default\",\"SizeToContent\"]},{\"name\":\"IndicatorBackground\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":\"Brush\"},{\"name\":\"TabBarHeight\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":\"Double\"},{\"name\":\"Items\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":\"TabItemCollection\"},{\"name\":\"SelectedIndex\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":\"Double\"},{\"name\":\"ItemsSource\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":\"IList\"},{\"name\":\"HeaderItemTemplate\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":\"DataTemplate\"},{\"name\":\"ContentItemTemplate\",\"namespace\":\"Syncfusion.Maui.TabView.SfTabView\",\"type\":\"DataTemplate\"},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ContentView\",\"type\":\"View\"},{\"name\":\"ControlTemplate\",\"namespace\":\"Microsoft.Maui.Controls.TemplatedView\",\"type\":\"ControlTemplate\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"TabViewMaterialVisualStyle\",\"namespace\":\"Syncfusion.Maui.TabView\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HeaderDisplayMode\",\"namespace\":\"Syncfusion.Maui.TabView.TabViewMaterialVisualStyle\",\"type\":[\"value__\",\"ImageOnly\",\"TextOnly\",\"TextAndImage\"]},{\"name\":\"ImagePosition\",\"namespace\":\"Syncfusion.Maui.TabView.TabViewMaterialVisualStyle\",\"type\":[\"value__\",\"Bottom\",\"Left\",\"Right\",\"Top\"]},{\"name\":\"BadgeSettings\",\"namespace\":\"Syncfusion.Maui.TabView.TabViewMaterialVisualStyle\",\"type\":\"BadgeSettings\"},{\"name\":\"BadgeText\",\"namespace\":\"Syncfusion.Maui.TabView.TabViewMaterialVisualStyle\",\"type\":\"String\"},{\"name\":\"ColumnDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"ColumnDefinitionCollection\"},{\"name\":\"RowDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"RowDefinitionCollection\"},{\"name\":\"RowSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Double\"},{\"name\":\"ColumnSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Column\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"ColumnSpan\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"Row\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"RowSpan\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true}]},{\"name\":\"SfStackLayout\",\"namespace\":\"Syncfusion.Maui.TabView.Helper\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.StackLayout\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\"]},{\"name\":\"Spacing\",\"namespace\":\"Microsoft.Maui.Controls.StackBase\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfHorizontalStackLayout\",\"namespace\":\"Syncfusion.Maui.TabView.Helper\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Spacing\",\"namespace\":\"Microsoft.Maui.Controls.StackBase\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfGrid\",\"namespace\":\"Syncfusion.Maui.TabView.Helper\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ColumnDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"ColumnDefinitionCollection\"},{\"name\":\"RowDefinitions\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"RowDefinitionCollection\"},{\"name\":\"RowSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Double\"},{\"name\":\"ColumnSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"},{\"name\":\"Column\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"ColumnSpan\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"Row\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true},{\"name\":\"RowSpan\",\"namespace\":\"Microsoft.Maui.Controls.Grid\",\"type\":\"Int32\",\"isAttached\":true}]},{\"name\":\"SfScrollView\",\"namespace\":\"Syncfusion.Maui.TabView.Helper\",\"doc\":null,\"attributes\":[{\"name\":\"ScrollToRequested\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Scrolled\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"LayoutChanged\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"LayoutAreaOverride\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"Zero\"]},{\"name\":\"Content\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"View\"},{\"name\":\"ContentSize\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"Zero\"]},{\"name\":\"Orientation\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Vertical\",\"Horizontal\",\"Both\",\"Neither\"]},{\"name\":\"ScrollX\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"Double\"},{\"name\":\"ScrollY\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":\"Double\"},{\"name\":\"HorizontalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"VerticalScrollBarVisibility\",\"namespace\":\"Microsoft.Maui.Controls.ScrollView\",\"type\":[\"value__\",\"Default\",\"Always\",\"Never\"]},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":[\"Zero\"]},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"Boolean\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Compatibility.Layout\",\"type\":\"IReadOnlyList\\u00601\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfLabel\",\"namespace\":\"Syncfusion.Maui.TabView.Helper\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"TextTransform\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"None\",\"Default\",\"Lowercase\",\"Uppercase\"]},{\"name\":\"FormattedText\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"FormattedString\"},{\"name\":\"HorizontalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"LineBreakMode\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"NoWrap\",\"WordWrap\",\"CharacterWrap\",\"HeadTruncation\",\"TailTruncation\",\"MiddleTruncation\"]},{\"name\":\"Text\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"String\"},{\"name\":\"TextColor\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Color\"},{\"name\":\"CharacterSpacing\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Double\"},{\"name\":\"VerticalTextAlignment\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"Start\",\"Center\",\"End\"]},{\"name\":\"FontAttributes\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"None\",\"Bold\",\"Italic\"]},{\"name\":\"TextDecorations\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"None\",\"Underline\",\"Strikethrough\"]},{\"name\":\"FontFamily\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"String\"},{\"name\":\"FontSize\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Double\"},{\"name\":\"FontAutoScalingEnabled\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Boolean\"},{\"name\":\"LineHeight\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Double\"},{\"name\":\"MaxLines\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":\"Int32\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"Zero\"]},{\"name\":\"TextType\",\"namespace\":\"Microsoft.Maui.Controls.Label\",\"type\":[\"value__\",\"Text\",\"Html\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfImage\",\"namespace\":\"Syncfusion.Maui.TabView.Helper\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Aspect\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":[\"value__\",\"AspectFit\",\"AspectFill\",\"Fill\",\"Center\"]},{\"name\":\"IsLoading\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":\"Boolean\"},{\"name\":\"IsOpaque\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":\"Boolean\"},{\"name\":\"IsAnimationPlaying\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":\"Boolean\"},{\"name\":\"Source\",\"namespace\":\"Microsoft.Maui.Controls.Image\",\"type\":\"ImageSource\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"SfVerticalStackLayout\",\"namespace\":\"Syncfusion.Maui.TabView.Helper\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Spacing\",\"namespace\":\"Microsoft.Maui.Controls.StackBase\",\"type\":\"Double\"},{\"name\":\"Children\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IList\\u00601\"},{\"name\":\"Count\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Int32\"},{\"name\":\"IsReadOnly\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Item\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"IView\"},{\"name\":\"IsClippedToBounds\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"Padding\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":[\"Zero\"]},{\"name\":\"IgnoreSafeArea\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"CascadeInputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.Layout\",\"type\":\"Boolean\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.meteor/generated/ZXing.Net.MAUI.Controls.json",
    "content": "{\"xmlns\":\"assembly=ZXing.Net.MAUI.Controls\",\"types\":[{\"name\":\"BarcodeGeneratorView\",\"namespace\":\"ZXing.Net.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Format\",\"namespace\":\"ZXing.Net.Maui.Controls.BarcodeGeneratorView\",\"type\":[\"value__\",\"Aztec\",\"Codabar\",\"Code39\",\"Code93\",\"Code128\",\"DataMatrix\",\"Ean8\",\"Ean13\",\"Itf\",\"MaxiCode\",\"Pdf417\",\"QrCode\",\"Rss14\",\"RssExpanded\",\"UpcA\",\"UpcE\",\"UpcEanExtension\",\"Msi\",\"Plessey\",\"Imb\",\"PharmaCode\"]},{\"name\":\"Value\",\"namespace\":\"ZXing.Net.Maui.Controls.BarcodeGeneratorView\",\"type\":\"String\"},{\"name\":\"ForegroundColor\",\"namespace\":\"ZXing.Net.Maui.Controls.BarcodeGeneratorView\",\"type\":\"Color\"},{\"name\":\"BackgroundColor\",\"namespace\":\"ZXing.Net.Maui.Controls.BarcodeGeneratorView\",\"type\":\"Color\"},{\"name\":\"BarcodeMargin\",\"namespace\":\"ZXing.Net.Maui.Controls.BarcodeGeneratorView\",\"type\":\"Int32\"},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CameraBarcodeReaderView\",\"namespace\":\"ZXing.Net.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"BarcodesDetected\",\"namespace\":\"ZXing.Net.Maui.Controls.CameraBarcodeReaderView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FrameReady\",\"namespace\":\"ZXing.Net.Maui.Controls.CameraBarcodeReaderView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Options\",\"namespace\":\"ZXing.Net.Maui.Controls.CameraBarcodeReaderView\",\"type\":\"BarcodeReaderOptions\"},{\"name\":\"IsDetecting\",\"namespace\":\"ZXing.Net.Maui.Controls.CameraBarcodeReaderView\",\"type\":\"Boolean\"},{\"name\":\"IsTorchOn\",\"namespace\":\"ZXing.Net.Maui.Controls.CameraBarcodeReaderView\",\"type\":\"Boolean\"},{\"name\":\"CameraLocation\",\"namespace\":\"ZXing.Net.Maui.Controls.CameraBarcodeReaderView\",\"type\":[\"value__\",\"Rear\",\"Front\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]},{\"name\":\"CameraView\",\"namespace\":\"ZXing.Net.Maui.Controls\",\"doc\":null,\"attributes\":[{\"name\":\"FrameReady\",\"namespace\":\"ZXing.Net.Maui.Controls.CameraView\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"Loaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unloaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"ChildrenReordered\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Focused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"MeasureInvalidated\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"SizeChanged\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"Unfocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"BatchCommitted\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"FocusChangeRequested\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ChildRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantAdded\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"DescendantRemoved\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"ParentChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"HandlerChanging\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\\u00601\",\"isEvent\":true},{\"name\":\"HandlerChanged\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangedEventHandler\",\"isEvent\":true},{\"name\":\"PropertyChanging\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"PropertyChangingEventHandler\",\"isEvent\":true},{\"name\":\"BindingContextChanged\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"EventHandler\",\"isEvent\":true},{\"name\":\"IsTorchOn\",\"namespace\":\"ZXing.Net.Maui.Controls.CameraView\",\"type\":\"Boolean\"},{\"name\":\"CameraLocation\",\"namespace\":\"ZXing.Net.Maui.Controls.CameraView\",\"type\":[\"value__\",\"Rear\",\"Front\"]},{\"name\":\"GestureRecognizers\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":\"IList\\u00601\"},{\"name\":\"HorizontalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Margin\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Zero\"]},{\"name\":\"VerticalOptions\",\"namespace\":\"Microsoft.Maui.Controls.View\",\"type\":[\"Start\",\"Center\",\"End\",\"Fill\",\"StartAndExpand\",\"CenterAndExpand\",\"EndAndExpand\",\"FillAndExpand\"]},{\"name\":\"Frame\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IViewHandler\"},{\"name\":\"Shadow\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Shadow\"},{\"name\":\"ZIndex\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Int32\"},{\"name\":\"DesiredSize\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"IsLoaded\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Visual\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IVisual\"},{\"name\":\"FlowDirection\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"value__\",\"MatchParent\",\"LeftToRight\",\"RightToLeft\"]},{\"name\":\"Window\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Window\"},{\"name\":\"AnchorX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"AnchorY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"BackgroundColor\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Color\"},{\"name\":\"Background\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Brush\"},{\"name\":\"Behaviors\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Bounds\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":[\"Zero\"]},{\"name\":\"Height\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"HeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"InputTransparent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsFocused\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsVisible\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"MinimumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MinimumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumHeightRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"MaximumWidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Opacity\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Rotation\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"RotationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Scale\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"ScaleY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationX\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"TranslationY\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Triggers\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"IList\\u00601\"},{\"name\":\"Width\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"WidthRequest\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"X\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Y\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Double\"},{\"name\":\"Clip\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Geometry\"},{\"name\":\"Batched\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"DisableLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsInPlatformLayout\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformStateConsistent\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"IsPlatformEnabled\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"Boolean\"},{\"name\":\"Resources\",\"namespace\":\"Microsoft.Maui.Controls.VisualElement\",\"type\":\"ResourceDictionary\"},{\"name\":\"Navigation\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"INavigation\"},{\"name\":\"Style\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"Style\"},{\"name\":\"StyleClass\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"class\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"IList\\u00601\"},{\"name\":\"NavigationProxy\",\"namespace\":\"Microsoft.Maui.Controls.NavigableElement\",\"type\":\"NavigationProxy\"},{\"name\":\"AutomationId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"ClassId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"Effects\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IList\\u00601\"},{\"name\":\"Id\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":[\"Empty\"]},{\"name\":\"StyleId\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"String\"},{\"name\":\"LogicalChildren\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"ReadOnlyCollection\\u00601\"},{\"name\":\"RealParent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"Parent\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"Element\"},{\"name\":\"EffectControlProvider\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IEffectControlProvider\"},{\"name\":\"Handler\",\"namespace\":\"Microsoft.Maui.Controls.Element\",\"type\":\"IElementHandler\"},{\"name\":\"Dispatcher\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"IDispatcher\"},{\"name\":\"BindingContext\",\"namespace\":\"Microsoft.Maui.Controls.BindableObject\",\"type\":\"Object\"}]}],\"timestamp\":\"17/04/2023 10:40:26 CH\",\"target\":\"c:\\\\Users\\\\Strypper\\\\source\\\\repos\\\\mauisland\\\\src\\\\bin\\\\Debug\\\\net7.0-windows10.0.19041.0\\\\win10-x64\"}\n"
  },
  {
    "path": "src/Presentations/Windows/.vscode/launch.json",
    "content": "{\n    \"version\": \"0.2.0\",\n    \"configurations\": [\n        {\n            // Use IntelliSense to find out which attributes exist for C# debugging\n            // Use hover for the description of the existing attributes\n            // For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md\n            \"name\": \".NET Core Launch (console)\",\n            \"type\": \"coreclr\",\n            \"request\": \"launch\",\n            \"preLaunchTask\": \"build\",\n            // If you have changed target frameworks, make sure to update the program path.\n            \"program\": \"${workspaceFolder}/bin/Debug/net9.0-windows10.0.19041.0/win10-x64/MAUIsland.dll\",\n            \"args\": [],\n            \"cwd\": \"${workspaceFolder}\",\n            // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console\n            \"console\": \"internalConsole\",\n            \"stopAtEntry\": false\n        },\n        {\n            \"name\": \".NET Core Attach\",\n            \"type\": \"coreclr\",\n            \"request\": \"attach\"\n        }\n    ]\n}"
  },
  {
    "path": "src/Presentations/Windows/.vscode/tasks.json",
    "content": "{\n    \"version\": \"2.0.0\",\n    \"tasks\": [\n        {\n            \"label\": \"build\",\n            \"command\": \"dotnet\",\n            \"type\": \"process\",\n            \"args\": [\n                \"build\",\n                \"${workspaceFolder}/Windows.sln\",\n                \"/property:GenerateFullPaths=true\",\n                \"/consoleloggerparameters:NoSummary;ForceNoAlign\"\n            ],\n            \"problemMatcher\": \"$msCompile\"\n        },\n        {\n            \"label\": \"publish\",\n            \"command\": \"dotnet\",\n            \"type\": \"process\",\n            \"args\": [\n                \"publish\",\n                \"${workspaceFolder}/Windows.sln\",\n                \"/property:GenerateFullPaths=true\",\n                \"/consoleloggerparameters:NoSummary;ForceNoAlign\"\n            ],\n            \"problemMatcher\": \"$msCompile\"\n        },\n        {\n            \"label\": \"watch\",\n            \"command\": \"dotnet\",\n            \"type\": \"process\",\n            \"args\": [\n                \"watch\",\n                \"run\",\n                \"--project\",\n                \"${workspaceFolder}/Windows.sln\"\n            ],\n            \"problemMatcher\": \"$msCompile\"\n        }\n    ]\n}"
  },
  {
    "path": "src/Presentations/Windows/App.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<Application\n    x:Class=\"MAUIsland.App\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:local=\"clr-namespace:MAUIsland\"\n    xmlns:mds=\"clr-namespace:Material.Components.Maui.Styles;assembly=Material.Components.Maui\">\n    <Application.Resources>\n        <ResourceDictionary>\n            <ResourceDictionary.MergedDictionaries>\n                <mds:MaterialStyles />\n                <ResourceDictionary Source=\"Resources/Styles/Colors.xaml\" />\n                <ResourceDictionary Source=\"Resources/Styles/Styles.xaml\" />\n\n                <ResourceDictionary Source=\"Features/Chat/Styles/ChatStyles.xaml\" />\n                <ResourceDictionary Source=\"Features/Gallery/Styles/GalleryStyles.xaml\" />\n            </ResourceDictionary.MergedDictionaries>\n        </ResourceDictionary>\n    </Application.Resources>\n</Application>\n"
  },
  {
    "path": "src/Presentations/Windows/App.xaml.cs",
    "content": "﻿using MAUIsland.Settings;\n\nnamespace MAUIsland;\n\npublic partial class App : Application\n{\n    public App()\n    {\n        InitializeComponent();\n    }\n\n    protected override Window CreateWindow(IActivationState? activationState)\n    {\n        SettingsPageViewModel settingsPageViewModel = ServiceHelper.GetService<SettingsPageViewModel>(); \n        return new MAUIslandWindow(settingsPageViewModel);\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/AppRoutes.cs",
    "content": "﻿namespace MAUIsland;\n\npublic static class AppRoutes\n{\n    public const string HomePage = \"homePage\";\n    public const string GalleryPage = \"galleryPage\";\n    public const string ShowcasesPage = \"showcasesPage\";\n    public const string ChatPage = \"chatPage\";\n    public const string SignUp = \"signUp\";\n    public const string SettingsPage = \"settingsPage\";\n    public const string MockupPage = \"mockupPage\";\n    public const string CardsByGroupPage = \"cardsByGroupPage\";\n    public const string ResumesPage = \"resumesPage\";\n    public const string ResumeDetailPage = \"resumeDetailPage\";\n}\n"
  },
  {
    "path": "src/Presentations/Windows/AppSettings/AppSettings.cs",
    "content": "﻿namespace MAUIsland;\n\npublic class AppSettings\n{\n    public string SyncfusionKey { get; set; }\n    public string DiscordApplicationId { get; set; }\n    public string GitHubAccessToken { get; set; }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/AppShell.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<Shell\n    x:Class=\"MAUIsland.AppShell\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:home=\"clr-namespace:MAUIsland.Home\"\n    xmlns:settings=\"clr-namespace:MAUIsland.Settings\"\n    xmlns:showcases=\"clr-namespace:MAUIsland.Showcases\"\n    xmlns:skia=\"clr-namespace:SkiaSharp.Extended.UI.Controls;assembly=SkiaSharp.Extended.UI\"\n    Shell.FlyoutBehavior=\"Disabled\">\n    <Shell.Resources>\n        <FontImageSource\n            x:Key=\"HomeIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_home_20_regular}\"\n            Color=\"{AppThemeBinding Light='#d3724c',\n                                    Dark='#eaeaea'}\" />\n        <FontImageSource\n            x:Key=\"ChatIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_chat_20_regular}\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n\n        <FontImageSource\n            x:Key=\"CodeIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_code_circle_20_regular}\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n\n        <FontImageSource\n            x:Key=\"ShowcasesIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_star_emphasis_20_regular}\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n\n        <FontImageSource\n            x:Key=\"SettingsIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_settings_48_regular}\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n    </Shell.Resources>\n    <FlyoutItem FlyoutDisplayOptions=\"AsMultipleItems\">\n        <ShellContent\n            Title=\"Home\"\n            ContentTemplate=\"{DataTemplate home:HomePage}\"\n            Icon=\"{x:StaticResource HomeIcon}\"\n            Route=\"homePage\" />\n        <!--<ShellContent\n            Title=\"Chat\"\n            ContentTemplate=\"{DataTemplate app:ChatPage}\"\n            Icon=\"{x:StaticResource ChatIcon}\"\n            Route=\"chatPage\" />-->\n        <ShellContent\n            Title=\"Gallery\"\n            ContentTemplate=\"{DataTemplate app:GalleryPage}\"\n            Icon=\"{x:StaticResource CodeIcon}\"\n            Route=\"galleryPage\" />\n        <ShellContent\n            Title=\"Showcases\"\n            ContentTemplate=\"{DataTemplate showcases:ShowcasesPage}\"\n            Icon=\"{x:StaticResource ShowcasesIcon}\"\n            Route=\"showcasesPage\" />\n    </FlyoutItem>\n    <ShellContent\n        Title=\"Settings\"\n        ContentTemplate=\"{DataTemplate settings:SettingsPage}\"\n        Icon=\"{x:StaticResource SettingsIcon}\"\n        Route=\"settingsPage\" />\n    <Shell.FlyoutHeader>\n        <VerticalStackLayout Padding=\"0,32,0,24\">\n            <Label\n                FontAttributes=\"Bold\"\n                FontSize=\"32\"\n                HorizontalTextAlignment=\"Center\"\n                Text=\"MAUI Island\" />\n            <Label x:Name=\"AppVersionLabel\" HorizontalOptions=\"Center\" />\n        </VerticalStackLayout>\n    </Shell.FlyoutHeader>\n    <Shell.FlyoutBackdrop>\n        <LinearGradientBrush EndPoint=\"1,0\">\n            <GradientStop Offset=\"0.0\" Color=\"#faf8d2\" />\n            <GradientStop Offset=\"1.0\" Color=\"#d3724c\" />\n        </LinearGradientBrush>\n    </Shell.FlyoutBackdrop>\n</Shell>\n"
  },
  {
    "path": "src/Presentations/Windows/AppShell.xaml.cs",
    "content": "﻿using MAUIsland.Mockup;\nusing MAUIsland.ResumesTemplate;\nusing MAUIsland.Settings;\nusing MAUIsland.Showcases;\nusing Microsoft.Extensions.Configuration;\n\nnamespace MAUIsland;\n\npublic partial class AppShell : Shell\n{\n    #region [ Fields ]\n    private readonly IAppInfo appInfo;\n\n    private readonly AppSettings appSettings;\n    #endregion\n\n    #region [ CTor ]\n    public AppShell()\n    {\n        InitializeComponent();\n\n        appInfo = ServiceHelper.GetService<IAppInfo>();\n        appSettings = ServiceHelper.GetService<AppSettings>();\n\n        RegisterRoutes();\n        WriteAppVersion();\n        RegisterSyncfusionLicense();\n\n    }\n    #endregion\n\n    #region [ Methods ]\n    void RegisterRoutes()\n    {\n        Routing.RegisterRoute(AppRoutes.MockupPage, typeof(MockupPage));\n        Routing.RegisterRoute(AppRoutes.ResumesPage, typeof(ResumesPage));\n        Routing.RegisterRoute(AppRoutes.SettingsPage, typeof(SettingsPage));\n        Routing.RegisterRoute(AppRoutes.ResumeDetailPage, typeof(ResumeDetailPage));\n        Routing.RegisterRoute(AppRoutes.CardsByGroupPage, typeof(CardsByGroupPage));\n        Routing.RegisterRoute(AppRoutes.ShowcasesPage, typeof(ShowcasesPage));\n    }\n    void WriteAppVersion()\n    {\n        AppVersionLabel.Text = appInfo.VersionString;\n    }\n\n    void RegisterSyncfusionLicense()\n    {\n        Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(appSettings.SyncfusionKey);\n    }\n\n    void GetCurrentMicrosoftMauiControls()\n    {\n\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Blazor/MainLayout.razor",
    "content": "﻿@namespace MAUIsland\n@inherits LayoutComponentBase\n\n\n@if (ShouldShowNavMenu)\n{\n    <div class=\"page\">\n        <div class=\"sidebar\">\n            <NavMenu/>\n        </div>\n\n        <main>\n            <div class=\"top-row px-4\">\n                <a href=\"https://learn.microsoft.com/aspnet/core/\" target=\"_blank\">About</a>\n            </div>\n\n            <article class=\"content px-4\">\n                @Body\n            </article>\n        </main>\n    </div>\n}\nelse\n{\n    @Body\n}\n\n@code {\n    private bool ShouldShowNavMenu => NavigationManager.Uri.Contains(\"/blazor-web-view/\"); \n                                      \n    [Inject] \n    private NavigationManager NavigationManager { get; set; }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Blazor/MainLayout.razor.css",
    "content": ".page {\n    position: relative;\n    display: flex;\n    flex-direction: column;\n}\n\nmain {\n    flex: 1;\n}\n\n.sidebar {\n    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);\n}\n\n.top-row {\n    background-color: #f7f7f7;\n    border-bottom: 1px solid #d6d5d5;\n    justify-content: flex-end;\n    height: 3.5rem;\n    display: flex;\n    align-items: center;\n}\n\n    .top-row ::deep a, .top-row ::deep .btn-link {\n        white-space: nowrap;\n        margin-left: 1.5rem;\n        text-decoration: none;\n    }\n\n        .top-row ::deep a:hover, .top-row ::deep .btn-link:hover {\n            text-decoration: underline;\n        }\n\n        .top-row ::deep a:first-child {\n            overflow: hidden;\n            text-overflow: ellipsis;\n        }\n\n@media (max-width: 640.98px) {\n    .top-row {\n        justify-content: space-between;\n    }\n\n        .top-row ::deep a, .top-row ::deep .btn-link {\n            margin-left: 0;\n        }\n}\n\n@media (min-width: 641px) {\n    .page {\n        flex-direction: row;\n    }\n\n    .sidebar {\n        width: 250px;\n        height: 100vh;\n        position: sticky;\n        top: 0;\n    }\n\n    .top-row {\n        position: sticky;\n        top: 0;\n        z-index: 1;\n    }\n\n        .top-row.auth ::deep a:first-child {\n            flex: 1;\n            text-align: right;\n            width: 0;\n        }\n\n    .top-row, article {\n        padding-left: 2rem !important;\n        padding-right: 1.5rem !important;\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Blazor/Routes.razor",
    "content": "﻿@namespace MAUIsland\n\n<Router AppAssembly=\"@typeof(MauiProgram).Assembly\">\n    <Found Context=\"routeData\">\n        <RouteView RouteData=\"@routeData\" DefaultLayout=\"@typeof(MainLayout)\" />\n        <FocusOnNavigate RouteData=\"@routeData\" Selector=\"h1\" />\n    </Found>\n    <NotFound>\n        <LayoutView Layout=\"@typeof(MainLayout)\">\n            <p>Sorry, there's nothing at this address.</p>\n        </LayoutView>\n    </NotFound>\n</Router>\n"
  },
  {
    "path": "src/Presentations/Windows/Blazor/_Imports.razor",
    "content": "﻿@using System.Net.Http\n@using System.Net.Http.Json\n@using Microsoft.AspNetCore.Components.Forms\n@using Microsoft.AspNetCore.Components.Routing\n@using Microsoft.AspNetCore.Components.Web\n@using static Microsoft.AspNetCore.Components.Web.RenderMode\n@using Microsoft.AspNetCore.Components.Web.Virtualization\n@using Microsoft.JSInterop\n@using MAUIsland\n@using MAUIsland.Features.Gallery.Pages.BuiltIn.Controls.BlazorWebView.Blazor\n@using MAUIsland.Blazor\n@using MAUIsland.ResumesTemplate\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Constants/ChatConstants.cs",
    "content": "﻿namespace MAUIsland;\n\npublic static class ChatConstants\n{\n    public const string BaseUrl = \"https://intranetcloud.azurewebsites.net/mauislandhub\";\n    public const string LocalBaseUrl = \"https://localhost:44371/mauislandhub\";\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/ContentViews/ChatBubbleContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.ChatBubbleContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\">\n    <HorizontalStackLayout Spacing=\"10\">\n        <toolkit:AvatarView\n            HeightRequest=\"50\"\n            ImageSource=\"{x:Binding ComponentData.AuthorImage,\n                                    Source={x:Reference root}}\"\n            VerticalOptions=\"Start\"\n            WidthRequest=\"50\" />\n        <VerticalStackLayout Spacing=\"5\">\n            <Label\n                Margin=\"10,0,0,0\"\n                FontAttributes=\"Bold\"\n                Text=\"{x:Binding ComponentData.AuthorName,\n                                 Source={x:Reference root}}\" />\n            <Frame\n                Padding=\"15\"\n                Style=\"{x:StaticResource DocumentContentFrameStyle}\"\n                VerticalOptions=\"End\">\n                <Label\n                    LineBreakMode=\"WordWrap\"\n                    LineHeight=\"1.8\"\n                    MaximumWidthRequest=\"200\"\n                    Text=\"{x:Binding ComponentData.ChatMessageContent,\n                                     Source={x:Reference root}}\" />\n            </Frame>\n            <Label Margin=\"10,0,0,0\" Text=\"{x:Binding ComponentData.SentTime, Source={x:Reference root}}\" />\n        </VerticalStackLayout>\n    </HorizontalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/ContentViews/ChatBubbleContentView.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class ChatBubbleContentView : ContentView\n{\n    #region [CTor]\n    public ChatBubbleContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [Bindable Properties]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n                                nameof(ComponentData),\n                                typeof(ChatMessageModel),\n                                typeof(ChatBubbleContentView),\n                                default(ChatMessageModel));\n    #endregion\n\n    #region [Properties]\n    public ChatMessageModel ComponentData\n    {\n        get => (ChatMessageModel)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/ContentViews/ChatPageDesktopLayout.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.ChatPageDesktopLayout\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:DataType=\"app:ChatPageViewModel\">\n    <VerticalStackLayout HorizontalOptions=\"Center\">\n        <toolkit:AvatarView\n            HeightRequest=\"50\"\n            ImageSource=\"{x:Binding CurrentUser.AvatarUrl}\"\n            WidthRequest=\"50\" />\n        <Label\n            HorizontalOptions=\"Center\"\n            Text=\"{x:Binding CurrentUser.UserName,\n                             Mode=OneWay}\"\n            VerticalOptions=\"Center\" />\n        <Label Text=\"Please resize this window to Phone dimension so that chat UI can appear\" />\n        <Label FontAttributes=\"Bold\" Text=\"PLEASE RESIZE SLOWLY SINCE THE TOOLKIT WILL CAUSE THE APP TO CRASH IF YOU DO IT TOO FAST\" />\n        <Label Text=\"Desktop screen will support soon enough\" />\n    </VerticalStackLayout>\n</ContentView>"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/ContentViews/ChatPageDesktopLayout.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class ChatPageDesktopLayout : ContentView\n{\n    #region [CTor]\n    public ChatPageDesktopLayout()\n    {\n        InitializeComponent();\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/ContentViews/ChatPagePhoneLayout.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.ChatPagePhoneLayout\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:skia=\"clr-namespace:SkiaSharp.Extended.UI.Controls;assembly=SkiaSharp.Extended.UI\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:DataType=\"app:ChatPageViewModel\"\n    SizeChanged=\"ContentView_SizeChanged\">\n\n    <ContentView.Resources>\n        <LinearItemsLayout\n            x:Key=\"ChatLayout\"\n            ItemSpacing=\"10\"\n            Orientation=\"Vertical\" />\n\n        <DataTemplate x:Key=\"ChatCollectionViewItemTemplate\" x:DataType=\"core:ChatMessageModel\">\n            <app:ChatBubbleContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"ChatCollectionViewEmptyViewTemplate\" x:DataType=\"app:ChatPageViewModel\">\n            <VerticalStackLayout Spacing=\"5\">\n                <skia:SKLottieView\n                    HeightRequest=\"100\"\n                    HorizontalOptions=\"Center\"\n                    RepeatCount=\"-1\"\n                    SemanticProperties.Description=\"Cute dot net bot waving hi to you!\"\n                    Source=\"dotnetbot.json\"\n                    WidthRequest=\"100\">\n                    <skia:SKLottieView.GestureRecognizers>\n                        <TapGestureRecognizer Command=\"{x:Binding SignUpCommand}\" />\n                    </skia:SKLottieView.GestureRecognizers>\n                </skia:SKLottieView>\n                <Label HorizontalOptions=\"Center\" Text=\"Hey friend !! let's build this together.\" />\n                <Button Command=\"{x:Binding SignUpCommand}\" Text=\"Sign in\" />\n            </VerticalStackLayout>\n        </DataTemplate>\n\n    </ContentView.Resources>\n\n    <toolkit:DockLayout ShouldExpandLastChild=\"True\">\n        <Grid\n            toolkit:DockLayout.DockPosition=\"Bottom\"\n            ColumnDefinitions=\"*, auto\"\n            ColumnSpacing=\"10\"\n            RowDefinitions=\"auto, *\">\n            <Entry\n                IsEnabled=\"{x:Binding CanChatState}\"\n                IsTextPredictionEnabled=\"True\"\n                Keyboard=\"Chat\"\n                Placeholder=\"Enter message\"\n                ReturnCommand=\"{x:Binding SendMessageCommand}\"\n                Text=\"{x:Binding TypingMessage,\n                                 Mode=TwoWay}\" />\n            <Button\n                Grid.Column=\"1\"\n                Command=\"{x:Binding SendMessageCommand}\"\n                CornerRadius=\"2\"\n                ImageSource=\"{x:StaticResource SendIcon}\"\n                IsEnabled=\"{x:Binding CanChatState,\n                                      Mode=OneWay}\"\n                Text=\"Send\" />\n            <Label\n                Grid.Row=\"1\"\n                Grid.ColumnSpan=\"2\"\n                HorizontalOptions=\"Center\"\n                Text=\"FEATURE IS IN PREVIEW !!!\"\n                TextColor=\"{x:StaticResource Primary}\"\n                VerticalOptions=\"Center\" />\n        </Grid>\n        <Border\n            Margin=\"0,0,0,15\"\n            Padding=\"10\"\n            StrokeShape=\"RoundRectangle 5,5,5,5\">\n            <Border.Shadow>\n                <Shadow\n                    Brush=\"Black\"\n                    Opacity=\"0.8\"\n                    Offset=\"10,10\" />\n            </Border.Shadow>\n            <VerticalStackLayout>\n                <CollectionView\n                    x:Name=\"ListOfMessages\"\n                    EmptyView=\"{x:Binding Mode=TwoWay}\"\n                    EmptyViewTemplate=\"{x:StaticResource ChatCollectionViewEmptyViewTemplate}\"\n                    ItemTemplate=\"{x:StaticResource ChatCollectionViewItemTemplate}\"\n                    ItemsLayout=\"{x:StaticResource ChatLayout}\"\n                    ItemsSource=\"{x:Binding Messages}\"\n                    ItemsUpdatingScrollMode=\"KeepLastItemInView\"\n                    MaximumHeightRequest=\"610\" />\n            </VerticalStackLayout>\n        </Border>\n    </toolkit:DockLayout>\n</ContentView>"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/ContentViews/ChatPagePhoneLayout.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class ChatPagePhoneLayout : ContentView\n{\n    #region [Delegates]\n    public delegate void LoginEventHandler();\n    #endregion\n\n    #region [Events]\n    public event LoginEventHandler LoginClicked;\n    #endregion\n\n    #region [CTor]\n    public ChatPagePhoneLayout()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    private void ContentView_SizeChanged(object sender, EventArgs e)\n    {\n        if (Window is not null)\n        {\n            System.Diagnostics.Debug.WriteLine(Window.Height);\n        }\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/ContentViews/ChatPageTabletLayout.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.ChatPageTabletLayout\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\">\n\n    <HorizontalStackLayout>\n        <TableView Intent=\"Menu\">\n            \n        </TableView>\n    </HorizontalStackLayout>\n</ContentView>"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/ContentViews/ChatPageTabletLayout.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class ChatPageTabletLayout : ContentView\n{\n    #region [CTor]\n    public ChatPageTabletLayout()\n    {\n        InitializeComponent();\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/ContentViews/LoginFormContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.LoginFormContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    x:Name=\"root\"\n    Loaded=\"root_Loaded\">\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"PhoneIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_phone_24_regular}\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n    </ContentView.Resources>\n    <VerticalStackLayout Spacing=\"10\">\n        <Entry\n            x:Name=\"UserNameEntry\"\n            MinimumWidthRequest=\"300\"\n            Placeholder=\"User name\" />\n        <Entry\n            x:Name=\"PasswordEntry\"\n            IsPassword=\"True\"\n            MinimumWidthRequest=\"300\"\n            Placeholder=\"Password\" />\n        <Button Clicked=\"Login_Clicked\" Text=\"Login\" />\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/ContentViews/LoginFormContentView.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class LoginFormContentView : ContentView\n{\n    #region [Delegates]\n    public delegate void LoginEventHandler(string username, string password);\n    #endregion\n\n    #region [Events]\n    public event LoginEventHandler LoginClicked;\n    #endregion\n\n    #region [CTor]\n    public LoginFormContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [Properties]\n    #endregion\n\n    #region [Event Handlers]\n    private void Login_Clicked(object sender, EventArgs e)\n    {\n        LoginClicked?.Invoke(UserNameEntry.Text, PasswordEntry.Text);\n    }\n    #endregion\n\n    private void root_Loaded(object sender, EventArgs e)\n    {\n        UserNameEntry.Text = \"viet.to@totechs.com\";\n        PasswordEntry.Text = \"Welkom112!!@\";\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/ContentViews/RegisterFormContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.RegisterFormContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\">\n\n    <VerticalStackLayout Spacing=\"5\">\n        <HorizontalStackLayout\n            HorizontalOptions=\"Center\"\n            Spacing=\"10\"\n            VerticalOptions=\"Start\">\n            <toolkit:AvatarView\n                CornerRadius=\"40\"\n                HeightRequest=\"80\"\n                ImageSource=\"{x:Binding AvatarImageSource}\"\n                VerticalOptions=\"Start\"\n                WidthRequest=\"80\" />\n            <VerticalStackLayout VerticalOptions=\"Center\">\n                <ImageButton\n                    BackgroundColor=\"Transparent\"\n                    BorderColor=\"{x:StaticResource Primary}\"\n                    Source=\"{x:StaticResource CameraIcon}\" />\n                <ImageButton\n                    BackgroundColor=\"Transparent\"\n                    BorderColor=\"{x:StaticResource Primary}\"\n                    Command=\"{x:Binding OpenFileCommand}\"\n                    Source=\"{x:StaticResource UploadIcon}\" />\n            </VerticalStackLayout>\n        </HorizontalStackLayout>\n        <Label Text=\"Phone number\" />\n        <Entry\n            x:Name=\"PhoneNumberEntry\"\n            Keyboard=\"Telephone\"\n            MinimumWidthRequest=\"300\"\n            Placeholder=\"Input your phone number\"\n            Text=\"0348164682\" />\n        <Label Text=\"Email\" />\n        <Entry\n            x:Name=\"EmailEntry\"\n            Keyboard=\"Email\"\n            MinimumWidthRequest=\"300\"\n            Text=\"Bruh@Bruh1.com\" />\n        <Label Text=\"Password\" />\n        <Entry\n            x:Name=\"PasswordEntry\"\n            IsPassword=\"True\"\n            MinimumWidthRequest=\"300\"\n            Text=\"String!!@112\" />\n        <Label Text=\"Confirm password\" />\n        <Entry\n            x:Name=\"ConfirmPasswordEntry\"\n            IsPassword=\"True\"\n            MinimumWidthRequest=\"300\"\n            Text=\"String!!@112\" />\n        <Label Text=\"First name\" />\n        <Entry x:Name=\"FirstNameEntry\" Text=\"Bravo\" />\n        <Label Text=\"Last name\" />\n        <Entry x:Name=\"LastNameEntry\" Text=\"Snow\" />\n        <HorizontalStackLayout>\n            <Button Clicked=\"Signup_Clicked\" Text=\"Sign up\" />\n        </HorizontalStackLayout>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/ContentViews/RegisterFormContentView.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class RegisterFormContentView : ContentView\n{\n    #region [Delegates]\n    public delegate void RegisterEventHandler(string phoneNumber,\n                                              string userName,\n                                              string email,\n                                              string password,\n                                              string firstName,\n                                              string lastName,\n                                              string profilePicUrl);\n    #endregion\n\n    #region [Events]\n    public event RegisterEventHandler RegisterClick;\n    #endregion\n\n    #region [CTor]\n    public RegisterFormContentView()\n    {\n        InitializeComponent();\n    }\n\n    #endregion\n\n    #region [Event Handlers]\n    private void Signup_Clicked(object sender, EventArgs e)\n    {\n        RegisterClick?.Invoke(PhoneNumberEntry.Text,\n                         EmailEntry.Text,\n                         EmailEntry.Text,\n                         ConfirmPasswordEntry.Text,\n                         FirstNameEntry.Text,\n                         LastNameEntry.Text,\n                         \"https://i.imgur.com/BhXNGWm.png\");\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Messages/LoginMessage.cs",
    "content": "﻿using CommunityToolkit.Mvvm.Messaging.Messages;\n\nnamespace MAUIsland;\n\npublic class LoginMessage : ValueChangedMessage<UserModel>\n{\n    public LoginMessage(UserModel value) : base(value)\n    {\n\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/DTOs/AuthenticationResponseDTO.cs",
    "content": "﻿namespace MAUIsland;\n\npublic record AuthenticationResponseDTO(string id,\n                                        DateTime requestAt,\n                                        string accessToken,\n                                        double expireIn);\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/DTOs/PhoneNumberLoginDTO.cs",
    "content": "﻿namespace MAUIsland;\n\npublic record PhoneNumberLoginDTO(string phoneNumber, string password);"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/DTOs/RegisterDTO.cs",
    "content": "﻿namespace MAUIsland;\n\npublic record RegisterDTO(string username,\n                          string firstname,\n                          string lastname,\n                          string phonenumber,\n                          string email,\n                          string password,\n                          string profilepic)\n{ }\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/DTOs/UserNameLoginDTO.cs",
    "content": "﻿namespace MAUIsland;\n\npublic record UserNameLoginDTO(string username, string password);\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/Forms/LoginFormModel.cs",
    "content": "﻿namespace MAUIsland;\n\npublic partial class LoginFormModel : BaseFormModel\n{\n    #region [Properties]\n    [ObservableProperty]\n    [Required(ErrorMessage = \"Please enter your phone number\")]\n    [Phone(ErrorMessage = \"Please enter a valid phone number\")]\n    [NotifyPropertyChangedFor(nameof(PhoneNumberErrors))]\n    [NotifyDataErrorInfo]\n    string phoneNumber;\n\n\n    [ObservableProperty]\n    [Required(ErrorMessage = \"Please enter a password\")]\n    [Password(\n    IncludesLower = true,\n    IncludesNumber = true,\n    IncludesSpecial = true,\n    IncludesUpper = true,\n    MinimumLength = 6,\n    ErrorMessage = \"Please enter a strong password: from 8 characters, 1 upper, 1 lower, 1 digit, 1 special character\"\n)]\n    [NotifyPropertyChangedFor(nameof(PasswordErrors))]\n    [NotifyDataErrorInfo]\n    string password;\n    #endregion\n\n    #region [Errors]\n    public IEnumerable<ValidationResult> PhoneNumberErrors => GetErrors(nameof(PhoneNumber));\n\n    public IEnumerable<ValidationResult> PasswordErrors => GetErrors(nameof(Password));\n    #endregion\n\n    #region [Override]\n    protected override string[] ValidatableAndSupportPropertyNames => new[]\n    {\n        nameof(PhoneNumber),\n        nameof(PhoneNumberErrors),\n    };\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/Refits/Responses/RefitChatMessageResponse.cs",
    "content": "﻿namespace MAUIsland;\n\npublic record RefitChatMessageResponse(RefitUserInfoResponseModel user,\n                                       string messageContent,\n                                       DateTime dateTime,\n                                       int conversationId)\n{ }\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/Refits/Responses/RefitErrorMessageModel.cs",
    "content": "﻿namespace MAUIsland;\n\npublic record RefitErrorMessageModel(string type, string title, string status, string trackid) { }\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/Refits/Responses/RefitLoginSuccessModelRespone.cs",
    "content": "﻿namespace MAUIsland;\n\npublic record RefitLoginSuccessModelRespone(string AccessToken, PrincipalUserModel UserInfo) { }"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/Refits/Responses/RefitUserInfoResponseModel.cs",
    "content": "﻿namespace MAUIsland;\n\n//public record RefitUserInfoResponseModel(string guid,\n//                                         string email,\n//                                         string userName,\n//                                         string bio,\n//                                         string former,\n//                                         string cardPic,\n//                                         string isDisable,\n//                                         string specialAward,\n//                                         string phoneNumber,\n//                                         string profilePic,\n//                                         int like,\n//                                         int friendly,\n//                                         int funny,\n//                                         int enthusiastic,\n//                                         int relationship,\n//                                         int signalRConnectionId)\n//{ }\npublic class RefitUserInfoResponseModel\n{\n    public string guid { get; set; }\n    public string userName { get; set; }\n    public string email { get; set; }\n    public string profilePic { get; set; }\n    public string phoneNumber { get; set; }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/Sqlite/UserInformationSqlite.cs",
    "content": "﻿namespace MAUIsland;\n\npublic class UserInformation\n{\n\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/UI/PrincipalUserModel.cs",
    "content": "﻿namespace MAUIsland;\n\npublic record PrincipalUserModel\n(\n    Guid guid,\n    string userName,\n    string firstName,\n    string lastName,\n    string profilePicUrl,\n    string email,\n    string phoneNumber,\n    string country,\n    bool gender,\n    List<string> roles\n);\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/UI/ServiceUserInfo.cs",
    "content": "﻿public record ServiceUserInfo(string guid, string userName, string avatarGuild);"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Models/UserModel.cs",
    "content": "﻿namespace MAUIsland;\n\npublic partial class UserModel : BaseModel\n{\n    [ObservableProperty]\n    string guid;\n\n    [ObservableProperty]\n    string email;\n\n    [ObservableProperty]\n    string userName;\n\n    [ObservableProperty]\n    string phoneNumber;\n\n    [ObservableProperty]\n    string avatarUrl;\n\n    [ObservableProperty]\n    string bio;\n\n    [ObservableProperty]\n    bool gender;\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Pages/ChatPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ChatPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:skia=\"clr-namespace:SkiaSharp.Extended.UI.Controls;assembly=SkiaSharp.Extended.UI\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"ChatPage\"\n    Padding=\"10\"\n    x:DataType=\"app:ChatPageViewModel\"\n    SizeChanged=\"BasePage_SizeChanged\">\n\n    <Shell.TitleView>\n        <Grid>\n            <Grid.Resources>\n                <OnPlatform x:Key=\"StackLayoutMargin\" x:TypeArguments=\"Thickness\">\n                    <On Platform=\"WinUI\" Value=\"10\" />\n                    <On Platform=\"Android\" Value=\"0,15,5,5\" />\n                </OnPlatform>\n\n                <FontImageSource\n                    x:Key=\"BeachTitleBarIcon\"\n                    FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n                    Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_beach_48_regular}\"\n                    Color=\"#eaeaea\" />\n            </Grid.Resources>\n            <HorizontalStackLayout\n                Margin=\"{x:StaticResource StackLayoutMargin}\"\n                Spacing=\"10\"\n                VerticalOptions=\"Start\">\n                <skia:SKLottieView\n                    HeightRequest=\"45\"\n                    HorizontalOptions=\"Center\"\n                    RepeatCount=\"-1\"\n                    SemanticProperties.Description=\"Cute dot net bot waving hi to you!\"\n                    Source=\"island.json\"\n                    WidthRequest=\"45\" />\n                <Label\n                    FontAttributes=\"Bold\"\n                    FontSize=\"Subtitle\"\n                    Text=\"Island Lobby\"\n                    TextColor=\"White\"\n                    VerticalOptions=\"Start\" />\n            </HorizontalStackLayout>\n        </Grid>\n    </Shell.TitleView>\n\n    <core:BasePage.Resources>\n        <FontImageSource\n            x:Key=\"ContactCardIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_contact_card_24_regular}\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n\n        <FontImageSource\n            x:Key=\"ChatBubblesQuestionIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_chat_bubbles_question_24_regular}\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n    </core:BasePage.Resources>\n\n    <!--\n        IsEnabled=\"{x:Binding CanChatState,\n        Mode=OneWay,\n        Converter={toolkit:InvertedBoolConverter}}\"\n    -->\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding SignUpCommand}\"\n            IconImageSource=\"{x:StaticResource ContactCardIcon}\"\n            Text=\"Sign in\" />\n        <ToolbarItem IconImageSource=\"{x:StaticResource ChatBubblesQuestionIcon}\" Text=\"Ask questions\" />\n    </core:BasePage.ToolbarItems>\n\n    <ScrollView>\n        <Grid toolkit:StateContainer.CanStateChange=\"{x:Binding CanStateChange}\" toolkit:StateContainer.CurrentState=\"{x:Binding CurrentState}\">\n            <toolkit:StateContainer.StateViews>\n                <app:ChatPagePhoneLayout toolkit:StateView.StateKey=\"Phone\" />\n                <app:ChatPageTabletLayout toolkit:StateView.StateKey=\"Tablet\" />\n                <app:ChatPageDesktopLayout toolkit:StateView.StateKey=\"Desktop\" />\n            </toolkit:StateContainer.StateViews>\n        </Grid>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Pages/ChatPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class ChatPage\n{\n    private ChatPageViewModel viewModel;\n\n    #region[ Ctor ]\n    public ChatPage(ChatPageViewModel vm)\n    {\n        InitializeComponent();\n        BindingContext = viewModel = vm;\n    }\n\n    #endregion\n\n\n    #region [Event Handlers]\n    private void Button_Clicked(object sender, EventArgs e)\n    {\n\n    }\n\n    private void BasePage_SizeChanged(object sender, EventArgs e)\n    {\n        if (Window.Width < 500)\n        {\n            viewModel.CurrentState = \"Phone\";\n            return;\n        }\n        else if (Window.Width < 900)\n        {\n            viewModel.CurrentState = \"Tablet\";\n            return;\n        }\n        else if (Window.Width < 2000)\n        {\n            viewModel.CurrentState = \"Desktop\";\n            return;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Pages/ChatPageViewModel.cs",
    "content": "﻿using CommunityToolkit.Mvvm.Messaging;\n\nnamespace MAUIsland;\n\npublic partial class ChatPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [Services]\n    private readonly IChatHubService chatHubService;\n\n    private readonly IConversationService conversationService;\n    #endregion\n\n    #region[CTor]\n    public ChatPageViewModel(IAppNavigator appNavigator, IChatHubService chatHubService, IConversationService conversationService) : base(appNavigator)\n    {\n        this.chatHubService = chatHubService;\n        this.conversationService = conversationService;\n    }\n    #endregion\n\n    #region [Properties]\n    [ObservableProperty]\n    bool canStateChange = true;\n\n    [ObservableProperty]\n    bool canChatState = false;\n\n    [ObservableProperty]\n    string currentState;\n\n    [ObservableProperty]\n    string typingMessage;\n\n    [ObservableProperty]\n    UserModel currentUser;\n\n    [ObservableProperty]\n    ObservableCollection<ChatMessageModel> messages;\n\n    #endregion\n\n    #region [Relay Commands]\n    [RelayCommand]\n    async Task SendMessageAsync()\n    {\n        if (!string.IsNullOrEmpty(TypingMessage) &&\n            !string.IsNullOrWhiteSpace(TypingMessage))\n        {\n            await this.chatHubService.SendMessageTest(TypingMessage,\n                                                      CurrentUser.UserName,\n                                                      CurrentUser.AvatarUrl,\n                                                      DateTime.Now);\n            TypingMessage = string.Empty;\n        }\n\n    }\n\n    [RelayCommand]\n    void SignUp() => NavigateToSignUp();\n    #endregion\n\n    #region [Overrides]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        SubcribeToLoginMessage();\n\n        Messages = new();\n    }\n    #endregion\n\n    #region [Methods]\n\n    private async Task LoadMessagesAsync(bool forced)\n    {\n\n        if (Messages == null)\n        {\n            Messages = new ObservableCollection<ChatMessageModel>();\n            return;\n        }\n\n        var recentChatMessages = await this.conversationService.GetRecentChatAsync();\n        foreach (var chatMessage in recentChatMessages)\n        {\n            Messages.Add(chatMessage);\n        }\n\n\n        if (forced)\n        {\n            Messages.Clear();\n        }\n    }\n\n    private async Task ConnectToChatHubAsync()\n    {\n        await this.chatHubService.ConnectAsync();\n        this.chatHubService.RegisterChannels();\n        this.chatHubService.ChatMessageReceived += ChatHubService_ChatMessageReceived;\n    }\n\n    private void ChatHubService_ChatMessageReceived(ChatMessageModel message)\n    {\n        Messages.Add(message);\n    }\n\n    private void SubcribeToLoginMessage()\n    {\n        //Subscribe to Login Message\n        WeakReferenceMessenger.Default.Register<LoginMessage>(this, (r, m) =>\n        {\n            MainThread.BeginInvokeOnMainThread(() =>\n            {\n                CurrentUser = m.Value;\n                AppNavigator.ShowSnackbarAsync(\"Welcome \" + m.Value.UserName);\n\n\n                ConnectToChatHubAsync()\n                    .FireAndForget();\n\n                LoadMessagesAsync(false)\n                    .FireAndForget();\n\n                Messages.Add(new ChatMessageModel()\n                {\n                    AuthorName = \"MAUIsland\",\n                    AuthorImage = \"dotnet_bot.png\",\n                    ChatMessageContent = $\"Welcome {m.Value.UserName}\",\n                    SentTime = DateTime.Now,\n                });\n            });\n        });\n    }\n\n    partial void OnCurrentUserChanging(UserModel? currentUser)\n       => CanChatState = currentUser is not null ? true : false;\n\n    void NavigateToSignUp()\n        => AppNavigator.NavigateAsync(AppRoutes.SignUp, true);\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Popups/AuthenticatePopup.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePopup\n    x:Class=\"MAUIsland.AuthenticatePopup\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Padding=\"10\"\n    x:DataType=\"app:AuthenticatePopupViewModel\"\n    Shell.PresentationMode=\"Modal\">\n\n    <core:BasePopup.Resources>\n        <FontImageSource\n            x:Key=\"CameraIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_camera_24_regular}\"\n            Color=\"{x:StaticResource Primary}\" />\n\n        <FontImageSource\n            x:Key=\"UploadIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_upload_24_regular}\"\n            Color=\"{x:StaticResource Primary}\" />\n    </core:BasePopup.Resources>\n\n    <Grid>\n        <Button\n            Command=\"{x:Binding NavigateBackCommand}\"\n            HorizontalOptions=\"Start\"\n            Text=\"Back\"\n            VerticalOptions=\"Start\" />\n        <Border\n            Padding=\"10\"\n            HorizontalOptions=\"Center\"\n            Style=\"{x:StaticResource DocumentContentFrameStyle}\"\n            VerticalOptions=\"Center\">\n            <VerticalStackLayout Spacing=\"5\">\n                <HorizontalStackLayout\n                    HorizontalOptions=\"Center\"\n                    RadioButtonGroup.GroupName=\"ViewMode\"\n                    RadioButtonGroup.SelectedValue=\"{x:Binding ViewMode,\n                                                               Mode=TwoWay}\"\n                    Spacing=\"5\">\n                    <RadioButton\n                        Content=\"Log in\"\n                        IsChecked=\"True\"\n                        Value=\"Login\" />\n                    <RadioButton Content=\"Sign up\" Value=\"Register\" />\n                </HorizontalStackLayout>\n\n                <Grid toolkit:StateContainer.CurrentState=\"{x:Binding ViewMode}\" HorizontalOptions=\"Center\">\n                    <toolkit:StateContainer.StateViews>\n                        <app:LoginFormContentView toolkit:StateView.StateKey=\"Login\" LoginClicked=\"LoginFormContentView_LoginClicked\" />\n                        <app:RegisterFormContentView toolkit:StateView.StateKey=\"Register\" RegisterClick=\"RegisterFormContentView_RegisterClick\" />\n                    </toolkit:StateContainer.StateViews>\n                </Grid>\n            </VerticalStackLayout>\n        </Border>\n    </Grid>\n</core:BasePopup>"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Popups/AuthenticatePopup.xaml.cs",
    "content": "using CommunityToolkit.Diagnostics;\n\nnamespace MAUIsland;\n\npublic partial class AuthenticatePopup\n{\n    #region [Fields]\n    private readonly AuthenticatePopupViewModel viewModel;\n    #endregion\n\n    public AuthenticatePopup(AuthenticatePopupViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n\n    private void LoginFormContentView_LoginClicked(string username, string password)\n    {\n        Guard.IsNotNullOrEmpty(username);\n        Guard.IsNotNullOrEmpty(password);\n        viewModel.LoginCommand.Execute(new UserNameLoginDTO(username, password));\n    }\n\n    private void RegisterFormContentView_RegisterClick(string phoneNumber, string userName, string email, string password, string firstName, string lastName, string profilePicUrl)\n    {\n        Guard.IsNotNullOrEmpty(phoneNumber);\n        Guard.IsNotNullOrEmpty(password);\n        Guard.IsNotNullOrEmpty(email);\n        Guard.IsNotNullOrEmpty(userName);\n        Guard.IsNotNullOrEmpty(profilePicUrl);\n        viewModel.SignUpCommand.Execute(new RegisterDTO(userName, firstName, lastName, phoneNumber, email, password, profilePicUrl));\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Popups/AuthenticatePopupViewModel.cs",
    "content": "﻿using CommunityToolkit.Diagnostics;\nusing CommunityToolkit.Mvvm.Messaging;\n\nnamespace MAUIsland;\n\npublic partial class AuthenticatePopupViewModel : BaseViewModel\n{\n    #region [ Services ]\n    private readonly Core.IFilePicker filePicker;\n    private readonly IUserServices userServices;\n    private readonly IAuthenticationServices authenticationServices;\n    #endregion\n\n    #region [ CTor ]\n    public AuthenticatePopupViewModel(IAppNavigator appNavigator,\n                                      Core.IFilePicker filePicker,\n                                      IUserServices userServices,\n                                      IAuthenticationServices authenticationServices)\n        : base(appNavigator)\n    {\n        this.filePicker = filePicker;\n        this.userServices = userServices;\n        this.authenticationServices = authenticationServices;\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    FileResult file;\n\n    [ObservableProperty]\n    ImageSource avatarImageSource;\n\n    [ObservableProperty]\n    string viewMode = \"Login\";\n\n    [ObservableProperty]\n    bool isLogin = true;\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task NavigateBack() => AppNavigator.GoBackAsync();\n\n    [RelayCommand]\n    async Task LoginAsync(UserNameLoginDTO dto)\n    {\n        try\n        {\n            await authenticationServices.Authenticate(dto.username, dto.password);\n\n            var userInfo = await userServices.GetUserInfo();\n            Guard.IsNotNull(userInfo);\n\n            //await userServices.SaveUserToLocalAsync(userInfo);\n\n            WeakReferenceMessenger.Default.Send(new LoginMessage(userInfo));\n            await AppNavigator.GoBackAsync();\n        }\n        catch (Exception e)\n        {\n            await AppNavigator.ShowSnackbarAsync(e.Message);\n            throw;\n        }\n    }\n\n    [RelayCommand]\n    async Task SignUpAsync(RegisterDTO dto)\n    {\n        try\n        {\n            await authenticationServices.SignUp(dto.phonenumber,\n                                                dto.username,\n                                                dto.email,\n                                                dto.password,\n                                                dto.firstname,\n                                                dto.lastname,\n                                                File);\n            await authenticationServices.Authenticate(dto.username, dto.password);\n\n            var userInfo = await userServices.GetUserInfo();\n            Guard.IsNotNull(userInfo);\n            WeakReferenceMessenger.Default.Send(new LoginMessage(userInfo));\n            await AppNavigator.GoBackAsync();\n        }\n        catch (Exception ex)\n        {\n            await AppNavigator.ShowSnackbarAsync(ex.Message);\n            throw;\n        }\n    }\n\n    [RelayCommand]\n    private async Task OpenFileAsync()\n    {\n        File = await this.filePicker.OpenMediaPickerAsync();\n        var imagefile = await this.filePicker.UploadImageFile(File);\n        AvatarImageSource = ImageSource.FromStream(() =>\n            this.filePicker.ByteArrayToStream(this.filePicker.StringToByteBase64(imagefile?.byteBase64))\n        );\n    }\n\n    #endregion\n\n    #region [ Methods ]\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Refits/Interfaces/IIntranetAuthenticationRefit.cs",
    "content": "﻿using Refit;\nusing System.Net;\n\nnamespace MAUIsland;\n\npublic interface IIntranetAuthenticationRefit\n{\n    [Multipart]\n    [Post(\"/Authentication/Register\")]\n    Task<ApiResponse<HttpStatusCode>> Register([AliasAs(\"username\")] string username,\n                                               [AliasAs(\"firstname\")] string firstname,\n                                               [AliasAs(\"lastname\")] string lastname,\n                                               [AliasAs(\"phonenumber\")] string phonenumber,\n                                               [AliasAs(\"email\")] string email,\n                                               [AliasAs(\"password\")] string password,\n                                               [AliasAs(\"avatarfile\")] StreamPart profilepic);\n\n    [Post(\"/Authentication/Login\")]\n    Task<AuthenticationResponseDTO> Login(UserNameLoginDTO dto);\n\n    [Post(\"/Authentication/LoginWithPhoneNumber\")]\n    Task<AuthenticationResponseDTO> LoginWithPhoneNumber(PhoneNumberLoginDTO dto);\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Refits/Interfaces/IIntranetConversationRefit.cs",
    "content": "﻿using Refit;\n\nnamespace MAUIsland;\n\npublic interface IIntranetConversationRefit\n{\n    [Get(\"/Conversation/GetLobbyRecentChatMessages\")]\n    Task<ICollection<RefitChatMessageResponse>> GetLobbyRecentChatMessages([Authorize(\"Bearer\")] string token);\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Refits/Interfaces/IIntranetUserRefit.cs",
    "content": "﻿using Refit;\nusing System.Net;\n\nnamespace MAUIsland;\n\npublic interface IIntranetUserRefit\n{\n    [Get(\"/User/GetCurrentUser\")]\n    Task<RefitUserInfoResponseModel> GetCurrentUser([Authorize(\"Bearer\")] string token);\n\n    [Multipart]\n    [Put(\"/User/UpdateAvatar\")]\n    Task<ApiResponse<HttpStatusCode>> UpdateAvatar([Authorize(\"Bearer\")] string token,\n                                                   [AliasAs(\"avatar\")] StreamPart avatar);\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Services/Implementations/BogusAuthenticationService.cs",
    "content": "﻿namespace MAUIsland;\n\npublic class BogusAuthenticationService : IAuthenticationServices\n{\n    #region [CTor]\n    public BogusAuthenticationService()\n    {\n\n    }\n    #endregion\n\n    #region [Methods]\n    public Task Authenticate(string username, string password)\n    {\n        throw new NotImplementedException();\n    }\n\n    public Task AuthenticateWithPhoneNumber(string phoneNumer, string password)\n    {\n        throw new NotImplementedException();\n    }\n\n    public Task SignUp(string phoneNumber, string userName, string email, string password, string firstName, string lastName, FileResult profilePicUrl)\n    {\n        throw new NotImplementedException();\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Services/Implementations/BogusUserServices.cs",
    "content": "﻿namespace MAUIsland;\n\npublic class BogusUserServices : IUserServices\n{\n    #region [Services]\n    private readonly ISecureStorageService secureStorageService;\n    #endregion\n    #region [CTor]\n    public BogusUserServices(ISecureStorageService secureStorageService)\n    {\n        this.secureStorageService = secureStorageService;\n    }\n    #endregion\n\n    #region [Methods]\n    public Task<UserModel> GetCurrentUser()\n    {\n        throw new NotImplementedException();\n    }\n\n    public Task<UserModel> GetUserByguid(string guid)\n    {\n        throw new NotImplementedException();\n    }\n\n    public Task<UserModel> GetUserInfo()\n    {\n        throw new NotImplementedException();\n    }\n\n    public Task SaveUserToLocalAsync(UserModel user)\n    {\n        throw new NotImplementedException();\n    }\n\n    public Task UploadCurrentUserAvatar(FileResult file)\n    {\n        throw new NotImplementedException();\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Services/Implementations/RefitAuthenticationService.cs",
    "content": "﻿using CommunityToolkit.Diagnostics;\nusing Newtonsoft.Json;\nusing Refit;\n\nnamespace MAUIsland;\n\npublic class RefitAuthenticationService : IAuthenticationServices\n{\n    #region [Fields]\n    private readonly IIntranetAuthenticationRefit intranetAuthenticationRefit;\n    private readonly ISecureStorageService secureStorageService;\n    private readonly IUserServices userServices;\n    private readonly IAppNavigator appNavigator;\n    #endregion\n\n    #region [CTor]\n    public RefitAuthenticationService(IIntranetAuthenticationRefit intranetAuthenticationRefit,\n                                      ISecureStorageService secureStorageService,\n                                      IUserServices userServices,\n                                      IAppNavigator appNavigator)\n    {\n        this.intranetAuthenticationRefit = intranetAuthenticationRefit;\n        this.secureStorageService = secureStorageService;\n        this.userServices = userServices;\n        this.appNavigator = appNavigator;\n    }\n    #endregion\n\n    #region [Methods]\n\n    public async Task Authenticate(string username, string password)\n    {\n        Guard.IsNotNullOrEmpty(username);\n        Guard.IsNotNullOrEmpty(password);\n\n        try\n        {\n            var authenticationResponseDTO = await this.intranetAuthenticationRefit.Login(new UserNameLoginDTO(username, password));\n\n            Guard.IsNotNull(authenticationResponseDTO);\n\n            await SaveToSecureStorageAsync(authenticationResponseDTO);\n        }\n        catch (ApiException ex)\n        {\n            throw new Exception(ex.Message);\n        }\n\n\n    }\n\n    public async Task AuthenticateWithPhoneNumber(string phonenumber, string password)\n    {\n        Guard.IsNotNullOrEmpty(phonenumber);\n        Guard.IsNotNullOrEmpty(password);\n\n        try\n        {\n            var authenticationResponseDTO = await this.intranetAuthenticationRefit.LoginWithPhoneNumber(new PhoneNumberLoginDTO(phonenumber, password));\n\n            Guard.IsNotNull(authenticationResponseDTO);\n\n            await SaveToSecureStorageAsync(authenticationResponseDTO);\n        }\n        catch (ApiException ex)\n        {\n\n            throw new Exception(ex.Message);\n        }\n\n    }\n\n\n    public async Task SignUp(string phoneNumber, string userName, string email, string password, string firstName, string lastName, FileResult? profilePicUrl)\n    {\n        Guard.IsNotNullOrEmpty(phoneNumber);\n        Guard.IsNotNullOrEmpty(userName);\n        Guard.IsNotNullOrEmpty(email);\n        Guard.IsNotNullOrEmpty(password);\n        Guard.IsNotNullOrEmpty(firstName);\n        //Guard.IsNotNull(profilePicUrl);\n\n        StreamPart stream = null;\n\n        if (profilePicUrl is not null)\n        {\n            using var fileStream = File.OpenRead(profilePicUrl.FullPath);\n\n            stream = new StreamPart(fileStream, profilePicUrl.FileName, profilePicUrl.ContentType);\n        }\n\n        try\n        {\n            var response = await this.intranetAuthenticationRefit.Register(userName,\n                                                                           firstName,\n                                                                           lastName,\n                                                                           phoneNumber,\n                                                                           email,\n                                                                           password,\n                                                                           stream ?? null);\n            if (!response.IsSuccessStatusCode)\n            {\n                var errorContentJson = JsonConvert.DeserializeObject<RefitErrorMessageModel>(response.Error.Content);\n                throw new Exception(errorContentJson.title);\n            }\n        }\n        catch (ApiException ex)\n        {\n            throw new Exception(ex.Message);\n        }\n    }\n    #endregion\n\n    #region [Private methods]\n    async Task SaveToSecureStorageAsync(AuthenticationResponseDTO dto)\n    {\n        await this.secureStorageService.RemoveAllValueAsync();\n        await this.secureStorageService.WriteValueAsync(\"accesstoken\", dto.accessToken);\n        await this.secureStorageService.WriteValueAsync(\"requestat\", dto.requestAt.ToString());\n        await this.secureStorageService.WriteValueAsync(\"expirein\", dto.expireIn.ToString());\n        await this.secureStorageService.WriteValueAsync(\"guid\", dto.id);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Services/Implementations/RefitIntranetConversationService.cs",
    "content": "﻿using CommunityToolkit.Diagnostics;\nusing Refit;\n\nnamespace MAUIsland;\n\npublic class RefitIntranetConversationService : IConversationService\n{\n    #region [Services]\n    private readonly IIntranetConversationRefit _intranetConversationRefit;\n    private readonly ISecureStorageService _secureStorageService;\n    private readonly IAppNavigator _appNavigator;\n    #endregion\n\n    #region [CTor]\n    public RefitIntranetConversationService(IIntranetConversationRefit intranetConversationRefit,\n                                            ISecureStorageService secureStorageService,\n                                            IAppNavigator appNavigator)\n    {\n        _intranetConversationRefit = intranetConversationRefit;\n        _secureStorageService = secureStorageService;\n        _appNavigator = appNavigator;\n    }\n    #endregion\n\n    #region [Methods]\n    public async Task<ICollection<ChatMessageModel>> GetRecentChatAsync()\n    {\n        var accessToken = await _secureStorageService.ReadValueAsync(\"accesstoken\");\n        Guard.IsNotNullOrEmpty(accessToken);\n\n        try\n        {\n            var chatMessages = await _intranetConversationRefit.GetLobbyRecentChatMessages(accessToken);\n\n            var chatMessageModels = new List<ChatMessageModel>();\n\n            foreach (var message in chatMessages)\n            {\n                chatMessageModels.Add(new ChatMessageModel()\n                {\n                    AuthorName = message.user?.userName,\n                    AuthorImage = message.user?.profilePic,\n                    ChatMessageContent = message.messageContent,\n                    SentTime = message.dateTime\n                });\n            }\n\n            return chatMessageModels;\n        }\n        catch (ApiException ex)\n        {\n            await _appNavigator.ShowSnackbarAsync(ex.Message);\n            throw;\n        }\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Services/Implementations/RefitIntranetUserService.cs",
    "content": "﻿using CommunityToolkit.Diagnostics;\nusing Refit;\n\nnamespace MAUIsland;\n\npublic class RefitIntranetUserService : IUserServices\n{\n    #region [Services]\n    private readonly IAppNavigator _appNavigator;\n    private readonly IIntranetUserRefit _intranetUserRefit;\n    private readonly ISecureStorageService _secureStorageService;\n    #endregion\n\n    #region [CTor]\n    public RefitIntranetUserService(IAppNavigator appNavigator,\n                                    IIntranetUserRefit intranetUserRefit,\n                                    ISecureStorageService secureStorageService)\n    {\n        _appNavigator = appNavigator;\n        _intranetUserRefit = intranetUserRefit;\n        _secureStorageService = secureStorageService;\n    }\n    #endregion\n\n    #region [Methods]\n\n    public async Task<UserModel> GetCurrentUser()\n    {\n        var accessToken = await _secureStorageService.ReadValueAsync(\"accesstoken\");\n        Guard.IsNotNullOrEmpty(accessToken);\n\n        var refitUserInfoDTO = await _intranetUserRefit.GetCurrentUser(accessToken);\n        Guard.IsNotNull(refitUserInfoDTO);\n\n        return new UserModel()\n        {\n            UserName = refitUserInfoDTO.userName,\n            Email = refitUserInfoDTO.email,\n            PhoneNumber = refitUserInfoDTO.phoneNumber,\n            AvatarUrl = refitUserInfoDTO.profilePic\n        };\n    }\n\n    public Task<UserModel> GetUserByguid(string guid)\n    {\n        throw new NotImplementedException();\n    }\n\n    public async Task<UserModel> GetUserInfo()\n    {\n        var accessToken = await _secureStorageService.ReadValueAsync(\"accesstoken\");\n        Guard.IsNotNullOrEmpty(accessToken);\n\n        var refitUserInfoDTO = await _intranetUserRefit.GetCurrentUser(accessToken);\n        Guard.IsNotNull(refitUserInfoDTO);\n\n        return new UserModel()\n        {\n            UserName = refitUserInfoDTO.userName,\n            Email = refitUserInfoDTO.email,\n            PhoneNumber = refitUserInfoDTO.phoneNumber,\n            AvatarUrl = refitUserInfoDTO.profilePic\n        };\n    }\n\n    public Task SaveUserToLocalAsync(UserModel user)\n    {\n        return Task.Run(() => null);\n    }\n\n    public async Task UploadCurrentUserAvatar(FileResult file)\n    {\n        Guard.IsNotNull(file);\n\n        var accessToken = await _secureStorageService.ReadValueAsync(\"accesstoken\");\n\n        Guard.IsNotNullOrEmpty(accessToken);\n\n        var fileStream = File.OpenRead(file.FullPath);\n\n        var stream = new StreamPart(fileStream, file.FileName, file.ContentType);\n\n        try\n        {\n            var result = await _intranetUserRefit.UpdateAvatar(accessToken, stream);\n            if (result.IsSuccessStatusCode)\n            {\n                await _appNavigator.ShowSnackbarAsync(\"Save success !!!\");\n            }\n            else\n            {\n                await _appNavigator.ShowSnackbarAsync($\"Something wrong !!! {result.StatusCode}\");\n            }\n        }\n        catch (ApiException ex)\n        {\n\n            throw;\n        }\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Services/Implementations/SignalRChatHubService.cs",
    "content": "﻿using CommunityToolkit.Diagnostics;\nusing Microsoft.AspNetCore.SignalR.Client;\n\nnamespace MAUIsland;\n\npublic class SignalRChatHubService : IChatHubService\n{\n    #region [Fields]\n\n    private readonly IAppNavigator appNavigator;\n\n    private readonly HubConnection hubConnection;\n\n    private readonly ISecureStorageService secureStorageService;\n    #endregion\n\n    #region [CTor]\n    public SignalRChatHubService(IAppNavigator appNavigator,\n                                 HubConnection hubConnection,\n                                 ISecureStorageService secureStorageService)\n    => (this.appNavigator, this.hubConnection, this.secureStorageService)\n        = (appNavigator, hubConnection, secureStorageService);\n\n    #endregion\n\n    #region [Events]\n\n    public event Action<ChatMessageModel> ChatMessageReceived;\n    #endregion\n\n    #region [Methods]\n    public void RegisterChannels()\n    {\n        Guard.IsNotNull(this.hubConnection);\n\n        this.hubConnection.On<string, string, string, DateTime>(\"ReceiveMessage\", (message, authorName, avartarUrl, sentTime) =>\n        {\n            var chatmessage = new ChatMessageModel()\n            {\n                AuthorName = authorName,\n                AuthorImage = avartarUrl,\n                ChatMessageContent = message,\n                SentTime = sentTime,\n            };\n            ChatMessageReceived?.Invoke(chatmessage);\n        });\n    }\n\n    public async Task ConnectAsync()\n    {\n        Guard.IsNotNull(this.hubConnection);\n\n        await this.hubConnection.StartAsync();\n    }\n\n    public Task SendMessageTest(string message, string authorName, string avatarUrl, DateTime sentTime)\n    {\n        return Task.Run(() =>\n        {\n            Guard.IsNotNull(this.hubConnection);\n            this.hubConnection.InvokeAsync(\"SendMessage\", message);\n        });\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Services/Interfaces/IAuthenticationServices.cs",
    "content": "﻿namespace MAUIsland;\n\npublic interface IAuthenticationServices\n{\n    #region [ Services ]\n    Task Authenticate(string username, string password);\n    Task AuthenticateWithPhoneNumber(string phoneNumer, string password);\n    Task SignUp(string phoneNumber, string userName, string email, string password, string firstName, string lastName, FileResult profilePicUrl);  \n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Services/Interfaces/IChatHubService.cs",
    "content": "﻿namespace MAUIsland;\n\npublic interface IChatHubService\n{\n    #region [Events]\n    event Action<ChatMessageModel> ChatMessageReceived;\n    #endregion\n\n    #region [Methods]\n    void RegisterChannels();\n    Task ConnectAsync();\n    Task SendMessageTest(string message, string authorName, string avatarUrl, DateTime sentTime);\n\n    #endregion\n\n\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Services/Interfaces/IConversationService.cs",
    "content": "﻿namespace MAUIsland;\n\npublic interface IConversationService\n{\n    Task<ICollection<ChatMessageModel>> GetRecentChatAsync();\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Services/Interfaces/ILocalDatabaseService.cs",
    "content": "﻿namespace MAUIsland;\n\npublic interface ILocalDatabaseService\n{\n    Task InitDatabase();\n\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Services/Interfaces/IUserServices.cs",
    "content": "﻿namespace MAUIsland;\n\npublic interface IUserServices\n{\n    Task<UserModel> GetCurrentUser();\n\n    Task<UserModel> GetUserByguid(string guid);\n\n    Task<UserModel> GetUserInfo();\n\n    Task SaveUserToLocalAsync(UserModel user);\n\n    Task UploadCurrentUserAvatar(FileResult file);\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Chat/Styles/ChatStyles.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<?xaml-comp compile=\"true\" ?>\n<ResourceDictionary\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\">\n\n    <FontImageSource\n        x:Key=\"CameraIcon\"\n        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n        Glyph=\"{Static core:FluentUIIcon.Ic_fluent_camera_24_regular}\"\n        Color=\"{x:StaticResource Primary}\" />\n\n    <FontImageSource\n        x:Key=\"UploadIcon\"\n        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n        Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_upload_24_regular}\"\n        Color=\"{x:StaticResource Primary}\" />\n\n    <FontImageSource\n        x:Key=\"BeachIcon\"\n        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n        Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_beach_48_regular}\"\n        Color=\"{AppThemeBinding Light='#15161e',\n                                Dark='#eaeaea'}\" />\n    <FontImageSource\n        x:Key=\"SendIcon\"\n        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n        Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_send_28_regular}\"\n        Color=\"{x:OnPlatform WinUI={x:StaticResource Primary},\n                             Android={x:AppThemeBinding Dark={x:StaticResource Primary},\n                                                        Light={x:StaticResource White}}}\" />\n\n\n    <x:Array x:Key=\"DumbMessagesItemSource\" Type=\"{x:Type core:ChatMessageModel}\">\n        <core:ChatMessageModel\n            AuthorImage=\"https://totechsintranet.blob.core.windows.net/team-members/Me(ver 2019).jpg\"\n            AuthorName=\"Strypper\"\n            ChatMessageContent=\"Địt mẹ PR đâu ?\"\n            SentTime=\"1/28/2023 17:23PM\" />\n\n        <core:ChatMessageModel\n            AuthorImage=\"https://totechsintranet.blob.core.windows.net/team-members/Hoang.jpg\"\n            AuthorName=\"Hoàng\"\n            ChatMessageContent=\"Vâng, vâng em đẩy lên liền\"\n            SentTime=\"1/28/2023 17:24PM\" />\n\n        <core:ChatMessageModel\n            AuthorImage=\"https://totechsintranet.blob.core.windows.net/team-members/Me(ver 2019).jpg\"\n            AuthorName=\"Strypper\"\n            ChatMessageContent=\"Không hoàn thành vào 8:00PM tối nay bố mày thông đít\"\n            SentTime=\"1/28/2023 17:25PM\" />\n\n        <core:ChatMessageModel\n            AuthorImage=\"https://totechsintranet.blob.core.windows.net/team-members/Hoang.jpg\"\n            AuthorName=\"Hoàng\"\n            ChatMessageContent=\"Vâng 😥\"\n            SentTime=\"1/28/2023 17:25PM\" />\n\n        <core:ChatMessageModel\n            AuthorImage=\"https://totechsintranet.blob.core.windows.net/team-members/Hoang.jpg\"\n            AuthorName=\"Hoàng\"\n            ChatMessageContent=\"Anh review giúp em review PR nha 🚀\"\n            SentTime=\"1/28/2023 19:30PM\" />\n\n        <core:ChatMessageModel\n            AuthorImage=\"https://totechsintranet.blob.core.windows.net/team-members/Me(ver 2019).jpg\"\n            AuthorName=\"Strypper\"\n            ChatMessageContent=\"Hên đấy không 30 phút nữa rát đít\"\n            SentTime=\"1/28/2023 19:31PM\" />\n    </x:Array>\n</ResourceDictionary>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Animations/SampleScaleAnimation.cs",
    "content": "﻿using CommunityToolkit.Maui.Animations;\n\nnamespace MAUIsland;\n\nclass SampleScaleAnimation : BaseAnimation\n{\n    public override async Task Animate(VisualElement view, CancellationToken token)\n    {\n        await view.ScaleTo(1.2, Length, Easing).WaitAsync(token);\n        await view.ScaleTo(1, Length, Easing).WaitAsync(token);\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/ContentViews/BrandIconContentView.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.BrandIconContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:skia=\"clr-namespace:SkiaSharp.Extended.UI.Controls;assembly=SkiaSharp.Extended.UI\"\n    xmlns:skiaConverters=\"clr-namespace:SkiaSharp.Extended.UI.Controls.Converters;assembly=SkiaSharp.Extended.UI\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\"\n    x:DataType=\"app:BrandIconContentView\">\n\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"OpenInNewWindowsIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_panel_separate_window_20_regular}\"\n            Color=\"{x:StaticResource White}\" />\n\n        <skiaConverters:SKLottieImageSourceConverter x:Key=\"SKLottieImageSourceConverter\" />\n\n        <core:ImageSourceToBoolConverter x:Key=\"ImageSourceToBoolConverter\" />\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"10\">\n        <ImageButton\n            Padding=\"4\"\n            BackgroundColor=\"Black\"\n            Clicked=\"Detail_Clicked\"\n            CornerRadius=\"4\"\n            HeightRequest=\"80\"\n            IsVisible=\"{x:Binding ComponentData.IconUrl,\n                                  Source={x:Reference root},\n                                  Converter={x:StaticResource ImageSourceToBoolConverter}}\"\n            Source=\"{x:Binding ComponentData.IconUrl,\n                               Source={x:Reference root},\n                               Mode=OneWay}\"\n            WidthRequest=\"80\">\n            <!--<FlyoutBase.ContextFlyout>\n                <MenuFlyout>\n                    <MenuFlyoutItem\n                        Clicked=\"DetailInNewWindow_Clicked\"\n                        IconImageSource=\"{x:StaticResource OpenNewWindowIcon}\"\n                        IsEnabled=\"False\"\n                        Text=\"Open in new window\" />\n                </MenuFlyout>\n            </FlyoutBase.ContextFlyout>-->\n        </ImageButton>\n        <!--\n            Source=\"{x:Binding ComponentData.LottieUrl,\n            Source={x:Reference root},\n            Mode=OneWay,\n            Converter={x:StaticResource SKLottieImageSourceConverter}}\"\n        -->\n        <Frame\n            Padding=\"5\"\n            BackgroundColor=\"Black\"\n            CornerRadius=\"4\"\n            IsVisible=\"{x:Binding ComponentData.LottieUrl,\n                                  Source={x:Reference root},\n                                  Converter={toolkit:IsStringNotNullOrEmptyConverter}}\"\n            MaximumHeightRequest=\"80\"\n            MaximumWidthRequest=\"80\">\n            <skia:SKLottieView\n                HeightRequest=\"68\"\n                HorizontalOptions=\"Center\"\n                RepeatCount=\"-1\"\n                SemanticProperties.Description=\"Cute dot net bot waving hi to you!\"\n                Source=\"dotnetbot.json\"\n                WidthRequest=\"68\">\n                <skia:SKLottieView.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"TapGestureRecognizer_Tapped\" />\n                </skia:SKLottieView.GestureRecognizers>\n                <!--<FlyoutBase.ContextFlyout>\n                <MenuFlyout>\n                    <MenuFlyoutItem\n                        Clicked=\"DetailInNewWindow_Clicked\"\n                        IconImageSource=\"{x:StaticResource OpenNewWindowIcon}\"\n                        IsEnabled=\"False\"\n                        Text=\"Open in new window\" />\n                </MenuFlyout>\n            </FlyoutBase.ContextFlyout>-->\n            </skia:SKLottieView>\n        </Frame>\n        <Label\n            FontSize=\"12\"\n            HorizontalOptions=\"Center\"\n            Text=\"{x:Binding ComponentData.Title,\n                             Source={x:Reference root},\n                             Mode=OneWay}\"\n            TextColor=\"{x:Static core:AppColors.White}\" />\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/ContentViews/BrandIconContentView.xaml.cs",
    "content": "namespace MAUIsland;\nusing System.Windows.Input;\n\npublic partial class BrandIconContentView : ContentView\n{\n\n    #region [CTor]\n    public BrandIconContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [Delegates]\n    public delegate void DetailEventHandler(ControlGroupInfo control);\n\n    public delegate void DetailInNewWindowEventHandler(ControlGroupInfo control);\n    #endregion\n\n    #region [Events]\n    public event DetailEventHandler DetailClicked;\n\n    public event DetailInNewWindowEventHandler DetailInNewWindowClicked;\n    #endregion\n\n    #region [Bindable Properties]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(ControlGroupInfo),\n        typeof(BrandIconContentView),\n        default(ControlGroupInfo)\n    );\n\n    public ICommand TapCommand => new Command<string>(async (url) => await Launcher.OpenAsync(url));\n    #endregion\n\n    #region [Properties]\n    public ControlGroupInfo ComponentData\n    {\n        get => (ControlGroupInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n\n    #region [Event Handlers]\n    private void Detail_Clicked(object sender, EventArgs e)\n    {\n        DetailClicked?.Invoke(ComponentData);\n    }\n\n    private void DetailInNewWindow_Clicked(object sender, EventArgs e)\n    {\n        DetailInNewWindowClicked?.Invoke(ComponentData);\n    }\n\n    private void TapGestureRecognizer_Tapped(object sender, TappedEventArgs e)\n    {\n        DetailClicked?.Invoke(ComponentData);\n    }\n\n    private void MenuFlyoutItem_Clicked(object sender, EventArgs e)\n    {\n        DetailInNewWindowClicked?.Invoke(ComponentData);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/ContentViews/ControlCardContentView.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.ControlCardContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:mct=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\"\n    x:DataType=\"app:ControlCardContentView\">\n\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"OpenInNewWindowsIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_panel_separate_window_20_regular}\"\n            Color=\"#242424\" />\n    </ContentView.Resources>\n\n    <Border\n        Padding=\"12\"\n        BackgroundColor=\"#323232\"\n        HeightRequest=\"290\"\n        Stroke=\"Black\"\n        StrokeShape=\"RoundRectangle 28,28,28,28\"\n        StrokeThickness=\"5\"\n        WidthRequest=\"374\">\n        <Grid\n            ColumnDefinitions=\"266, 50\"\n            ColumnSpacing=\"12\"\n            HorizontalOptions=\"Center\"\n            RowDefinitions=\"50, 134, 48\"\n            RowSpacing=\"12\"\n            VerticalOptions=\"Center\">\n            <VerticalStackLayout Grid.RowSpan=\"2\" Spacing=\"4\">\n                <Label\n                    Margin=\"10,0,0,0\"\n                    FontAttributes=\"Bold\"\n                    FontSize=\"18\"\n                    Text=\"{x:Binding ComponentData.ControlName,\n                                     Source={x:Reference root}}\"\n                    TextColor=\"{x:StaticResource White}\" />\n                <Frame\n                    Padding=\"10\"\n                    BackgroundColor=\"#1f1f1f\"\n                    CornerRadius=\"12\"\n                    HeightRequest=\"165\"\n                    WidthRequest=\"266\">\n                    <Label\n                        FontSize=\"14\"\n                        LineBreakMode=\"CharacterWrap\"\n                        LineHeight=\"1.55\"\n                        MaxLines=\"10\"\n                        Text=\"{x:Binding ComponentData.ControlDetail,\n                                         Source={x:Reference root}}\"\n                        TextColor=\"{x:Static core:AppColors.White}\"\n                        ToolTipProperties.Text=\"{x:Binding ComponentData.ControlDetail,\n                                                           Source={x:Reference root}}\" />\n                </Frame>\n            </VerticalStackLayout>\n            <Button\n                Grid.Row=\"2\"\n                BackgroundColor=\"#ac99ea\"\n                Clicked=\"Detail_Clicked\"\n                CornerRadius=\"12\"\n                FontSize=\"16\"\n                HorizontalOptions=\"Fill\"\n                Text=\"Detail\"\n                TextColor=\"#242424\"\n                VerticalOptions=\"Fill\">\n                <Button.Behaviors>\n                    <mct:AnimationBehavior EventName=\"Clicked\">\n                        <mct:AnimationBehavior.AnimationType>\n                            <app:SampleScaleAnimation Easing=\"{x:Static Easing.Linear}\" Length=\"100\" />\n                        </mct:AnimationBehavior.AnimationType>\n                    </mct:AnimationBehavior>\n                </Button.Behaviors>\n            </Button>\n            <Image\n                Grid.Column=\"1\"\n                HeightRequest=\"50\"\n                HorizontalOptions=\"Center\"\n                Source=\"{x:Binding ComponentData.ControlIcon,\n                                   Source={x:Reference root}}\"\n                VerticalOptions=\"Center\"\n                WidthRequest=\"50\" />\n            <VerticalStackLayout\n                Grid.Row=\"1\"\n                Grid.Column=\"1\"\n                Spacing=\"24\">\n                <ImageButton\n                    Padding=\"{x:OnPlatform WinUI=5,\n                                           Android=0,\n                                           iOS=2}\"\n                    BackgroundColor=\"Transparent\"\n                    Command=\"{x:Binding TapCommand,\n                                        Source={x:Reference root}}\"\n                    CommandParameter=\"{x:Binding ComponentData.GitHubUrl,\n                                                 Source={x:Reference root}}\"\n                    HeightRequest=\"32\"\n                    Source=\"github_logo.png\"\n                    ToolTipProperties.Text=\"Github: Source code\"\n                    WidthRequest=\"32\" />\n                <ImageButton\n                    Padding=\"5\"\n                    BackgroundColor=\"Transparent\"\n                    Command=\"{x:Binding TapCommand,\n                                        Source={x:Reference root}}\"\n                    CommandParameter=\"{x:Binding ComponentData.DocumentUrl,\n                                                 Source={x:Reference root}}\"\n                    HeightRequest=\"32\"\n                    Source=\"microsoft.png\"\n                    ToolTipProperties.Text=\"Microsoft Learn: Official document\"\n                    WidthRequest=\"32\" />\n            </VerticalStackLayout>\n            <ImageButton\n                Grid.Row=\"2\"\n                Grid.Column=\"1\"\n                Padding=\"8\"\n                BackgroundColor=\"#ac99ea\"\n                Clicked=\"DetailInNewWindow_Clicked\"\n                CornerRadius=\"12\"\n                IsEnabled=\"True\"\n                Source=\"{x:StaticResource OpenInNewWindowsIcon}\" />\n        </Grid>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/ContentViews/ControlCardContentView.xaml.cs",
    "content": "namespace MAUIsland;\nusing System.Windows.Input;\n\npublic partial class ControlCardContentView : ContentView\n{\n\n    #region [ CTor ]\n    public ControlCardContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Delegates ]\n    public delegate void DetailEventHandler(IGalleryCardInfo control);\n\n    public delegate void DetailInNewWindowEventHandler(IGalleryCardInfo control);\n    #endregion\n\n    #region [ Event Handlers ]\n    public event DetailEventHandler DetailClicked;\n\n    public event DetailInNewWindowEventHandler DetailInNewWindowClicked;\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(IGalleryCardInfo),\n        typeof(ControlCardContentView),\n        default(IGalleryCardInfo)\n    );\n\n    public ICommand TapCommand => new Command<string>(async (url) => await Launcher.OpenAsync(url));\n    #endregion\n\n    #region [ Properties ]\n    public IGalleryCardInfo ComponentData\n    {\n        get => (IGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n    private void Detail_Clicked(object sender, EventArgs e)\n    {\n        DetailClicked?.Invoke(ComponentData);\n    }\n\n    private void DetailInNewWindow_Clicked(object sender, EventArgs e)\n    {\n        DetailInNewWindowClicked?.Invoke(ComponentData);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/ContentViews/GithubCardContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.GithubCardContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\"\n    Loaded=\"root_Loaded\">\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"OpenInNewWindowsIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_panel_separate_window_20_regular}\"\n            Color=\"{x:StaticResource White}\" />\n\n        <FontImageSource\n            x:Key=\"GithubStarIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_star_24_regular}\"\n            Color=\"{x:StaticResource White}\" />\n\n        <FontImageSource\n            x:Key=\"GithubLicenseIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_gavel_24_regular}\"\n            Color=\"{x:StaticResource White}\" />\n\n        <FontImageSource\n            x:Key=\"GithubForkIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_branch_fork_24_regular}\"\n            Color=\"{x:StaticResource White}\" />\n\n        <FontImageSource\n            x:Key=\"GithubIssueIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_important_24_regular}\"\n            Color=\"{x:StaticResource White}\" />\n\n        <FontImageSource\n            x:Key=\"GithubLastUpdateTimeIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_history_24_regular}\"\n            Color=\"{x:StaticResource White}\" />\n\n\n        <core:DateTimeToSimpleDateTimeStringConverter x:Key=\"DateTimeToSimpleDateTimeStringConverter\" />\n    </ContentView.Resources>\n\n    <Grid\n        HeightRequest=\"330\"\n        RowDefinitions=\"0.5*, 1*, auto\"\n        WidthRequest=\"511\">\n        <Frame\n            Grid.Row=\"1\"\n            Grid.RowSpan=\"2\"\n            Padding=\"5\"\n            HeightRequest=\"280\"\n            VerticalOptions=\"End\"\n            WidthRequest=\"511\">\n            <Grid RowDefinitions=\"50, *, 53\" RowSpacing=\"12\">\n                <HorizontalStackLayout Margin=\"96,0,0,0\">\n                    <core:IconLabel\n                        Margin=\"0,0,22,0\"\n                        BackgroundColor=\"Transparent\"\n                        PrefixIcon=\"{x:StaticResource GithubIssueIcon}\"\n                        Text=\"{x:Binding Issues,\n                                         Source={x:Reference root}}\"\n                        TextColor=\"{x:Static core:AppColors.White}\" />\n                    <core:IconLabel\n                        HorizontalOptions=\"Center\"\n                        PrefixIcon=\"{x:StaticResource GithubLicenseIcon}\"\n                        Text=\"{x:Binding License,\n                                         Source={x:Reference root}}\"\n                        TextColor=\"{x:Static core:AppColors.White}\"\n                        VerticalOptions=\"Center\" />\n                </HorizontalStackLayout>\n                <core:IconLabel\n                    Margin=\"0,0,15,0\"\n                    HorizontalOptions=\"End\"\n                    PrefixIcon=\"{x:StaticResource GithubLastUpdateTimeIcon}\"\n                    Text=\"{x:Binding UpdateAt,\n                                     Source={x:Reference root},\n                                     Converter={x:StaticResource DateTimeToSimpleDateTimeStringConverter}}\"\n                    TextColor=\"{x:Static core:AppColors.White}\"\n                    ToolTipProperties.Text=\"Last updated\"\n                    VerticalOptions=\"Center\" />\n\n                <Frame\n                    Grid.Row=\"1\"\n                    Margin=\"15,0,15,0\"\n                    Padding=\"12\"\n                    BackgroundColor=\"#272b33\"\n                    HorizontalOptions=\"Fill\"\n                    VerticalOptions=\"Fill\">\n                    <Label\n                        LineBreakMode=\"CharacterWrap\"\n                        LineHeight=\"1.55\"\n                        MaxLines=\"7\"\n                        Text=\"{x:Binding ComponentData.ControlDetail,\n                                         Source={x:Reference root}}\"\n                        TextColor=\"White\"\n                        ToolTipProperties.Text=\"{x:Binding ComponentData.ControlDetail,\n                                                           Source={x:Reference root}}\" />\n                </Frame>\n                <Grid\n                    Grid.Row=\"2\"\n                    ColumnDefinitions=\"1*, auto, 1.2*, 1.2*\"\n                    ColumnSpacing=\"5\"\n                    HorizontalOptions=\"FillAndExpand\">\n                    <ImageButton\n                        Grid.Column=\"0\"\n                        Padding=\"{x:OnPlatform WinUI=10,\n                                               Android=5}\"\n                        BackgroundColor=\"Transparent\"\n                        Command=\"{x:Binding TapCommand,\n                                            Source={x:Reference root}}\"\n                        CommandParameter=\"{x:Binding ComponentData.DocumentUrl,\n                                                     Source={x:Reference root}}\"\n                        HeightRequest=\"50\"\n                        Source=\"github_logo.png\"\n                        ToolTipProperties.Text=\"Github: Source code\"\n                        WidthRequest=\"50\" />\n                    <Button\n                        Grid.Column=\"1\"\n                        BackgroundColor=\"#272b33\"\n                        Clicked=\"Detail_Clicked\"\n                        Text=\"Detail\"\n                        TextColor=\"{x:Static core:AppColors.White}\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"200\" />\n                    <core:IconLabel\n                        Grid.Column=\"2\"\n                        PrefixIcon=\"{x:StaticResource GithubForkIcon}\"\n                        Text=\"{x:Binding Forks,\n                                         Source={x:Reference root}}\"\n                        TextColor=\"{x:Static core:AppColors.White}\" />\n                    <core:IconLabel\n                        Grid.Column=\"3\"\n                        PrefixIcon=\"{x:StaticResource GithubStarIcon}\"\n                        Text=\"{x:Binding Stars,\n                                         Source={x:Reference root}}\"\n                        TextColor=\"{x:Static core:AppColors.White}\" />\n                </Grid>\n            </Grid>\n        </Frame>\n        <HorizontalStackLayout Grid.Row=\"0\" Grid.RowSpan=\"1\">\n            <ImageButton\n                Margin=\"10\"\n                BorderColor=\"Black\"\n                BorderWidth=\"5\"\n                CornerRadius=\"50\"\n                HeightRequest=\"90\"\n                HorizontalOptions=\"Start\"\n                Source=\"{x:Binding AuthorAvatar,\n                                   Source={x:Reference root}}\"\n                VerticalOptions=\"Start\"\n                WidthRequest=\"90\" />\n            <Label\n                Margin=\"0,0,0,40\"\n                FontAttributes=\"Bold\"\n                FontSize=\"24\"\n                Text=\"{x:Binding ComponentData.ControlName,\n                                 Source={x:Reference root}}\"\n                TextColor=\"White\"\n                VerticalOptions=\"Center\" />\n        </HorizontalStackLayout>\n    </Grid>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/ContentViews/GithubCardContentView.xaml.cs",
    "content": "using System.ComponentModel;\nusing System.Runtime.CompilerServices;\n\nnamespace MAUIsland;\n\npublic partial class GithubCardContentView : ContentView\n{\n    #region [ CTor ]\n\n    public GithubCardContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Delegates ]\n\n    public delegate void DetailEventHandler(IGithubGalleryCardInfo control);\n\n    public delegate void DetailInNewWindowEventHandler(IGithubGalleryCardInfo control);\n    #endregion\n\n    #region [ Events ]\n\n    public event DetailEventHandler DetailClicked;\n\n    public event DetailInNewWindowEventHandler DetailInNewWindowClicked;\n\n    public event PropertyChangedEventHandler GithubCardPropertyChanged;\n    #endregion\n\n    #region [ Bindable Properties ]\n\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(IGithubGalleryCardInfo),\n        typeof(GithubCardContentView),\n        default(IGithubGalleryCardInfo)\n    );\n\n    public static readonly BindableProperty RepositoryUrlProperty = BindableProperty.Create(\n        nameof(RepositoryUrl),\n        typeof(string),\n        typeof(GithubCardContentView),\n        default(string)\n    );\n\n    public static readonly BindableProperty AuthorAvatarProperty = BindableProperty.Create(\n        nameof(AuthorAvatar),\n        typeof(string),\n        typeof(GithubCardContentView),\n        default(string)\n    );\n\n    public static readonly BindableProperty IssuesCountProperty = BindableProperty.Create(\n        nameof(Issues),\n        typeof(int),\n        typeof(GithubCardContentView),\n        default(int)\n    );\n\n    public static readonly BindableProperty ForksCountProperty = BindableProperty.Create(\n        nameof(Forks),\n        typeof(int),\n        typeof(GithubCardContentView),\n        default(int)\n    );\n\n    public static readonly BindableProperty StargazersCountProperty = BindableProperty.Create(\n        nameof(Stars),\n        typeof(int),\n        typeof(GithubCardContentView),\n        default(int)\n    );\n\n    public static readonly BindableProperty LicenseProperty = BindableProperty.Create(\n        nameof(License),\n        typeof(string),\n        typeof(GithubCardContentView),\n        default(string)\n    );\n\n    public static readonly BindableProperty UpdateAtProperty = BindableProperty.Create(\n        nameof(UpdateAt),\n        typeof(DateTime),\n        typeof(GithubCardContentView),\n        default(DateTime)\n    );\n\n    public ICommand TapCommand => new Command<string>(async (url) => await Launcher.OpenAsync(url));\n    #endregion\n\n    #region [ Properties ]\n    public IGithubGalleryCardInfo ComponentData\n    {\n        get => (IGithubGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public string RepositoryUrl\n    {\n        get => (string)GetValue(RepositoryUrlProperty);\n        set => SetValue(RepositoryUrlProperty, value);\n    }\n\n    public string AuthorAvatar\n    {\n        get => (string)GetValue(AuthorAvatarProperty);\n        set => SetValue(AuthorAvatarProperty, value);\n    }\n    public int Issues\n    {\n        get => (int)GetValue(IssuesCountProperty);\n        set => SetValue(IssuesCountProperty, value);\n    }\n\n    public int Stars\n    {\n        get => (int)GetValue(StargazersCountProperty);\n        set => SetValue(StargazersCountProperty, value);\n    }\n\n    public int Forks\n    {\n        get => (int)GetValue(ForksCountProperty);\n        set => SetValue(ForksCountProperty, value);\n    }\n\n    public string License\n    {\n        get => (string)GetValue(LicenseProperty);\n        set => SetValue(LicenseProperty, value);\n    }\n    public DateTime UpdateAt\n    {\n        get => (DateTime)GetValue(UpdateAtProperty);\n        set => SetValue(UpdateAtProperty, value);\n    }\n\n    private List<PlatformInfo> supportedPlatformsInfo;\n    public List<PlatformInfo> SupportedPlatformsInfo\n    {\n        get => supportedPlatformsInfo;\n        set => GithubCardSetProperty(ref supportedPlatformsInfo, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n    private void Detail_Clicked(object sender, EventArgs e)\n        => DetailClicked?.Invoke(ComponentData);\n\n    private void DetailInNewWindow_Clicked(object sender, EventArgs e)\n        => DetailInNewWindowClicked?.Invoke(ComponentData);\n\n    private void RaiseGithubCardPropertyChanged(string propertyName)\n        => GithubCardPropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));\n\n    private void root_Loaded(object sender, EventArgs e)\n        => SyncRepoAsync().FireAndForget();\n    #endregion\n\n    #region [ Generic Methods ]\n    protected bool GithubCardSetProperty<T>(ref T property, T value, [CallerMemberName] string propertyName = null)\n    {\n        if (EqualityComparer<T>.Default.Equals(property, value))\n        {\n            return false;\n        }\n\n        property = value;\n        RaiseGithubCardPropertyChanged(propertyName);\n        return true;\n    }\n    #endregion\n\n    #region [ Methods ]\n    public async Task SyncRepoAsync()\n    {\n        //var github = new GitHubClient(new ProductHeaderValue(ComponentData.RepositoryName));\n        //var repository = await github.Repository.Get(ComponentData.AuthorName, ComponentData.RepositoryName);\n\n        var syncService = ServiceHelper.GetService<IGitHubRepositorySyncService>();\n\n        var repository = await syncService?.GetRepositoryAsync(ComponentData.AuthorName, ComponentData.RepositoryName, ComponentData.RepositoryName);\n\n        if (repository == null)\n        {\n            return;\n        }\n\n        this.RepositoryUrl = repository.Url;\n        this.AuthorAvatar = repository.Owner.AvatarUrl;\n        this.Stars = repository.StargazersCount;\n        this.Forks = repository.ForksCount;\n        this.Issues = repository.OpenIssuesCount;\n        this.License = \"No License\";\n        if (repository.License != null && !string.IsNullOrEmpty(repository.License.Name))\n        {\n            this.License = repository.License.Name;\n        }\n        this.UpdateAt = repository.UpdatedAt.UtcDateTime;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/ContentViews/MaterialUICardContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.MaterialUICardContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\">\n    <ContentView.Resources>\n        <Style\n            x:Key=\"MaterialUICardStyle\"\n            BaseResourceKey=\"FilledCardStyle\"\n            TargetType=\"mdc:Card\">\n            <Setter Property=\"HeightRequest\" Value=\"200\" />\n            <Setter Property=\"WidthRequest\" Value=\"370\" />\n        </Style>\n\n        <Style x:Key=\"GridContainerStyle\" TargetType=\"Grid\">\n            <Setter Property=\"RowDefinitions\">\n                <Setter.Value>\n                    <RowDefinitionCollection>\n                        <RowDefinition Height=\"40\" />\n                        <RowDefinition Height=\"70\" />\n                        <RowDefinition Height=\"60\" />\n                    </RowDefinitionCollection>\n                </Setter.Value>\n            </Setter>\n        </Style>\n\n\n        <Style x:Key=\"MaterialUICardTitleStyle\" TargetType=\"Label\">\n            <Setter Property=\"Margin\" Value=\"10,10,0,0\" />\n            <Setter Property=\"FontAttributes\" Value=\"Bold\" />\n            <Setter Property=\"FontSize\" Value=\"20\" />\n            <Setter Property=\"HorizontalOptions\" Value=\"Start\" />\n            <Setter Property=\"VerticalOptions\" Value=\"Start\" />\n            <Setter Property=\"Text\" Value=\"{x:Binding ComponentData.ControlName, Source={x:Reference root}}\" />\n        </Style>\n\n        <Style x:Key=\"ControlIconStyle\" TargetType=\"mdc:IconButton\">\n            <Setter Property=\"HorizontalOptions\" Value=\"End\" />\n            <Setter Property=\"IconData\" Value=\"{x:Binding ComponentData.MaterialIcon, Source={x:Reference root}}\" />\n        </Style>\n\n        <Style x:Key=\"ControlDetailStyle\" TargetType=\"Label\">\n            <Setter Property=\"Grid.Row\" Value=\"1\" />\n            <Setter Property=\"Margin\" Value=\"10,5,0,0\" />\n            <Setter Property=\"HorizontalOptions\" Value=\"Start\" />\n            <Setter Property=\"MaximumWidthRequest\" Value=\"330\" />\n            <Setter Property=\"Text\" Value=\"{Binding ComponentData.ControlDetail, Source={x:Reference root}}\" />\n            <Setter Property=\"VerticalOptions\" Value=\"Start\" />\n        </Style>\n\n        <Style x:Key=\"NavigationButtonsContainerStyle\" TargetType=\"HorizontalStackLayout\">\n            <Setter Property=\"Grid.Row\" Value=\"2\" />\n            <Setter Property=\"Margin\" Value=\"10\" />\n            <Setter Property=\"Spacing\" Value=\"2\" />\n        </Style>\n\n        <Style\n            x:Key=\"DetailButtonStyle\"\n            BaseResourceKey=\"OutlinedButtonStyle\"\n            TargetType=\"mdc:Button\">\n            <Setter Property=\"Text\" Value=\"Detail\" />\n        </Style>\n\n        <Style\n            x:Key=\"DocumentReferenceButtonStyle\"\n            BaseResourceKey=\"TextButtonStyle\"\n            TargetType=\"mdc:Button\">\n            <Setter Property=\"Command\" Value=\"{Binding TapCommand, Source={x:Reference root}}\" />\n            <Setter Property=\"CommandParameter\" Value=\"{Binding ComponentData.DocumentUrl, Source={x:Reference root}}\" />\n            <Setter Property=\"Text\" Value=\"Original Document\" />\n        </Style>\n\n\n    </ContentView.Resources>\n\n    <mdc:Card Style=\"{x:StaticResource MaterialUICardStyle}\">\n        <Grid Style=\"{x:StaticResource GridContainerStyle}\">\n            <Label Style=\"{x:StaticResource MaterialUICardTitleStyle}\" />\n            <mdc:IconButton Style=\"{x:StaticResource ControlIconStyle}\" />\n            <Label Style=\"{x:StaticResource ControlDetailStyle}\" />\n            <HorizontalStackLayout Style=\"{x:StaticResource NavigationButtonsContainerStyle}\">\n                <mdc:Button Clicked=\"Detail_Clicked\" Style=\"{x:StaticResource DetailButtonStyle}\" />\n                <mdc:Button Style=\"{x:StaticResource DocumentReferenceButtonStyle}\" />\n            </HorizontalStackLayout>\n            <mdc:IconButton\n                HorizontalOptions=\"End\"\n                IconData=\"{x:Binding ComponentData.MaterialIcon,\n                                     Source={x:Reference root}}\"\n                VerticalOptions=\"Start\" />\n        </Grid>\n    </mdc:Card>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/ContentViews/MaterialUICardContentView.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class MaterialUICardContentView : ContentView\n{\n    #region [ CTor ]\n\n    public MaterialUICardContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Delegates ]\n    public delegate void DetailEventHandler(IMaterialUIGalleryCardInfo control);\n\n    public delegate void DetailInNewWindowEventHandler(IMaterialUIGalleryCardInfo control);\n    #endregion\n\n    #region [ Event Handlers ]\n    public event DetailEventHandler DetailClicked;\n\n    public event DetailInNewWindowEventHandler DetailInNewWindowClicked;\n    #endregion\n\n    #region [ Properties ]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n                    nameof(ComponentData),\n                    typeof(IMaterialUIGalleryCardInfo),\n                    typeof(MaterialUICardContentView),\n                    default(IMaterialUIGalleryCardInfo)\n                );\n\n    public IMaterialUIGalleryCardInfo ComponentData\n    {\n        get => (IMaterialUIGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void Detail_Clicked(object sender, TouchEventArgs e)\n    {\n        DetailClicked?.Invoke(ComponentData);\n    }\n\n    private void DetailInNewWindow_Clicked(object sender, EventArgs e)\n    {\n        DetailInNewWindowClicked?.Invoke(ComponentData);\n    }\n\n    public ICommand TapCommand => new Command<string>(async (url) => await Launcher.OpenAsync(url));\n    #endregion\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/ContentViews/SyncfusionCardContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.SyncfusionCardContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    x:Name=\"root\">\n    <ContentView.Resources>\n        <FontImageSource\n            x:Key=\"OpenInNewWindowsIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_panel_separate_window_20_regular}\"\n            Color=\"{x:StaticResource White}\" />\n    </ContentView.Resources>\n\n    <Frame\n        Padding=\"0\"\n        BackgroundColor=\"#323232\"\n        CornerRadius=\"2\"\n        HasShadow=\"True\"\n        WidthRequest=\"340\">\n        <Grid>\n            <Ellipse\n                Margin=\"-150,-150,0,0\"\n                Fill=\"#ff8900\"\n                HeightRequest=\"250\"\n                HorizontalOptions=\"Start\"\n                VerticalOptions=\"Start\"\n                WidthRequest=\"270\" />\n            <Border Margin=\"0,0,10,0\"\n                    StrokeThickness=\"0\"\n                    StrokeShape=\"RoundRectangle 0,0,40,40\"\n                    Background=\"#51a930\"\n                    Padding=\"14,3\"\n                    HorizontalOptions=\"End\"\n                    VerticalOptions=\"Start\"\n                    IsVisible=\"{x:Binding IsFreeControl, Source={x:Reference root}}\">\n                        <Label Text=\"Free\"\n                               TextColor=\"White\"\n                               FontSize=\"16\"\n                               FontAttributes=\"Bold\"\n                               HeightRequest=\"30\"/>\n            </Border>\n            <Grid\n                Margin=\"10\"\n                ColumnDefinitions=\"30,280\"\n                ColumnSpacing=\"10\">\n                <Image\n                    Margin=\"0,5,0,0\"\n                    HeightRequest=\"30\"\n                    Source=\"{x:Binding ComponentData.ControlIcon,\n                                       Source={x:Reference root}}\"\n                    VerticalOptions=\"Start\"\n                    WidthRequest=\"30\" />\n\n\n                <VerticalStackLayout\n                    Grid.Column=\"1\"\n                    HorizontalOptions=\"Fill\"\n                    Spacing=\"10\"\n                    VerticalOptions=\"Center\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Subtitle\"\n                        Text=\"{x:Binding ComponentData.ControlName,\n                                         Source={x:Reference root}}\"\n                        TextColor=\"{x:StaticResource White}\" />\n                    <Label\n                        FontSize=\"Body\"\n                        HeightRequest=\"70\"\n                        MaxLines=\"3\"\n                        Text=\"{x:Binding ComponentData.ControlDetail,\n                                         Source={x:Reference root}}\"\n                        TextColor=\"{x:StaticResource White}\"\n                        ToolTipProperties.Text=\"{x:Binding ComponentData.ControlDetail,\n                                                           Source={x:Reference root}}\" />\n                    <Grid ColumnDefinitions=\"*,5, 50\">\n                        <Button\n                            BackgroundColor=\"#ff8900\"\n                            Clicked=\"Detail_Clicked\"\n                            CornerRadius=\"2\"\n                            FontAttributes=\"Bold\"\n                            Text=\"Detail\"\n                            TextColor=\"{x:StaticResource White}\" />\n\n                        <ImageButton\n                            Grid.Column=\"2\"\n                            BackgroundColor=\"#ff8900\"\n                            Clicked=\"DetailInNewWindow_Clicked\"\n                            CornerRadius=\"2\"\n                            Source=\"{x:StaticResource OpenInNewWindowsIcon}\" />\n                    </Grid>\n                </VerticalStackLayout>\n            </Grid>\n            <VerticalStackLayout HorizontalOptions=\"Start\" VerticalOptions=\"End\">\n                <ImageButton\n                    Padding=\"{x:OnPlatform WinUI=10,\n                                           Android=10,\n                                           iOS=5}\"\n                    BackgroundColor=\"Transparent\"\n                    Command=\"{x:Binding TapCommand,\n                                        Source={x:Reference root}}\"\n                    CommandParameter=\"{x:Binding ComponentData.GitHubUrl,\n                                                 Source={x:Reference root}}\"\n                    HeightRequest=\"50\"\n                    Source=\"github_logo.png\"\n                    ToolTipProperties.Text=\"Github: Source code\"\n                    WidthRequest=\"50\" />\n                <ImageButton\n                    Padding=\"{x:OnPlatform WinUI=10,\n                                           Android=10,\n                                           iOS=5}\"\n                    BackgroundColor=\"Transparent\"\n                    Command=\"{x:Binding TapCommand,\n                                        Source={x:Reference root}}\"\n                    CommandParameter=\"{x:Binding ComponentData.DocumentUrl,\n                                                 Source={x:Reference root}}\"\n                    HeightRequest=\"50\"\n                    Source=\"syncfusionlogo.png\"\n                    ToolTipProperties.Text=\"Microsoft Learn: Official document\"\n                    WidthRequest=\"50\" />\n            </VerticalStackLayout>\n        </Grid>\n    </Frame>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/ContentViews/SyncfusionCardContentView.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class SyncfusionCardContentView : ContentView\n{\n    #region [CTor]\n    public SyncfusionCardContentView()\n    {\n        InitializeComponent();\n\n        this.PropertyChanged += (sender, args) =>\n        {\n            if (args.PropertyName == nameof(ComponentData))\n            {\n                UpdateIsFreeControl();\n            }\n        };\n    }\n    #endregion\n\n    #region [Delegates]\n    public delegate void DetailEventHandler(IGalleryCardInfo control);\n\n    public delegate void DetailInNewWindowEventHandler(IGalleryCardInfo control);\n    #endregion\n\n    #region [Event Handlers]\n    public event DetailEventHandler DetailClicked;\n\n    public event DetailInNewWindowEventHandler DetailInNewWindowClicked;\n    #endregion\n\n    #region [Bindable Properties]\n    public static readonly BindableProperty ComponentDataProperty = BindableProperty.Create(\n        nameof(ComponentData),\n        typeof(IGalleryCardInfo),\n        typeof(ControlCardContentView),\n        default(IGalleryCardInfo)\n    );\n\n    public static readonly BindableProperty IsFreeControlProperty = BindableProperty.Create(\n        nameof(IsFreeControl),\n        typeof(bool),\n        typeof(SyncfusionCardContentView),\n        false);\n\n    public ICommand TapCommand => new Command<string>(async (url) => await Launcher.OpenAsync(url));\n    #endregion\n\n    #region [Properties]\n    public IGalleryCardInfo ComponentData\n    {\n        get => (IGalleryCardInfo)GetValue(ComponentDataProperty);\n        set => SetValue(ComponentDataProperty, value);\n    }\n\n    public bool IsFreeControl\n    {\n        get => (bool)GetValue(IsFreeControlProperty);\n        set => SetValue(IsFreeControlProperty, value);\n    }\n\n    public List<string> FreeControls { get; } = new List<string> \n    { \n        \"SfDataGrid\", \n        \"SfCartesianChart\", \n        \"SfCircularChart\", \n        \"SfFunnelChart\", \n        \"SfPyramidChart\", \n        \"SfPolarChart\", \n        \"SfRadialGauge\", \n        \"SfLinearGauge\", \n        \"SfDigitalGauge\", \n        \"SfMap\", \n        \"SfTreeMap\", \n        \"SfListView\", \n        \"SfPopup\", \n        \"SfTextInputLayout\" \n    };\n    #endregion\n\n    #region [Event Handlers]\n    private void Detail_Clicked(object sender, EventArgs e)\n    {\n        DetailClicked?.Invoke(ComponentData);\n    }\n\n    private void DetailInNewWindow_Clicked(object sender, EventArgs e)\n    {\n        DetailInNewWindowClicked?.Invoke(ComponentData);\n    }\n    #endregion\n\n    #region [ Methods ]\n    private void UpdateIsFreeControl()\n    {\n        if (ComponentData != null)\n        {\n            IsFreeControl = FreeControls?.Contains(ComponentData.ControlName) ?? true;\n        }\n        else\n        {\n            IsFreeControl = false;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/DataTemplateSelectors/BrandCardTemplateSelector.cs",
    "content": "﻿namespace MAUIsland;\n\npublic class BrandCardTemplateSelector : DataTemplateSelector\n{\n    public DataTemplate BuiltInCardTemplate { get; set; }\n    public DataTemplate GithubCardTemplate { get; set; }\n    public DataTemplate MaterialUICardTemplate { get; set; }\n    public DataTemplate SyncfustionCardTemplate { get; set; }\n    protected override DataTemplate OnSelectTemplate(object item, BindableObject container)\n    {\n        var controlGroup = ((IGalleryCardInfo)item).GroupName;\n        switch (controlGroup)\n        {\n            case ControlGroupInfo.SyncfusionControls:\n                return SyncfustionCardTemplate;\n            case ControlGroupInfo.GitHubCommunity:\n                return GithubCardTemplate;\n            case ControlGroupInfo.MaterialComponent:\n                return MaterialUICardTemplate;\n            default:\n                return BuiltInCardTemplate;\n        }\n    }\n\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Enums/ControlGroupInfoImportantLevel.cs",
    "content": "﻿namespace MAUIsland;\n\npublic enum ControlGroupInfoImportantLevel\n{\n    Info, Warning, Error\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Handlers/CardsSearchHandler.cs",
    "content": "﻿namespace MAUIsland;\n\npublic class CardsSearchHandler : SearchHandler\n{\n    #region [ CTor ]\n    public CardsSearchHandler()\n    {\n        this.Cards = new();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty CardsProperty = BindableProperty.Create(nameof(Cards),\n                                                                               typeof(ObservableCollection<IGalleryCardInfo>),\n                                                                               typeof(CardsSearchHandler),\n                                                                               new ObservableCollection<IGalleryCardInfo>(),\n                                                                               BindingMode.OneWay);\n    #endregion\n\n    #region [ Properties ]\n    public ObservableCollection<IGalleryCardInfo> Cards\n    {\n        get => (ObservableCollection<IGalleryCardInfo>)GetValue(CardsProperty);\n        set => SetValue(CardsProperty, value);\n    }\n    #endregion\n\n    #region [ Delegates ]\n    public delegate void SelectCardEventHandler(IGalleryCardInfo control);\n    #endregion\n\n    #region [ Event Handlers ]\n    public event SelectCardEventHandler SelectCard;\n\n    protected override void OnQueryChanged(string oldValue, string newValue)\n    {\n        base.OnQueryChanged(oldValue, newValue);\n\n        if (string.IsNullOrWhiteSpace(newValue))\n        {\n            ItemsSource = null;\n        }\n        else\n        {\n            ItemsSource = Cards.Where(control => control.ControlName.ToLower().Contains(newValue.ToLower())).ToList();\n        }\n    }\n\n    protected override async void OnItemSelected(object item)\n    {\n        base.OnItemSelected(item);\n        var selectedCard = item as IGalleryCardInfo;\n        SelectCard?.Invoke(selectedCard);\n    }\n\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Models/ControlGroupInfoImportant.cs",
    "content": "﻿namespace MAUIsland;\n\npublic partial class ControlGroupInfoImportant : BaseModel\n{\n    [ObservableProperty]\n    string content;\n\n    [ObservableProperty]\n    ImageSource? attachImage;\n\n    [ObservableProperty]\n    ControlGroupInfoImportantLevel level;\n\n    [ObservableProperty]\n    string additionalLink;\n}\n\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Models/PlatformInfo.cs",
    "content": "﻿namespace MAUIsland;\n\npublic partial class PlatformInfo : BaseModel\n{\n    [ObservableProperty]\n    string name;\n    [ObservableProperty]\n    string logo;\n    [ObservableProperty]\n    string tooltip;\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/ActivityIndicator/ActivityIndicatorPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ActivityIndicatorPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Activity Indicator\"\n    Padding=\"20\"\n    x:DataType=\"core:ActivityIndicatorPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <core:StringToColorConverter x:Key=\"StringToColorConverter\" />\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) ActivityIndicator displays an animation to show that the application is engaged in a lengthy activity. Unlike ProgressBar, ActivityIndicator gives no indication of progress. The appearance of an ActivityIndicator is platform-dependent, and the following screenshot shows an ActivityIndicator on iOS and Android:\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            ActivityIndicator defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"ActivityIndicatorColorResource\" Type=\"{x:Type x:String}\">\n            <x:String>Red</x:String>\n            <x:String>Blue</x:String>\n            <x:String>Green</x:String>\n            <x:String>White</x:String>\n            <x:String>Black</x:String>\n            <x:String>Cyan</x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Color </strong>, of type <strong style=\"color:blue\">Color </strong>, value that defines the color of the ActivityIndicator.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IsRunning</strong>, of type <strong style=\"color:blue\">bool</strong>,value that indicates whether the ActivityIndicator should be visible and animating, or hidden. The default value of this property is false, which indicates that the ActivityIndicator isn't visible.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <HorizontalStackLayout HorizontalOptions=\"Start\" Spacing=\"10\">\n                                    <ActivityIndicator IsRunning=\"True\" />\n                                    <ActivityIndicator IsRunning=\"True\" Color=\"Green\" />\n                                    <ActivityIndicator IsRunning=\"True\" Color=\"Red\" />\n                                    <ActivityIndicator IsRunning=\"true\" Color=\"Aqua\" />\n                                </HorizontalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding GroupOfActivityIndicators}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Change the color\" />\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Picker\n                                        x:Name=\"ActivityIndicatorColorPicker\"\n                                        Title=\"Choose Color\"\n                                        ItemsSource=\"{x:StaticResource ActivityIndicatorColorResource}\"\n                                        SelectedIndex=\"0\"\n                                        VerticalOptions=\"Center\" />\n                                    <Switch\n                                        x:Name=\"ActivityIndicatorSwitch\"\n                                        IsToggled=\"True\"\n                                        VerticalOptions=\"End\" />\n                                </HorizontalStackLayout>\n                                <ActivityIndicator\n                                    HorizontalOptions=\"Start\"\n                                    IsRunning=\"{x:Binding Source={x:Reference ActivityIndicatorSwitch},\n                                                          Path=IsToggled}\"\n                                    Color=\"{x:Binding Source={x:Reference ActivityIndicatorColorPicker},\n                                                      Path=SelectedItem,\n                                                      Converter={x:StaticResource StringToColorConverter}}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding BindingActivityIndicators}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/ActivityIndicator/ActivityIndicatorPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class ActivityIndicatorPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly ActivityIndicatorPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ] \n\n    public ActivityIndicatorPage(ActivityIndicatorPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/BlazorWebView/Blazor/Components/Counter.razor",
    "content": "﻿@page \"/blazor-web-view/counter\"\n\n@using Microsoft.AspNetCore.Components;\n@using System.ComponentModel;\n\n@inject BlazorWebViewPageViewModel ViewModel\n\n@namespace MAUIsland\n\n<p role=\"status\">Current count: @ViewModel.Counter</p>\n\n<button onclick=@OnCounterButtonClicked>Click me</button>\n\n@code{\n\n    #region [ Override ]\n\n    protected override async Task OnInitializedAsync()\n    {\n        ViewModel.PropertyChanged += OnViewModelChanged;\n        Console.WriteLine(\"Hi there\");\n\n        await base.OnInitializedAsync();\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void OnViewModelChanged(object? sender, PropertyChangedEventArgs e)\n        => StateHasChanged();\n\n    public void Dispose()\n        => ViewModel.PropertyChanged -= OnViewModelChanged;\n\n    void OnCounterButtonClicked()\n    {\n        ViewModel.CounterButtonCommand.Execute(this);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/BlazorWebView/Blazor/Components/Main.razor",
    "content": "﻿@page \"/blazor-web-view/\"\n@page \"/blazor-web-view/main\"\n@namespace MAUIsland\n\n<h1>Hello, world! wutttt?</h1>\n\nWelcome to your new app.\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/BlazorWebView/Blazor/Components/Weather.razor",
    "content": "﻿@page \"/blazor-web-view/weather\"\n@namespace MAUIsland\n\n<h1>Weather</h1>\n\n<p>This component demonstrates showing data.</p>\n\n@if (forecasts == null)\n{\n    <p><em>Loading...</em></p>\n}\nelse\n{\n    <table class=\"table\">\n        <thead>\n            <tr>\n                <th>Date</th>\n                <th>Temp. (C)</th>\n                <th>Temp. (F)</th>\n                <th>Summary</th>\n            </tr>\n        </thead>\n        <tbody>\n            @foreach (var forecast in forecasts)\n            {\n                <tr>\n                    <td>@forecast.Date.ToShortDateString()</td>\n                    <td>@forecast.TemperatureC</td>\n                    <td>@forecast.TemperatureF</td>\n                    <td>@forecast.Summary</td>\n                </tr>\n            }\n        </tbody>\n    </table>\n}\n\n@code {\n    private WeatherForecast[]? forecasts;\n\n    protected override async Task OnInitializedAsync()\n    {\n        // Simulate asynchronous loading to demonstrate a loading indicator\n        await Task.Delay(500);\n\n        var startDate = DateOnly.FromDateTime(DateTime.Now);\n        var summaries = new[] { \"Freezing\", \"Bracing\", \"Chilly\", \"Cool\", \"Mild\", \"Warm\", \"Balmy\", \"Hot\", \"Sweltering\", \"Scorching\" };\n        forecasts = Enumerable.Range(1, 5).Select(index => new WeatherForecast\n        {\n            Date = startDate.AddDays(index),\n            TemperatureC = Random.Shared.Next(-20, 55),\n            Summary = summaries[Random.Shared.Next(summaries.Length)]\n        }).ToArray();\n    }\n\n    private class WeatherForecast\n    {\n        public DateOnly Date { get; set; }\n        public int TemperatureC { get; set; }\n        public string? Summary { get; set; }\n        public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/BlazorWebView/Blazor/NavMenu.razor",
    "content": "﻿@namespace MAUIsland\n\n<div class=\"top-row ps-3 navbar navbar-dark\">\n    <div class=\"container-fluid\">\n        <a class=\"navbar-brand\" href=\"\">MAUIsland</a>\n    </div>\n</div>\n\n<input type=\"checkbox\" title=\"Navigation menu\" class=\"navbar-toggler\" />\n\n<div class=\"nav-scrollable\" onclick=\"document.querySelector('.navbar-toggler').click()\">\n    <nav class=\"flex-column\">\n        <div class=\"nav-item px-3\">\n            <NavLink class=\"nav-link\" href=\"blazor-web-view/main\" Match=\"NavLinkMatch.All\">\n                <span class=\"bi bi-house-door-fill-nav-menu\" aria-hidden=\"true\"></span> Main Page\n            </NavLink>\n        </div>\n        <div class=\"nav-item px-3\">\n            <NavLink class=\"nav-link\" href=\"blazor-web-view/counter\">\n                <span class=\"bi bi-plus-square-fill-nav-menu\" aria-hidden=\"true\"></span> Counter Page\n            </NavLink>\n        </div>\n        <div class=\"nav-item px-3\">\n            <NavLink class=\"nav-link\" href=\"blazor-web-view/weather\">\n                <span class=\"bi bi-list-nested-nav-menu\" aria-hidden=\"true\"></span> Weather Page\n            </NavLink>\n        </div>\n    </nav>\n</div>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/BlazorWebView/Blazor/NavMenu.razor.css",
    "content": ".navbar-toggler {\n    appearance: none;\n    cursor: pointer;\n    width: 3.5rem;\n    height: 2.5rem;\n    color: white;\n    position: absolute;\n    top: 0.5rem;\n    right: 1rem;\n    border: 1px solid rgba(255, 255, 255, 0.1);\n    background: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);\n}\n\n    .navbar-toggler:checked {\n        background-color: rgba(255, 255, 255, 0.5);\n    }\n\n.top-row {\n    height: 3.5rem;\n    background-color: rgba(0,0,0,0.4);\n}\n\n.navbar-brand {\n    font-size: 1.1rem;\n}\n\n.bi {\n    display: inline-block;\n    position: relative;\n    width: 1.25rem;\n    height: 1.25rem;\n    margin-right: 0.75rem;\n    top: -1px;\n    background-size: cover;\n}\n\n.bi-house-door-fill-nav-menu {\n    background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E\");\n}\n\n.bi-plus-square-fill-nav-menu {\n    background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E\");\n}\n\n.bi-list-nested-nav-menu {\n    background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E\");\n}\n\n.nav-item {\n    font-size: 0.9rem;\n    padding-bottom: 0.5rem;\n}\n\n    .nav-item:first-of-type {\n        padding-top: 1rem;\n    }\n\n    .nav-item:last-of-type {\n        padding-bottom: 1rem;\n    }\n\n    .nav-item ::deep a {\n        color: #d7d7d7;\n        border-radius: 4px;\n        height: 3rem;\n        display: flex;\n        align-items: center;\n        line-height: 3rem;\n    }\n\n        .nav-item ::deep a.active {\n            background-color: rgba(255,255,255,0.37);\n            color: white;\n        }\n\n        .nav-item ::deep a:hover {\n            background-color: rgba(255,255,255,0.1);\n            color: white;\n        }\n\n.nav-scrollable {\n    display: none;\n}\n\n.navbar-toggler:checked ~ .nav-scrollable {\n    display: block;\n}\n\n@media (min-width: 641px) {\n    .navbar-toggler {\n        display: none;\n    }\n\n    .nav-scrollable {\n        /* Never collapse the sidebar for wide screens */\n        display: block;\n        /* Allow sidebar to scroll for tall menus */\n        height: calc(100vh - 3.5rem);\n        overflow-y: auto;\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/BlazorWebView/Blazor/_Imports.razor",
    "content": "﻿@using System.Net.Http\n@using System.Net.Http.Json\n@using Microsoft.AspNetCore.Components.Forms\n@using Microsoft.AspNetCore.Components.Routing\n@using Microsoft.AspNetCore.Components.Web\n@using static Microsoft.AspNetCore.Components.Web.RenderMode\n@using Microsoft.AspNetCore.Components.Web.Virtualization\n@using Microsoft.JSInterop\n@using MAUIsland\n@using MAUIsland.Features.Gallery.Pages.BuiltIn.Controls.BlazorWebView.Blazor\n@using MAUIsland.Blazor\n@using MAUIsland.ResumesTemplate\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/BlazorWebView/BlazorWebViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.BlazorWebViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Blazor Web View\"\n    Padding=\"20\"\n    x:DataType=\"core:BlazorWebViewPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n    <core:BasePage.Resources>\n\n\n        <LinearGradientBrush x:Key=\"GradientColor\" EndPoint=\"1,0\">\n            <GradientStop Offset=\"0.0\" Color=\"#DCE35B\" />\n            <GradientStop Offset=\"1.0\" Color=\"#45B649\" />\n        </LinearGradientBrush>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"Section2Title\">\n            Add a BlazorWebView to an existing app\n        </x:String>\n\n        <x:String x:Key=\"Section2\">\n            The process to add a BlazorWebView to an existing .NET MAUI app is as follows:\n        </x:String>\n\n        <x:String x:Key=\"Section21\">\n            1. Add the Razor SDK, Microsoft.NET.Sdk.Razor to your project by editing its first line of the CSPROJ project file:\n        </x:String>\n\n        <x:String x:Key=\"Section212\">\n            The Razor SDK is required to build and package projects containing Razor files for Blazor projects.\n        </x:String>\n\n        <x:String x:Key=\"Section22\">\n            2. Add the root Razor component for the app to the project.\n        </x:String>\n\n        <x:String x:Key=\"Section23\">\n            3. Add your Razor components to project folders named Pages and Shared.\n        </x:String>\n\n        <x:String x:Key=\"Section24\">\n            4. Add your static web assets to a project folder named wwwroot.\n        </x:String>\n\n        <x:String x:Key=\"Section25\">\n            5. Add any optional _Imports.razor files to your project.\n        </x:String>\n\n        <x:String x:Key=\"Section26\">\n            6. Add a BlazorWebView to a page in your .NET MAUI app, and point it to the root of the Blazor app:\n        </x:String>\n\n        <x:String x:Key=\"Section27\">\n            7. Modify the CreateMauiApp method of your MauiProgram class to register the BlazorWebView control for use in your app. To do this, on the IServiceCollection object, call the AddMauiBlazorWebView method to add component web view services to the services collection:\n        </x:String>\n\n        <x:String x:Key=\"Section272\">\n            This code also enables developer tools on the underlying WebView controls, when the app is running in debug configuration.\n        </x:String>\n\n        <x:String x:Key=\"BlazorWebViewPropsHeader\">\n            BlazorWebView defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"BlazorWebViewEventsHeader\">\n            In addition, BlazorWebView defines the following events:\n        </x:String>\n\n        <x:String x:Key=\"RootComponentPropsHeader\">\n            The RootComponent class defines the following properties:\n        </x:String>\n\n        <x:Array x:Key=\"BlazorWebViewProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">HostPage</strong>, of type <strong style=\"color:blue\">string?</strong>, which defines the root page of the Blazor web app.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">RootComponents</strong>, of type <strong style=\"color:blue\">RootComponentsCollection</strong>, which specifies the collection of root components that can be added to the control.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">StartPath</strong>, of type <strong style=\"color:blue\">string</strong>, which defines the path for initial navigation within the Blazor navigation context when the Blazor component is finished loading.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"BlazorWebViewEvents\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">BlazorWebViewInitializing</strong>, with an accompanying <strong style=\"color:blue\">BlazorWebViewInitializingEventArgs</strong> object, which is raised before the BlazorWebView is initialized. This event enables customization of the BlazorWebView configuration.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">BlazorWebViewInitialized</strong>, with an accompanying <strong style=\"color:blue\">BlazorWebViewInitializedEventArgs</strong>, object, which is raised after the BlazorWebView is initialized but before any component has been rendered. This event enables retrieval of the platform-specific web view instance.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">UrlLoading</strong>, with an accompanying <strong style=\"color:blue\">UrlLoadingEventArgs</strong>, is raised when a hyperlink is clicked within a BlazorWebView. This event enables customization of whether a hyperlink is opened in the BlazorWebView, in an external app, or whether the URL loading attempt is cancelled.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"RootComponentProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[  <strong style=\"color:blue\">Selector</strong>, of type <strong style=\"color:blue\">string?</strong>, which defines the CSS selector string that specifies where in the document the component should be placed.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[  <strong style=\"color:blue\">ComponentType</strong>, of type <strong style=\"color:blue\">Type?</strong>, which defines the type of the root component.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[  <strong style=\"color:blue\">Parameters</strong>, of type <strong style=\"color:blue\">IDictionary?</strong> (string, object?), which represents an optional dictionary of parameters to pass to the root component.  ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"8\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"8\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"8\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource BlazorWebViewPropsHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource BlazorWebViewProperties}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource BlazorWebViewEventsHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource BlazorWebViewEvents}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource RootComponentPropsHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource RootComponentProperties}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"8\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Demo\" />\n                                <Button\n                                    Command=\"{x:Binding CounterButtonCommand}\"\n                                    HorizontalOptions=\"Start\"\n                                    Text=\"Click me from XAML\" />\n                                <Label FontSize=\"16\">\n                                    <Label.FormattedText>\n                                        <FormattedString>\n                                            <Span Text=\"Total Counter: \" />\n                                            <Span Text=\"{x:Binding Counter, Mode=OneWay}\" />\n                                            <Span Text=\" (Navigate to counter page)\" />\n                                        </FormattedString>\n                                    </Label.FormattedText>\n                                </Label>\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Pages\" />\n                                <CollectionView ItemsLayout=\"HorizontalList\" ItemsSource=\"{x:Binding NavigationPageName}\">\n                                    <CollectionView.ItemTemplate>\n                                        <DataTemplate x:DataType=\"x:String\">\n                                            <Button Clicked=\"PageNavigateButton_Clicked\" Text=\"{x:Binding}\" />\n                                        </DataTemplate>\n                                    </CollectionView.ItemTemplate>\n                                </CollectionView>\n                                <Border\n                                    Padding=\"0\"\n                                    HeightRequest=\"320\"\n                                    StrokeShape=\"RoundRectangle 4\"\n                                    StrokeThickness=\"0\">\n                                    <BlazorWebView\n                                        x:Name=\"BlazorWebView\"\n                                        HostPage=\"wwwroot\\index.html\"\n                                        StartPath=\"{x:Binding BlazorWebViewStartPath}\">\n                                        <BlazorWebView.RootComponents>\n                                            <RootComponent ComponentType=\"{x:Type app:Routes}\" Selector=\"#app\"/>\n                                        </BlazorWebView.RootComponents>\n                                    </BlazorWebView>\n                                </Border>\n                                <Button\n                                    Background=\"{x:StaticResource GradientColor}\"\n                                    Command=\"{x:Binding NavigatePageCommand}\"\n                                    CommandParameter=\"{x:Static app:AppRoutes.ResumeDetailPage}\"\n                                    Text=\"Try out our preview resume builder\"\n                                    TextColor=\"{x:Static core:AppColors.White}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"8\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:StaticResource Section2Title}\" />\n                                <Label Text=\"{x:StaticResource Section2}\" />\n                                <Label Text=\"{x:StaticResource Section21}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CsprojChanges}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:StaticResource Section212}\" />\n                                <Label Text=\"{x:StaticResource Section22}\" />\n                                <Label Text=\"{x:StaticResource Section23}\" />\n                                <Label Text=\"{x:StaticResource Section24}\" />\n                                <Label Text=\"{x:StaticResource Section25}\" />\n                                <Label Text=\"{x:StaticResource Section26}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding BlazorWebViewXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:StaticResource Section27}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding BlazorWebViewConfig}\" CodeType=\"CSharp\" />\n                                <Label Text=\"{x:StaticResource Section272}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/BlazorWebView/BlazorWebViewPage.xaml.cs",
    "content": "using Microsoft.AspNetCore.Components;\nusing Microsoft.AspNetCore.Components.WebView.Maui;\n\nnamespace MAUIsland;\n\npublic partial class BlazorWebViewPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly BlazorWebViewPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ] \n    public BlazorWebViewPage(BlazorWebViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    private async void PageNavigateButton_Clicked(System.Object sender, System.EventArgs e)\n    {\n        var button = (Button)sender;\n        var pageUrl = viewModel.BlazorWebViewStartPath + button.Text.Replace(\" Page\", \"\").ToLower();\n        var wasDispatchCalled = await BlazorWebView.TryDispatchAsync(sp =>\n        {\n            var navMan = sp.GetRequiredService<NavigationManager>();\n            navMan.NavigateTo(pageUrl);\n        });\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Border/BorderPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.BorderPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Border\"\n    Padding=\"10\"\n    x:DataType=\"core:BorderPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.Resources>\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) Button displays text and responds to a tap or click that directs the app to carry out a task. A Button usually displays a short text string indicating a command, but it can also display a bitmap image, or a combination of text and an image. When the Button is pressed with a finger or clicked with a mouse it initiates that command.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"CreateBorder1\">\n            Alternatively, the StrokeShape property value can be specified using property tag syntax:\n        </x:String>\n\n        <x:String x:Key=\"CreateBorder2\">\n            To draw a border, create a Border object and set its properties to define its appearance. Then, set its child to the control to which the border should be added. The following XAML example shows how to draw a border around a Label:\n        </x:String>\n\n        <x:String x:Key=\"CreateBorder3\">\n            The equivalent C# code is:\n        </x:String>\n\n        <x:String x:Key=\"CreateBorder4\">\n            In this example, a border with rounded top-left and bottom-right corners is drawn around a Label. The border shape is defined as a RoundRectangle object, whose CornerRadius property is set to a Thickness value that enables independent control of each corner of the rectangle:\n        </x:String>\n\n        <x:String x:Key=\"CreateBorder5\">\n            Because the Stroke property is of type Brush, borders can also be drawn using gradients:\n        </x:String>\n\n        <x:String x:Key=\"CreateBorder6\">\n            In this example, a border that uses a linear gradient is drawn around a Label:\n        </x:String>\n\n        <x:String x:Key=\"DefineBorderShapeTitle\">\n            Define the border shape with a string\n        </x:String>\n\n        <x:String x:Key=\"DefineBorderShapeDescription\">\n            In XAML, the value of the StrokeShape property can be defined using property-tag syntax, or as a string. Valid string values for the StrokeShape property are:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Border defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:String x:Key=\"ImageButtonControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) Border is a container control that draws a border, background, or both, around another control. A Border can only contain one child object. If you want to put a border around multiple objects, wrap them in a container object such as a layout.\n        </x:String>\n\n        <x:String x:Key=\"Important1\">\n            When creating a border using a shape, such as a Rectangle or Polygon, only closed shapes should be used. Therefore, open shapes such as Line are unsupported.\n        </x:String>\n\n        <x:String x:Key=\"Important2\">\n            While Line is a valid string value for the StrokeShape property, its use is not supported.\n        </x:String>\n\n        <x:String x:Key=\"BorderShapeWithString\">\n            String-based x- and y-coordinate pairs can be delimited by a single comma and/or one or more spaces. For example, \"40,10 70,80\" and \"40 10, 70 80\" are both valid. Coordinate pairs will be converted to Point objects that define X and Y properties, of type double.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Content</strong>, of type <strong style=\"color:blue\">IView</strong>, represents the content to display in the border. This property is the ContentProperty of the Border class, and therefore does not need to be explicitly set from XAML.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Padding</strong>, of type <strong style=\"color:blue\">Thickness</strong>, represents the distance between the border and its child element.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">StrokeShape</strong>, of type <strong style=\"color:blue\">IShape</strong>, describes the shape of the border. This property has a type converter applied to it that can convert a string to its equivalent IShape. It's default value is Rectangle. Therefore, a Border will be rectangular by default.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Stroke</strong>, of type <strong style=\"color:blue\">Brush</strong>, indicates the brush used to paint the border.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">StrokeThickness</strong>, of type <strong style=\"color:blue\">double</strong>, indicates the width of the border. The default value of this property is 1.0.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">StrokeDashArray</strong>, of type <strong style=\"color:blue\">DoubleCollection</strong>, which represents a collection of double values that indicate the pattern of dashes and gaps that make up the border.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">StrokeDashOffset</strong>, of type <strong style=\"color:blue\">double</strong>, specifies the distance within the dash pattern where a dash begins. The default value of this property is 0.0.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">StrokeLineCap</strong>, of type <strong style=\"color:blue\">PenLineCap</strong>, describes the shape at the start and end of its line. The default value of this property is PenLineCap.Flat.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">StrokeLineJoin</strong>, of type <strong style=\"color:blue\">PenLineJoin</strong>, specifies the type of join that is used at the vertices of the stroke shape. The default value of this property is PenLineJoin.Miter.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">StrokeMiterLimit</strong>, of type <strong style=\"color:blue\">double</strong>, specifies the limit on the ratio of the miter length to half the stroke thickness. The default value of this property is 10.0.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">double</strong>, defines the font size.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ImageSource</strong>, of type <strong style=\"color:blue\">ImageSource</strong>, specifies a bitmap image to display as the content of the button.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">LineBreakMode</strong>, of type <strong style=\"color:blue\">LineBreakMode</strong>, determines how text should be handled when it can't fit on one line.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Padding</strong>, of type <strong style=\"color:blue\">Thickness</strong>, determines the button's padding.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Text</strong>, of type <strong style=\"color:blue\">string</strong>, defines the text displayed as the content of the button.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, describes the color of the button's text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextTransform</strong>, of type <strong style=\"color:blue\">TextTransform</strong>, defines the casing of the button's text.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"BorderShapePropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                        <strong style=\"color:blue\">Ellipse</strong>\n                    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                        <strong style=\"color:blue\">Rectangle</strong>\n                    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                        <strong style=\"color:blue\">Line</strong>, followed by one or two x- and y-coordinate pairs. For example, Line 10 20 draws a line from (10,20) to (0,0), and Line 10 20, 100 120 draws a line from (10,20) to (100,120).\n                    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                        <strong style=\"color:blue\">Path</strong>, followed by path markup syntax data. For example, Path M 10,100 L 100,100 100,50Z will draw a triangular border. For more information about path markup syntax, see Path markup syntax.\n                    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                        <strong style=\"color:blue\">Polygon</strong>, followed by a collection of x- and y-coordinate pairs. For example, Polygon 40 10, 70 80, 10 50.\n                    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                        <strong style=\"color:blue\">Polyline</strong>, followed by a collection x- and y-coordinate pairs. For example, Polyline 0,0 10,30 15,0 18,60 23,30 35,30 40,0 43,60 48,30 100,30.\n                    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                        <strong style=\"color:blue\">RoundRectangle</strong>, optionally followed by a corner radius. For example, RoundRectangle 40 or RoundRectangle 40,0,0,40.\n                    ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Looking for the rounded syntax again 🤣🤣?\" />\n                                <Label Text=\"Here you go\" />\n                                <Label\n                                    Padding=\"5\"\n                                    BackgroundColor=\"Yellow\"\n                                    HorizontalOptions=\"Start\"\n                                    Text=\"{x:Binding RoundedRectangleXamlCode}\"\n                                    TextColor=\"Black\">\n                                    <Label.GestureRecognizers>\n                                        <TapGestureRecognizer Command=\"{x:Binding CopyToClipboardCommand}\" CommandParameter=\"{x:Binding RoundedRectangleXamlCode}\" />\n                                    </Label.GestureRecognizers>\n                                    <Label.Behaviors>\n                                        <toolkit:AnimationBehavior>\n                                            <toolkit:AnimationBehavior.AnimationType>\n                                                <toolkit:FadeAnimation Opacity=\"0.2\" />\n                                            </toolkit:AnimationBehavior.AnimationType>\n                                        </toolkit:AnimationBehavior>\n                                    </Label.Behaviors>\n                                </Label>\n                                <core:SourceCodeExpander Code=\"{x:Binding RoundedRectangle2XamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border\n                            Padding=\"10\"\n                            BackgroundColor=\"#004173\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout>\n                                <Label\n                                    Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                    Text=\"Important\"\n                                    TextColor=\"White\" />\n                                <Label Text=\"{x:StaticResource Important1}\" TextColor=\"White\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Create a Border\" />\n                                <Label Text=\"{x:StaticResource CreateBorder1}\" />\n                                <Border\n                                    Padding=\"16,8\"\n                                    Background=\"#2B0B98\"\n                                    HorizontalOptions=\"Center\"\n                                    Stroke=\"#C49B33\"\n                                    StrokeShape=\"RoundRectangle 40,0,0,40\"\n                                    StrokeThickness=\"4\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        FontSize=\"18\"\n                                        Text=\".NET MAUI\"\n                                        TextColor=\"White\" />\n                                </Border>\n                                <core:SourceCodeExpander Code=\"{x:Binding CreateBorderXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:StaticResource CreateBorder1}\" />\n                                <Border\n                                    Padding=\"16,8\"\n                                    Background=\"#2B0B98\"\n                                    HorizontalOptions=\"Center\"\n                                    Stroke=\"#C49B33\"\n                                    StrokeShape=\"RoundRectangle 40,0,0,40\"\n                                    StrokeThickness=\"4\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        FontSize=\"18\"\n                                        Text=\".NET MAUI\"\n                                        TextColor=\"White\" />\n                                </Border>\n                                <core:SourceCodeExpander Code=\"{x:Binding CreateBorder2XamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:StaticResource CreateBorder2}\" />\n                                <Label Text=\"{x:StaticResource CreateBorder3}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CreateBorder3CSharpCode}\" CodeType=\"CSharp\" />\n                                <Label Text=\"{x:StaticResource CreateBorder4}\" />\n                                <Grid x:Name=\"CreateBorderExampleGrid\" />\n                                <Label Text=\"{x:StaticResource CreateBorder5}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CreateBorder4XamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:StaticResource CreateBorder3}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CreateBorder4CSharpCode}\" CodeType=\"CSharp\" />\n                                <Label Text=\"{x:StaticResource CreateBorder6}\" />\n                                <Border\n                                    Padding=\"16,8\"\n                                    Background=\"#2B0B98\"\n                                    HorizontalOptions=\"Center\"\n                                    StrokeShape=\"RoundRectangle 40,0,0,40\"\n                                    StrokeThickness=\"4\">\n                                    <Border.Stroke>\n                                        <LinearGradientBrush EndPoint=\"0,1\">\n                                            <GradientStop Offset=\"0.1\" Color=\"Orange\" />\n                                            <GradientStop Offset=\"1.0\" Color=\"Brown\" />\n                                        </LinearGradientBrush>\n                                    </Border.Stroke>\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        FontSize=\"18\"\n                                        Text=\".NET MAUI\"\n                                        TextColor=\"White\" />\n                                </Border>\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:StaticResource DefineBorderShapeTitle}\" />\n                                <Label Text=\"{x:StaticResource DefineBorderShapeDescription}\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource BorderShapePropertyItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <core:DocumentAlert AlertType=\"Important\" Text=\"{x:StaticResource Important2}\" />\n                                <Label Text=\"{x:StaticResource BorderShapeWithString}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Border/BorderPage.xaml.cs",
    "content": "using Microsoft.Maui.Controls.Shapes;\n\nnamespace MAUIsland;\n\npublic partial class BorderPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly BorderPageViewModel viewModel;\n    #endregion\n\n\n    #region [ CTor ]\n\n\n    public BorderPage(BorderPageViewModel vm)\n    {\n        InitializeComponent();\n        viewModel = vm;\n        BindingContext = viewModel;\n\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n        CreateBorderUsingCSharp();\n    }\n    #endregion\n\n    #region [ Methods ]\n\n    void CreateBorderUsingCSharp()\n    {\n        Border border = new Border\n        {\n            Stroke = Color.FromArgb(\"#C49B33\"),\n            Background = Color.FromArgb(\"#2B0B98\"),\n            StrokeThickness = 4,\n            Padding = new Thickness(16, 8),\n            HorizontalOptions = LayoutOptions.Center,\n            StrokeShape = new RoundRectangle\n            {\n                CornerRadius = new CornerRadius(40, 0, 0, 40)\n            },\n            Content = new Label\n            {\n                Text = \".NET MAUI\",\n                TextColor = Colors.White,\n                FontSize = 18,\n                FontAttributes = FontAttributes.Bold\n            }\n        };\n\n        CreateBorderExampleGrid.Add(border);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Button/ButtonPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ButtonPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Button\"\n    Padding=\"20\"\n    x:DataType=\"core:ButtonPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.Resources>\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) Button displays text and responds to a tap or click that directs the app to carry out a task. A Button usually displays a short text string indicating a command, but it can also display a bitmap image, or a combination of text and an image. When the Button is pressed with a finger or clicked with a mouse it initiates that command.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Button defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:String x:Key=\"ImageButtonControlInfo\">\n            The Button class defines an ImageSource property that allows you to display a small bitmap image on the Button, either alone or in combination with text. You can also specify how the text and image are arranged. The ImageSource property is of type ImageSource, which means that the bitmaps can be loaded from a file, embedded resource, URI, or stream.\n        </x:String>\n\n        <x:String x:Key=\"Note1\">\n            While Button defines an ImageSource property, that allows you to display a image on the Button, this property is intended to be used when displaying a small icon next to the Button text.\n        </x:String>\n\n        <x:String x:Key=\"ControlInfo1\">\n            In addition, Button defines Clicked, Pressed, and Released events. The Clicked event is raised when a Button tap with a finger or mouse pointer is released from the button's surface. The Pressed event is raised when a finger presses on a Button, or a mouse button is pressed with the pointer positioned over the Button. The Released event is raised when the finger or mouse button is released. Generally, a Clicked event is also raised at the same time as the Released event, but if the finger or mouse pointer slides away from the surface of the Button before being released, the Clicked event might not occur.\n        </x:String>\n\n        <x:String x:Key=\"Important\">\n            A Button must have its IsEnabled property set to true for it to respond to taps.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">BorderColor</strong>, of type <strong style=\"color:blue\">Color</strong>, describes the border color of the button.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">BorderWidth</strong>, of type <strong style=\"color:blue\">double</strong>, defines the width of the button's border.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CharacterSpacing</strong>, of type <strong style=\"color:blue\">double</strong>, defines the spacing between characters of the button's text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Command</strong>, of type <strong style=\"color:blue\">ICommand</strong>, defines the command that's executed when the button is tapped.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CommandParameter</strong>, of type <strong style=\"color:blue\">object</strong>, is the parameter that's passed to Command.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ContentLayout</strong>, of type <strong style=\"color:blue\">ButtonContentLayout</strong>, defines the object that controls the position of the button image and the spacing between the button's image and text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CornerRadius</strong>, of type <strong style=\"color:blue\">int</strong>, describes the corner radius of the button's border.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAttributes</strong>, of type <strong style=\"color:blue\">FontAttributes</strong>, determines text style.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAutoScalingEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, defines whether the button text will reflect scaling preferences set in the operating system. The default value of this property is true.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontFamily</strong>, of type <strong style=\"color:blue\">string</strong>, defines the font family.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">double</strong>, defines the font size.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ImageSource</strong>, of type <strong style=\"color:blue\">ImageSource</strong>, specifies a bitmap image to display as the content of the button.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">LineBreakMode</strong>, of type <strong style=\"color:blue\">LineBreakMode</strong>, determines how text should be handled when it can't fit on one line.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Padding</strong>, of type <strong style=\"color:blue\">Thickness</strong>, determines the button's padding.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Text</strong>, of type <strong style=\"color:blue\">string</strong>, defines the text displayed as the content of the button.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, describes the color of the button's text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextTransform</strong>, of type <strong style=\"color:blue\">TextTransform</strong>, defines the casing of the button's text.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"A simple button with text content\" />\n                                <Grid>\n                                    <Button\n                                        HorizontalOptions=\"Start\"\n                                        IsEnabled=\"{x:Binding IsEnable}\"\n                                        Text=\"Standard XAML Button\"\n                                        VerticalOptions=\"Center\" />\n                                    <HorizontalStackLayout HorizontalOptions=\"End\">\n                                        <CheckBox IsChecked=\"{x:Binding IsEnable, Mode=TwoWay}\" VerticalOptions=\"Center\" />\n                                        <Label Text=\"Enable Button\" VerticalOptions=\"Center\" />\n                                    </HorizontalStackLayout>\n                                </Grid>\n                                <core:SourceCodeExpander Code=\"{x:Binding StandardButtonXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <core:DocumentAlert AlertType=\"Note\" Text=\"{x:StaticResource Note1}\" />\n                                <Label Text=\"{x:StaticResource ControlInfo1}\" />\n                                <core:DocumentAlert AlertType=\"Important\" Text=\"{x:StaticResource Important}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Title\"\n                                    Text=\"You can change the background color of the button\" />\n\n                                <ScrollView HorizontalOptions=\"Start\" HorizontalScrollBarVisibility=\"Always\">\n                                    <HorizontalStackLayout Spacing=\"10\">\n                                        <Button\n                                            BackgroundColor=\"Green\"\n                                            Text=\"Green\"\n                                            TextColor=\"{x:StaticResource White}\" />\n\n                                        <Button\n                                            BackgroundColor=\"Red\"\n                                            Text=\"Red\"\n                                            TextColor=\"{x:StaticResource White}\" />\n\n                                        <Button\n                                            BackgroundColor=\"{x:StaticResource Primary}\"\n                                            Text=\"Application Primary Color\"\n                                            TextColor=\"{x:StaticResource White}\" />\n\n                                        <!--  This button will be Cyan when in dark mode and Blue when light mode  -->\n                                        <Button\n                                            BackgroundColor=\"{x:AppThemeBinding Dark={x:StaticResource Cyan300Accent},\n                                                                                Light={x:StaticResource Blue300Accent}}\"\n                                            Text=\"Dark or Light mode color\"\n                                            TextColor=\"{x:StaticResource Black}\" />\n                                    </HorizontalStackLayout>\n                                </ScrollView>\n                                <core:SourceCodeExpander Code=\"{x:Binding ButtonsChangedBackgroundGroupXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Apply rotation to a button\" />\n                                <Button\n                                    Margin=\"40,0,0,0\"\n                                    BackgroundColor=\"Red\"\n                                    BorderColor=\"Black\"\n                                    BorderWidth=\"2\"\n                                    CharacterSpacing=\"4\"\n                                    CornerRadius=\"30\"\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"18\"\n                                    HeightRequest=\"70\"\n                                    HorizontalOptions=\"Start\"\n                                    LineBreakMode=\"WordWrap\"\n                                    RotationX=\"10\"\n                                    RotationY=\"30\"\n                                    Text=\"MAUI Button Test\"\n                                    TextColor=\"White\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"250\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding RotationButtonXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Border.Resources>\n                                <FontImageSource\n                                    x:Key=\"HomeIcon\"\n                                    FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n                                    Glyph=\"{Static core:FluentUIIcon.Ic_fluent_home_20_regular}\"\n                                    Color=\"{x:AppThemeBinding Dark={x:StaticResource Primary},\n                                                              Light={x:StaticResource White}}\" />\n\n                                <FontImageSource\n                                    x:Key=\"DownloadIcon\"\n                                    FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n                                    Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_download_20_regular}\"\n                                    Color=\"{x:AppThemeBinding Dark={x:StaticResource Primary},\n                                                              Light={x:StaticResource White}}\" />\n                            </Border.Resources>\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Use bitmaps with buttons\" />\n                                <Label Text=\"{x:StaticResource ImageButtonControlInfo}\" />\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Button ImageSource=\"{x:StaticResource HomeIcon}\" Text=\"Home\" />\n\n                                    <Button ImageSource=\"{x:StaticResource DownloadIcon}\" Text=\"Download\" />\n                                </HorizontalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding ButtonWithImageXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Button/ButtonPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class ButtonPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly ButtonPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public ButtonPage(ButtonPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/CarouselView/CarouselViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.CarouselViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Carousel View\"\n    Padding=\"20\"\n    x:DataType=\"core:CarouselViewPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n    <core:BasePage.Resources>\n        <x:String x:Key=\"PropertiesListHeader\">\n            CarouselView defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ItemsSource</strong>, of type <strong style=\"color:blue\">IEnumerable</strong>, sets the collection of items to be displayed in the carousel.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ItemTemplate</strong>, of type <strong style=\"color:blue\">DataTemplate</strong>, defines the presentation of the data in the carousel.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Position</strong>, of type <strong style=\"color:blue\">int</strong>, gets or sets the currently selected item.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CurrentItem</strong>, of type <strong style=\"color:blue\">object</strong>, represents the current item being displayed. This property has a default binding mode of TwoWay, and has a null value when there isn't any data to display.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CurrentItemChangedCommand</strong>, of type <strong style=\"color:blue\">ICommand</strong>, is executed when the current item changes.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CurrentItemChangedCommandParameter</strong>, of type <strong style=\"color:blue\">object</strong>, is the parameter that's passed to the CurrentItemChangedCommand.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CurrentItemChangedEventArgs</strong>, of type <strong style=\"color:blue\">object</strong>, accompanies the CurrentItemChanged event and has two properties, both of type object: PreviousItem – the previous item, after the property change. CurrentItem – the current item, after the property change.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ItemsLayout</strong>, of type <strong style=\"color:blue\">IItemsLayout</strong>, defines the strategy for laying out the items in the carousel.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">PeekAreaInsets</strong>, of type <strong style=\"color:blue\">Thickness</strong>, gets or sets the insets for the visible area that peeks into the non-visible area.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">IsBounceEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, gets or sets whether bouncing is enabled for the carousel.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">IsScrollAnimated</strong>, of type <strong style=\"color:blue\">bool</strong>, gets or sets whether scrolling is animated.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">IsSwipeEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, gets or sets whether swiping is enabled.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">IsScrolling</strong>, of type <strong style=\"color:blue\">bool</strong>, gets a value that indicates whether the user is scrolling the carousel.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Loop</strong>, of type <strong style=\"color:blue\">bool</strong>, gets or sets whether the carousel should loop.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">RemainingItemsThreshold</strong>, of type <strong style=\"color:blue\">int</strong>, gets or sets the threshold of items not yet visible in the list at which the RemainingItemsThresholdReached event will be fired.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">RemainingItemsThresholdReachedCommand</strong>, of type <strong style=\"color:blue\">ICommand</strong>, gets or sets the command that will be executed when the RemainingItemsThreshold is reached.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">RemainingItemsThresholdReachedCommandParameter</strong>, of type <strong style=\"color:blue\">object</strong>, which is the parameter that's passed to the <strong style=\"color:blue\">RemainingItemsThresholdReachedCommand</strong>.  ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"CarouselViewInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The CarouselView in .NET Multi-platform App UI (.NET MAUI) is a user interface element that allows data to be displayed in a layout that can be scrolled through. Users can swipe to navigate through a set of items.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   CarouselView, by default, arranges its items horizontally. It shows one item at a time on the screen, and users can swipe left or right to navigate through the items. It also has the capability to show indicators for each item in the collection.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   CarouselView offers a looping feature. This means if a user swipes back from the first item, they will see the last item in the collection. Similarly, swiping forward from the last item will bring them back to the first item.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   CarouselView shares a lot of its functionality with CollectionView. However, they are used for different purposes. CollectionView is generally used for displaying long lists of data, while CarouselView is more suited for showcasing a limited number of items. For more details about CollectionView, please refer to the CollectionView documentation.  ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"CarouselViewDataTemplateSelector\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The appearance of each item in the CarouselView can be chosen at runtime, based on the item value, and by using converter.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   Set the CarouselView.ItemTemplate property to a DataTemplateSelector object. DataTemplateSelector class defines DataTemplate properties that are set to different data templates. Apply logic to return the desired template in slector class.  ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"NormalDataTemplate\" x:DataType=\"core:CarouselItem\">\n            <StackLayout>\n                <Frame\n                    BorderColor=\"DarkGray\"\n                    CornerRadius=\"5\"\n                    HasShadow=\"True\"\n                    HeightRequest=\"300\"\n                    HorizontalOptions=\"Center\"\n                    VerticalOptions=\"Center\">\n                    <StackLayout>\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"20\"\n                            HorizontalOptions=\"Center\"\n                            Text=\"{Binding Title}\"\n                            VerticalOptions=\"Center\" />\n                        <Image\n                            Aspect=\"AspectFill\"\n                            HeightRequest=\"150\"\n                            HorizontalOptions=\"Center\"\n                            Source=\"microsoft.png\"\n                            WidthRequest=\"150\" />\n                        <Label HorizontalOptions=\"Center\" Text=\"{Binding Content}\" />\n                    </StackLayout>\n                </Frame>\n            </StackLayout>\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"HighlightedDataTemplate\" x:DataType=\"core:CarouselItem\">\n            <StackLayout>\n                <Frame\n                    Margin=\"20\"\n                    BackgroundColor=\"GreenYellow\"\n                    BorderColor=\"Black\"\n                    CornerRadius=\"5\"\n                    HasShadow=\"True\"\n                    HeightRequest=\"300\"\n                    HorizontalOptions=\"Center\"\n                    VerticalOptions=\"Center\">\n                    <StackLayout>\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"20\"\n                            HorizontalOptions=\"Center\"\n                            Text=\"{Binding Title}\"\n                            VerticalOptions=\"Center\" />\n                        <Image\n                            Aspect=\"AspectFill\"\n                            HeightRequest=\"150\"\n                            HorizontalOptions=\"Center\"\n                            Source=\"microsoft.png\"\n                            WidthRequest=\"150\" />\n                        <Label HorizontalOptions=\"Center\" Text=\"{Binding Content}\" />\n                    </StackLayout>\n                </Frame>\n            </StackLayout>\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"CarouselSwipeViewItemTemplate\">\n            <StackLayout>\n                <Frame\n                    Margin=\"20\"\n                    HeightRequest=\"300\"\n                    HorizontalOptions=\"Center\"\n                    VerticalOptions=\"CenterAndExpand\">\n                    <SwipeView>\n                        <SwipeView.TopItems>\n                            <SwipeItems>\n                                <SwipeItem\n                                    BackgroundColor=\"LightGreen\"\n                                    Command=\"{x:Binding Path=BindingContext.SwipeViewFavoriteCommand,\n                                                        Source={x:RelativeSource AncestorType={x:Type ContentPage}}}\"\n                                    CommandParameter=\"{Binding}\"\n                                    IconImageSource=\"{x:Static core:FluentUIIcon.Ic_fluent_heart_24_regular}\"\n                                    Text=\"Favorite\" />\n                            </SwipeItems>\n                        </SwipeView.TopItems>\n                        <SwipeView.BottomItems>\n                            <SwipeItems>\n                                <SwipeItem\n                                    BackgroundColor=\"LightPink\"\n                                    Command=\"{x:Binding Path=BindingContext.SwipeViewDeleteCommand,\n                                                        Source={x:RelativeSource AncestorType={x:Type ContentPage}}}\"\n                                    CommandParameter=\"{Binding}\"\n                                    IconImageSource=\"{x:Static core:FluentUIIcon.Ic_fluent_delete_24_regular}\"\n                                    Text=\"Delete\" />\n                            </SwipeItems>\n                        </SwipeView.BottomItems>\n                        <StackLayout x:DataType=\"core:CarouselItem\">\n                            <Label\n                                FontAttributes=\"Bold\"\n                                FontSize=\"20\"\n                                HorizontalOptions=\"Center\"\n                                Text=\"{Binding Title}\"\n                                VerticalOptions=\"Center\" />\n                            <Image\n                                Aspect=\"AspectFill\"\n                                HeightRequest=\"150\"\n                                HorizontalOptions=\"Center\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"150\" />\n                            <Label HorizontalOptions=\"Center\" Text=\"{Binding Content}\" />\n                        </StackLayout>\n                    </SwipeView>\n                </Frame>\n            </StackLayout>\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"CollectionViewDataTemplate\" x:DataType=\"core:CarouselItem\">\n            <StackLayout>\n                <Frame\n                    Margin=\"5\"\n                    Background=\"DarkGray\"\n                    BorderColor=\"Transparent\"\n                    CornerRadius=\"5\"\n                    HasShadow=\"True\"\n                    VerticalOptions=\"Center\">\n                    <HorizontalStackLayout HorizontalOptions=\"Center\">\n                        <Label Text=\"{Binding Content}\" TextColor=\"White\" />\n                    </HorizontalStackLayout>\n                </Frame>\n            </StackLayout>\n        </DataTemplate>\n\n        <core:CarouselViewItemDataTemplateSelector\n            x:Key=\"CarouselViewItemDataTemplateSelector\"\n            HighlightedTemplate=\"{x:StaticResource HighlightedDataTemplate}\"\n            NormalTemplate=\"{x:StaticResource NormalDataTemplate}\" />\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"{x:StaticResource PropertiesListHeader}\"\n                            TextDecorations=\"Underline\" />\n                        <CollectionView\n                            Footer=\"{x:StaticResource PropertiesListFooter}\"\n                            ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                            Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Overview\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource CarouselViewInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Basic CarouselView\" />\n                        <CarouselView ItemTemplate=\"{x:StaticResource NormalDataTemplate}\" ItemsSource=\"{x:Binding Items}\" />\n\n                        <Label Text=\"This is the Model that will be used for ths page\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpCarouselItemModel}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Here is the Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewBasic}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Basic CarouselView DataTemplate\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewBasicDataTemplate}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Here is the ViewMOdel\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpCarouselViewBasicViewModel}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CarouselView with DataTemplateSelector\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource CollectionViewDataTemplate}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <Label Text=\"CarouselView with first item highlighted:\" />\n                        <CarouselView\n                            x:Name=\"TemplateSelectorCarouselView\"\n                            ItemTemplate=\"{x:StaticResource CarouselViewItemDataTemplateSelector}\"\n                            ItemsSource=\"{x:Binding Items}\"\n                            Loop=\"False\" />\n                        <Label\n                            Margin=\"5\"\n                            Text=\"Note that: It work well with Loop disabled\"\n                            TextColor=\"OrangeRed\" />\n                        <Label Text=\"This is the Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewDataTemplateSelector}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Here is DataTemplate Selector\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpCarouselViewDataTemplateSelector}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Here is Selector setup\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewDataTemplateSelectorSetup}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This is the ViewModel\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpCarouselViewDataTemplateSelectorViewModel}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CarouselView with IndicatorView\" />\n                        <CarouselView\n                            IndicatorView=\"IndicatorView\"\n                            ItemTemplate=\"{x:StaticResource NormalDataTemplate}\"\n                            ItemsSource=\"{x:Binding Items}\" />\n                        <IndicatorView\n                            x:Name=\"IndicatorView\"\n                            HorizontalOptions=\"Center\"\n                            IndicatorColor=\"LightGray\"\n                            SelectedIndicatorColor=\"Aqua\" />\n                        <Label Text=\"Here is the code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewIndicatorView}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CarouselView with SwipeView\" />\n                        <CarouselView ItemTemplate=\"{x:StaticResource CarouselSwipeViewItemTemplate}\" ItemsSource=\"{x:Binding Items}\" />\n\n                        <Label Text=\"Xaml Code here\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewSwipeView}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This is the CarouselView DataTemplate containt SwipeView\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewSwipeViewDataTemplate}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CarouselView with RefreshView\" />\n                        <RefreshView Command=\"{Binding RefreshCommand}\" IsRefreshing=\"{Binding IsBusy}\">\n                            <CarouselView ItemTemplate=\"{x:StaticResource NormalDataTemplate}\" ItemsSource=\"{x:Binding Items}\" />\n                        </RefreshView>\n                        <Label Text=\"Here for Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewRefreshView}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Here for ViewModel\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpCarouselViewRefreshViewViewModel}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CarouselView Layout\" />\n                        <Label Text=\"This is CarouselView with horizontal layout\" />\n                        <CarouselView\n                            HorizontalOptions=\"FillAndExpand\"\n                            ItemTemplate=\"{x:StaticResource NormalDataTemplate}\"\n                            ItemsSource=\"{x:Binding Items}\">\n                            <CarouselView.ItemsLayout>\n                                <LinearItemsLayout Orientation=\"Horizontal\" />\n                            </CarouselView.ItemsLayout>\n                        </CarouselView>\n                        <Label Text=\"This is CarouselView with vertical layout\" />\n                        <Label\n                            Margin=\"5\"\n                            Text=\"Note for the error: Vertical LinearItemsLayout and ItemSpacing are not working\"\n                            TextColor=\"OrangeRed\" />\n                        <Label Text=\"Here is the Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewHorizontalLayout}\" CodeType=\"Xaml\" />\n                        <!--  Right-to-left layout  -->\n                        <Label Text=\"This is CarouselView with Right-to-left dlow direction layout\" />\n                        <CarouselView\n                            FlowDirection=\"RightToLeft\"\n                            HorizontalOptions=\"FillAndExpand\"\n                            ItemTemplate=\"{x:StaticResource NormalDataTemplate}\"\n                            ItemsSource=\"{x:Binding Items}\" />\n                        <Label Text=\"Here is the Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewRightToLeftLayout}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <!--<Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CarouselView Visible Adjacent Items\" />\n                    <CarouselView ItemsSource=\"{x:Binding Items}\"\n                                  ItemTemplate=\"{x:StaticResource NormalDataTemplate}\"/>\n                    <Label Text=\"PeekAreaInsets ? doom\"/>\n                </VerticalStackLayout>\n            </Border>-->\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CarouselView Current Item Changing Respondsibility\" />\n                        <Label Text=\"Item Changing With EventHandler\" />\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"This is the Current Item Content that you selected: \" />\n                                    <Span x:Name=\"ItemChangingEventHandlerLabelSpan\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"And its Position: \" />\n                                    <Span x:Name=\"PositionItemChangingEventHandlerLabelSpan\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <CarouselView\n                            Grid.Column=\"1\"\n                            CurrentItemChanged=\"CarouselViewCurrentItemChanged\"\n                            ItemTemplate=\"{x:StaticResource NormalDataTemplate}\"\n                            ItemsSource=\"{x:Binding Items}\"\n                            VerticalOptions=\"Center\" />\n                        <Label Text=\"This is xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewItemChangingEvent}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This is code behind\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpCarouselViewItemChangingEventCodeBehind}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Item Changing With Command\" />\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"This is the Current Item Content that you selected: \" />\n                                    <Span Text=\"{x:Binding CommandCurrentSelectedItemSpan}\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"And its Position: \" />\n                                    <Span Text=\"{x:Binding CommandCurrentSelectedItemPositionSpan}\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <CarouselView\n                            x:Name=\"CarouselViewCommandItemChanging\"\n                            Grid.Column=\"1\"\n                            CurrentItem=\"{x:Binding CommandCurrentSelectedItem}\"\n                            CurrentItemChangedCommand=\"{x:Binding CarouselViewCurrentItemChangedCommand}\"\n                            CurrentItemChangedCommandParameter=\"{x:Binding Path=CurrentItem.Content,\n                                                                           Source={x:Reference CarouselViewCommandItemChanging}}\"\n                            ItemTemplate=\"{x:StaticResource NormalDataTemplate}\"\n                            ItemsSource=\"{x:Binding Items}\"\n                            Position=\"{x:Binding CommandCurrentSelectedItemPositionSpan,\n                                                 Mode=TwoWay}\"\n                            VerticalOptions=\"Center\" />\n                        <Label Text=\"This is xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewItemChangingCommand}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This is ViewModel\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpCarouselViewItemChangingCommandViewModel}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CarouselView EmptyView\" />\n                        <Label Text=\"This is CarouselView with List\" />\n                        <CarouselView\n                            EmptyView=\"Nothing to show here !!!.\"\n                            ItemTemplate=\"{x:StaticResource NormalDataTemplate}\"\n                            ItemsSource=\"{x:Binding ItemEmptyList}\"\n                            Loop=\"False\" />\n                        <Label\n                            Margin=\"5\"\n                            Text=\"EmptyView work well with none looping carousel\"\n                            TextColor=\"OrangeRed\" />\n                        <Label Text=\"Here is the Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCarouselViewEmptyView}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/CarouselView/CarouselViewPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class CarouselViewPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    protected readonly CarouselViewPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public CarouselViewPage(CarouselViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    private void CarouselViewCurrentItemChanged(object sender, CurrentItemChangedEventArgs e)\n    {\n        var carouselItem = (CarouselItem)e.CurrentItem;\n        var carouselView = (CarouselView)sender;\n        ItemChangingEventHandlerLabelSpan.Text = carouselItem.Content;\n        PositionItemChangingEventHandlerLabelSpan.Text = carouselView.Position.ToString();\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/CheckBox/CheckBoxPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.CheckBoxPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Check Box\"\n    Padding=\"20\"\n    x:DataType=\"core:CheckBoxPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n    <core:BasePage.Resources>\n        <core:StringTernaryOperatorConverter x:Key=\"StringTernaryOperatorConverter\" />\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) CheckBox is a type of button that can either be checked or empty. When a checkbox is checked, it's considered to be on. When a checkbox is empty, it's considered to be off.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            CheckBox defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"CheckBoxStateMessages\" Type=\"{x:Type x:String}\">\n            <x:String>Checked</x:String>\n            <x:String>Not Checked</x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IsChecked</strong>, of type <strong style=\"color:blue\">bool</strong>, which indicates whether the CheckBox is checked. This property has a default binding mode of <strong style=\"color:blue\">TwoWay</strong>\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Color</strong>, of type <strong style=\"color:blue\">Color</strong>, which indicates the color of the CheckBox.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"A simple CheckBox\" />\n                                <CheckBox />\n                                <core:SourceCodeExpander Code=\"{x:Binding StandardCheckBoxXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"A CheckBox has some properties to be defined\" />\n                                <Label Text=\"1. Color, of type Color, which indicates the color of the CheckBox.\" />\n                                <CheckBox Color=\"{x:StaticResource Primary}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CheckBoxWithColorXamlCode}\" />\n\n                                <Label Text=\"2. IsChecked, of type bool, which indicates whether the CheckBox is checked. How about a CheckBox being chekced as default?\" />\n                                <CheckBox IsChecked=\"True\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CheckBoxTrueByDefaultXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout>\n                                <HorizontalStackLayout HorizontalOptions=\"CenterAndExpand\">\n                                    <CheckBox IsChecked=\"{x:Binding IsChecked, Mode=TwoWay}\" Color=\"{x:Binding CurrentColor, Mode=OneWay}\" />\n                                    <Label\n                                        Text=\"{x:Binding IsChecked,\n                                                         Mode=OneWay,\n                                                         Converter={x:StaticResource StringTernaryOperatorConverter},\n                                                         ConverterParameter={x:StaticResource CheckBoxStateMessages}}\"\n                                        TextColor=\"{x:Binding CurrentColor,\n                                                              Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding CheckBoxWithBindingXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Padding=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"No need to confuse, MAUI checkboxes still doesn't support title yet. We need to add title manually.\" />\n                                <HorizontalStackLayout>\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        Text=\"CheckBox 1\"\n                                        VerticalTextAlignment=\"Center\" />\n                                    <CheckBox x:Name=\"checkBox1\" />\n                                </HorizontalStackLayout>\n\n                                <HorizontalStackLayout>\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        Text=\"CheckBox 2\"\n                                        VerticalTextAlignment=\"Center\" />\n                                    <CheckBox x:Name=\"checkBox2\" />\n                                </HorizontalStackLayout>\n\n                                <HorizontalStackLayout>\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        Text=\"CheckBox 3\"\n                                        VerticalTextAlignment=\"Center\" />\n                                    <CheckBox x:Name=\"checkBox3\" />\n                                </HorizontalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding CheckBoxWithLabelXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/CheckBox/CheckBoxPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class CheckBoxPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly CheckBoxPageViewModel viewModel;\n\n    #endregion\n\n    #region [ CTor ]\n\n    public CheckBoxPage(CheckBoxPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/CollectionViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.CollectionViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Collection View\"\n    Padding=\"20\"\n    x:DataType=\"core:CollectionViewPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:String x:Key=\"ControlInfo\">\n            Collection View is a view for presenting lists of data using different layout specifications. It aims to provide a more flexible, and performant alternative to ListView.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Collection View defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ItemsSource  </strong>, of type <strong style=\"color:blue\">IEnumerable </strong>, populates with data.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ItemTemplate</strong>, of type <strong style=\"color:blue\">DataTemplate</strong>, defines the appearance of each item.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SelectionMode</strong>, of type <strong style=\"color:blue\">SelectionMode</strong>, defines the selection mode, supports single and multiple selection.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SelectedItem</strong>, of type <strong style=\"color:blue\">object</strong>, the selected item in the list.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ItemSizingStrategy </strong>, of type <strong style=\"color:blue\">enumeration</strong>, determines the row height of each item.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CachingStrategy </strong>, of type <strong style=\"color:blue\">enumeration</strong>, uses the virtualization provided by the underlying native controls.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Header, Footer </strong>, of type <strong style=\"color:blue\">object</strong>, specifies the string, binding, or view that will be displayed at the start and end of the list.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">HeaderTemplate, FooterTemplate </strong>, of type <strong style=\"color:blue\">DataTemplate</strong>, specifies the DataTemplate to use to format the Header and Footer.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IsGrouped</strong>, of type <strong style=\"color:blue\">bool</strong>, indicates whether the underlying data should be displayed in groups. The default value of this property is false.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">GroupHeaderTemplate, GroupFooterTemplate </strong>, of type <strong style=\"color:blue\">DataTemplate</strong>, the template to use for the header and footer of each group\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"BasicCollectionView\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Model Definition</strong>: Create a model that represents the structure of your data item. This model should be assigned to <strong style=\"color:blue\">x:DataType</strong> in your <strong style=\"color:blue\">DataTemplate</strong>, which allows the <strong style=\"color:blue\">ItemTemplate</strong> to understand the structure of each item.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Data Source Assignment</strong>: Assign your data collection to the <strong style=\"color:blue\">ItemsSource</strong> property of the <strong style=\"color:blue\">CollectionView</strong>. This collection is the source from which the <strong style=\"color:blue\">CollectionView</strong> pulls its data.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Item Appearance Design</strong>: Decide on the appearance of each item in the <strong style=\"color:blue\">CollectionView</strong> by defining a <strong style=\"color:blue\">DataTemplate</strong>. This template should contain the <strong style=\"color:blue\">XAML</strong> that describes how each item should be displayed in the <strong style=\"color:blue\">CollectionView</strong>.    ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"SwipeViewCollectionView\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CollectionView</strong> in <strong style=\"color:blue\">.NET MAUI</strong> supports context menus through <strong style=\"color:blue\">SwipeView</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SwipeView</strong> is a container that wraps an item and provides context menu items. These menus are revealed with a swipe gesture.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   To implement this, <strong style=\"color:blue\">SwipeView</strong> is set as the root view in the <strong style=\"color:blue\">DataTemplate</strong> for each item in the <strong style=\"color:blue\">CollectionView</strong>.    ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"RefreshViewCollectionView\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CollectionView</strong> in <strong style=\"color:blue\">.NET MAUI</strong> supports pull-to-refresh functionality through <strong style=\"color:blue\">RefreshView</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">RefreshView</strong> is a container control that provides this functionality to its child. The child must support scrollable content.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   To implement this, <strong style=\"color:blue\">CollectionView</strong> is set as the child of a <strong style=\"color:blue\">RefreshView</strong>. This allows the data in the <strong style=\"color:blue\">CollectionView</strong> to be refreshed by pulling down on the list of items.    ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"CollectionViewVerticalGridLayout\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CollectionView</strong> can display its items in a vertical grid by setting its <strong style=\"color:blue\">ItemsLayout</strong> property to <strong style=\"color:blue\">VerticalGrid</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   Alternatively, this layout can also be accomplished by setting the <strong style=\"color:blue\">ItemsLayout</strong> property to a <strong style=\"color:blue\">GridItemsLayout</strong> object whose <strong style=\"color:blue\">Orientation</strong> property is set to <strong style=\"color:blue\">Vertical</strong>.    ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"CollectionViewVerticalListLayout\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CollectionView</strong> will display its items in a vertical list layout. Therefore, it's not necessary to set the <strong style=\"color:blue\">ItemsLayout</strong> property to use this layout.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CollectionView</strong> can be set to display its items in a vertical list by setting its <strong style=\"color:blue\">ItemsLayout</strong> property to <strong style=\"color:blue\">VerticalList</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   Alternatively, this layout can also be accomplished by setting the <strong style=\"color:blue\">ItemsLayout</strong> property to a <strong style=\"color:blue\">LinearItemsLayout</strong> specifying the <strong style=\"color:blue\">Vertical</strong> <strong style=\"color:blue\">ItemsLayout</strong> <strong style=\"color:blue\">Orientation</strong> enumeration member as the <strong style=\"color:blue\">Orientation</strong> property value.    ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"CollectionViewHorizontalListLayout\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CollectionView</strong> can display its items in a horizontal list by setting its <strong style=\"color:blue\">ItemsLayout</strong> property to <strong style=\"color:blue\">HorizontalList</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   Alternatively, this layout can also be accomplished by setting the <strong style=\"color:blue\">ItemsLayout</strong> property to a <strong style=\"color:blue\">LinearItemsLayout</strong> specifying the <strong style=\"color:blue\">Horizontal</strong> <strong style=\"color:blue\">ItemsLayout</strong> <strong style=\"color:blue\">Orientation</strong> enumeration member as the <strong style=\"color:blue\">Orientation</strong> property value.    ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"CollectionViewHeadersFootersProperty\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Header</strong>, of type <strong style=\"color:blue\">object</strong>, specifies the string, binding, or view that will be displayed at the start of the list.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">HeaderTemplate</strong>, of type <strong style=\"color:blue\">DataTemplate</strong>, specifies the <strong style=\"color:blue\">DataTemplate</strong> to use to format the <strong style=\"color:blue\">Header</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Footer</strong>, of type <strong style=\"color:blue\">object</strong>, specifies the string, binding, or view that will be displayed at the end of the list.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FooterTemplate</strong>, of type <strong style=\"color:blue\">DataTemplate</strong>, specifies the <strong style=\"color:blue\">DataTemplate</strong> to use to format the <strong style=\"color:blue\">Footer</strong>.    ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"CollectionViewHeader\">\n            What types of women do you like?\n        </x:String>\n\n        <x:String x:Key=\"CollectionViewFooter\">\n            Hope you like what you choose !!!\n        </x:String>\n\n        <x:Array x:Key=\"CollectionViewReverseLayout\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CollectionView</strong> can layout its content in a right-to-left flow direction by setting its <strong style=\"color:blue\">FlowDirection</strong> property to <strong style=\"color:blue\">RightToLeft</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   The default <strong style=\"color:blue\">FlowDirection</strong> for an element with a parent is <strong style=\"color:blue\">MatchParent</strong>. Therefore, the <strong style=\"color:blue\">CollectionView</strong> inherits the <strong style=\"color:blue\">FlowDirection</strong> property value from the <strong style=\"color:blue\">StackLayout</strong>, which in turn inherits the <strong style=\"color:blue\">FlowDirection</strong> property value from the <strong style=\"color:blue\">ContentPage</strong>.    ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"CollectionViewDataTemplateSelectorHeader\">\n            A DataTemplateSelector is a class in Xamarin.Forms that allows you to choose a DataTemplate at runtime based on the value of a data object. It’s particularly useful when you have a CollectionView (or ListView) that displays a heterogeneous collection of items. There are few steps to create and use it:\n        </x:String>\n\n        <x:Array x:Key=\"CollectionViewDataTemplateSelector\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Define the DataTemplateSelector</strong>: Create a class that inherits from <strong style=\"color:blue\">DataTemplateSelector</strong> and override the <strong style=\"color:blue\">OnSelectTemplate</strong> method. In this method, write your logic to choose a <strong style=\"color:blue\">DataTemplate</strong> based on the item and container.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Define the DataTemplates</strong>: In your <strong style=\"color:blue\">XAML</strong>, define the <strong style=\"color:blue\">DataTemplates</strong> that your <strong style=\"color:blue\">DataTemplateSelector</strong> will choose from. Each <strong style=\"color:blue\">DataTemplate</strong> defines how a certain type of item should be displayed.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Use the DataTemplateSelector</strong>: Still in your <strong style=\"color:blue\">XAML</strong>, create an instance of your <strong style=\"color:blue\">DataTemplateSelector</strong> and assign the <strong style=\"color:blue\">DataTemplates</strong> you defined earlier. Then, set the <strong style=\"color:blue\">ItemTemplate</strong> of your <strong style=\"color:blue\">CollectionView</strong> to your <strong style=\"color:blue\">DataTemplateSelector</strong>.    ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"CollectionViewSelectionProperty\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SelectionMode</strong>, of type <strong style=\"color:blue\">SelectionMode</strong>, this is enum type with enumeration members: <strong style=\"color:blue\">None</strong>(This is the default value), <strong style=\"color:blue\">Single</strong>, <strong style=\"color:blue\">Multiple</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SelectedItem</strong>, of type <strong style=\"color:blue\">object</strong>, the selected item in the list. This property has a default binding mode of <strong style=\"color:blue\">TwoWay</strong>, and has a null value when no item is selected.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SelectedItems</strong>, of type <strong style=\"color:blue\">IList</strong>, the selected items in the list. This property has a default binding mode of <strong style=\"color:blue\">OneWay</strong>, and has a null value when no items are selected.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SelectionChangedCommand</strong>, of type <strong style=\"color:blue\">ICommand</strong>, which is executed when the selected item changes.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SelectionChangedCommandParameter</strong>, of type <strong style=\"color:blue\">object</strong>, which is the parameter that's passed to the <strong style=\"color:blue\">SelectionChangedCommand</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SelectionChanged</strong> event that is fired when the <strong style=\"color:blue\">SelectedItem</strong> property changes. The <strong style=\"color:blue\">SelectionChangedEventArgs</strong> object that accompanies the <strong style=\"color:blue\">SelectionChanged</strong> event has two properties, both of type <strong style=\"color:blue\">readonly</strong>: <strong style=\"color:blue\">PreviousSelection</strong>, <strong style=\"color:blue\">CurrentSelection</strong>.    ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"CollectionViewSingleSelection\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[    In a <strong style=\"color:blue\">CollectionView</strong>, when <strong style=\"color:blue\">SelectionMode</strong> is set to <strong style=\"color:blue\">Single</strong>, only one item can be selected at a time.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[    The <strong style=\"color:blue\">SelectedItem</strong> property holds the currently selected item.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[    If the selected item changes, the <strong style=\"color:blue\">SelectionChangedCommand</strong> is executed, passing the <strong style=\"color:blue\">SelectionChangedCommandParameter</strong> to the command. Additionally, the <strong style=\"color:blue\">SelectionChanged</strong> event is triggered.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"CollectionViewMultipleSelection\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[    In a <strong style=\"color:blue\">CollectionView</strong>, when <strong style=\"color:blue\">SelectionMode</strong> is set to <strong style=\"color:blue\">Multiple</strong>, it allows for multiple items to be selected simultaneously.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[    The <strong style=\"color:blue\">SelectedItems</strong> property holds the currently selected items. It mean that <strong style=\"color:blue\">SelectedItem</strong> property is not holds any item.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[    If the selection changes, the <strong style=\"color:blue\">SelectionChangedCommand</strong> is executed, with the <strong style=\"color:blue\">SelectionChangedCommandParameter</strong> passed to the command. Additionally, the <strong style=\"color:blue\">SelectionChanged</strong> event is triggered.   ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"MrIncreadibleItemTemplate\" x:DataType=\"core:MrIncreadible\">\n            <core:MrIncreadibleItemTemplateContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"MrIncreadibleItemVerticalTemplate\" x:DataType=\"core:MrIncreadible\">\n            <core:MrIncreadibleItemVerticalTemplateContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"MrIncreadibleItemHorizontalTemplate\" x:DataType=\"core:MrIncreadible\">\n            <core:MrIncreadibleItemHorizontalTemplateContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"MrIncreadibleItemVerticalSpan2Template\" x:DataType=\"core:MrIncreadible\">\n            <core:MrIncreadibleItemVerticalSpan2TemplateContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"MrIncreadibleCollectionTemplateWithSwipe\">\n            <core:MrIncreadibleCollectionTemplateWithSwipeContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"ControllInfoCollectionTemplate\" x:DataType=\"core:IGalleryCardInfo\">\n            <core:ControllInfoCollectionTemplateContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"ControllInfoCollectionTwoItemRowTemplate\" x:DataType=\"core:IGalleryCardInfo\">\n            <core:ControllInfoCollectionTwoItemRowTemplateContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"ControllInfoCollectionThreeItemRowTemplate\" x:DataType=\"core:IGalleryCardInfo\">\n            <core:ControllInfoCollectionThreeItemRowTemplateContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"ControllInfoCollectionFourItemRowTemplate\" x:DataType=\"core:IGalleryCardInfo\">\n            <core:ControllInfoCollectionFourItemRowTemplateContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"NormalItemTemplate\" x:DataType=\"core:IGalleryCardInfo\">\n            <core:NormalItemTemplateContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"SelectedItemTemplate\" x:DataType=\"core:IGalleryCardInfo\">\n            <core:SelectedItemTemplateContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <core:TemplateSelector\n            x:Key=\"TemplateSelector\"\n            NormalTemplate=\"{x:StaticResource NormalItemTemplate}\"\n            SelectedTemplate=\"{x:StaticResource SelectedItemTemplate}\" />\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshPageCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Basic CollectionView with simple DataTemplate\" />\n                                <Label Text=\"There are 3 element to create a collection view \" />\n                                <CollectionView ItemsSource=\"{x:StaticResource BasicCollectionView}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <CollectionView\n                                    HeightRequest=\"400\"\n                                    ItemTemplate=\"{x:StaticResource ControllInfoCollectionTemplate}\"\n                                    ItemsSource=\"{x:Binding ControlGroupList}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"This is our Model\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpBasicCollectionModel}\" CodeType=\"CSharp\" />\n                                <Label Text=\"ViewModel code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpBasicCollectionViewModel}\" CodeType=\"CSharp\" />\n                                <Label Text=\"This is basic CollectionView\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlBasicCollectionView}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Here for the DataTemplate design\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlBasicCollectionViewTemplate}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CollectionView with swipe items\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource SwipeViewCollectionView}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <CollectionView\n                                    HeightRequest=\"400\"\n                                    ItemTemplate=\"{x:StaticResource MrIncreadibleCollectionTemplateWithSwipe}\"\n                                    ItemsSource=\"{x:Binding MrIncreadibles}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"This is MrIncreadible Model\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpSwipeCollectionModel}\" CodeType=\"CSharp\" />\n                                <Label Text=\"This CollectionView swipe items\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlSwipeCollectionView}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Here is the swipe items DataTemplate design\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlSwipeCollectionViewTemplate}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Here is the ViewModel code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpSwipeCollectionViewViewModel}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CollectionView pull to refresh\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource RefreshViewCollectionView}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <RefreshView\n                                    x:Name=\"RefreshView\"\n                                    Command=\"{Binding RefreshCollectionViewThatHaveRefreshViewCommand}\"\n                                    HeightRequest=\"400\"\n                                    IsRefreshing=\"{Binding IsRefreshing}\">\n                                    <CollectionView\n                                        EmptyView=\"Pull down to load data\"\n                                        ItemTemplate=\"{x:StaticResource ControllInfoCollectionTemplate}\"\n                                        ItemsSource=\"{x:Binding ControlGroupListForRefreshExample}\" />\n                                </RefreshView>\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"This CollectionView with refresh\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlRefreshCollectionView}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Here is the ViewModel code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpRefreshCollectionViewViewModel}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Padding=\"5,5,5,30\" Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CollectionView Linear Layouts\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource CollectionViewVerticalListLayout}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <CollectionView\n                                    HeightRequest=\"400\"\n                                    ItemTemplate=\"{x:StaticResource MrIncreadibleItemVerticalTemplate}\"\n                                    ItemsLayout=\"VerticalList\"\n                                    ItemsSource=\"{x:Binding MrIncreadibles}\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource CollectionViewHorizontalListLayout}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <CollectionView\n                                    ItemTemplate=\"{x:StaticResource MrIncreadibleItemHorizontalTemplate}\"\n                                    ItemsLayout=\"HorizontalList\"\n                                    ItemsSource=\"{x:Binding MrIncreadibles}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Grid ColumnDefinitions=\"0.5*, 0.5*\" ColumnSpacing=\"10\">\n                                    <VerticalStackLayout Grid.Column=\"0\">\n                                        <Label Text=\"Vertical CollectionView ItemTemplate\" />\n                                        <core:SourceCodeExpander Code=\"{x:Binding XamlVerticalListCollectionViewTemplate}\" CodeType=\"Xaml\" />\n                                        <Label Text=\"Vertical CollectionView xaml code\" />\n                                        <core:SourceCodeExpander Code=\"{x:Binding XamlVerticalListCollectionView}\" CodeType=\"Xaml\" />\n                                    </VerticalStackLayout>\n                                    <VerticalStackLayout Grid.Column=\"1\">\n                                        <Label Text=\"Horizontal CollectionView ItemTemplate\" />\n                                        <core:SourceCodeExpander Code=\"{x:Binding XamlHorizontalListCollectionViewTemplate}\" CodeType=\"Xaml\" />\n                                        <Label Text=\"Horizontal CollectionView xaml code\" />\n                                        <core:SourceCodeExpander Code=\"{x:Binding XamlHorizontalListCollectionView}\" CodeType=\"Xaml\" />\n                                    </VerticalStackLayout>\n                                </Grid>\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CollectionView Grid Layouts\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource CollectionViewVerticalGridLayout}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <!--  Adding HorizontalOptions=\"CenterAndExpand\" can help the Span in ItemsLayout to do it job  -->\n                                <CollectionView\n                                    HeightRequest=\"400\"\n                                    HorizontalOptions=\"CenterAndExpand\"\n                                    ItemTemplate=\"{x:StaticResource MrIncreadibleItemVerticalSpan2Template}\"\n                                    ItemsLayout=\"VerticalGrid, 2\"\n                                    ItemsSource=\"{x:Binding MrIncreadibles}\" />\n                                <Label Text=\"In 2021, .NET MAUI’s CollectionView does not support HorizontalGrid in the ItemsLayout property\" TextColor=\"OrangeRed\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"Here is the Template\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlVerticalGridCollectionViewTemplate}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is CollectionView Grid Layouts\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlVerticalGridCollectionView}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Headers and footers\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource CollectionViewHeadersFootersProperty}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Frame HorizontalOptions=\"StartAndExpand\" Style=\"{x:StaticResource DocumentContentFrameStyle}\">\n                                    <CollectionView\n                                        Footer=\"{x:StaticResource CollectionViewFooter}\"\n                                        Header=\"{x:StaticResource CollectionViewHeader}\"\n                                        HeightRequest=\"400\"\n                                        HorizontalOptions=\"StartAndExpand\"\n                                        ItemTemplate=\"{x:StaticResource MrIncreadibleItemTemplate}\"\n                                        ItemsSource=\"{x:Binding MrIncreadibles}\" />\n                                </Frame>\n                                <Label Text=\"It’s unfortunate that the an issue with the CollectionView header and footer from Xamarin.Forms haven’t been resolved yet. Because of the issue, HeaderTemplate and FooterTemplate can not be used properly\" TextColor=\"OrangeRed\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"Header and footer source\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlHeaderFooterCollectionViewSource}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is Template\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlHeaderFooterCollectionViewTemplate}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is how CollectionView look like\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlHeaderFooterCollectionView}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CollectionView Reverse Layout\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource CollectionViewReverseLayout}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <CollectionView\n                                    FlowDirection=\"RightToLeft\"\n                                    HeightRequest=\"400\"\n                                    ItemTemplate=\"{x:StaticResource MrIncreadibleItemTemplate}\"\n                                    ItemsSource=\"{x:Binding MrIncreadibles}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"This is how CollectionView look like\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlReverseCollectionView}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CollectionView Layouts Changing\" />\n                                <VerticalStackLayout>\n                                    <Label>\n                                        <Label.FormattedText>\n                                            <FormattedString>\n                                                <Span Text=\"Utilize \" />\n                                                <Span FontAttributes=\"Bold\" Text=\"GridItemsLayout \" />\n                                                <Span Text=\" with \" />\n                                                <Span FontAttributes=\"Bold\" Text=\"Span\" />\n                                                <Span Text=\" to achieve a grid-like layout in a CollectionView\" />\n                                            </FormattedString>\n                                        </Label.FormattedText>\n                                    </Label>\n                                    <HorizontalStackLayout Spacing=\"5\" VerticalOptions=\"Center\">\n                                        <Label VerticalOptions=\"Center\">\n                                            <Label.FormattedText>\n                                                <FormattedString>\n                                                    <Span Text=\"Number of Span: \" />\n                                                    <Span FontAttributes=\"Bold\" Text=\"{x:Binding SpanningNumber, Mode=OneWay}\" />\n                                                </FormattedString>\n                                            </Label.FormattedText>\n                                        </Label>\n                                        <Stepper\n                                            Background=\"Black\"\n                                            Maximum=\"4\"\n                                            Minimum=\"1\"\n                                            VerticalOptions=\"Center\"\n                                            Value=\"{x:Binding SpanningNumber,\n                                                              Mode=TwoWay}\" />\n                                    </HorizontalStackLayout>\n                                    <Label Text=\"If you do not see any change while pressing the Stepper you can change window size\" TextColor=\"OrangeRed\" />\n                                    <!--  Adding HorizontalOptions=\"CenterAndExpand\" can help the Span in ItemsLayout to do it job  -->\n                                    <CollectionView\n                                        x:Name=\"CollectionViewSpanningChange\"\n                                        HeightRequest=\"400\"\n                                        HorizontalOptions=\"CenterAndExpand\"\n                                        ItemTemplate=\"{x:StaticResource ControllInfoCollectionTemplate}\"\n                                        ItemsSource=\"{x:Binding ControlGroupList,\n                                                                Mode=OneWay}\">\n                                        <CollectionView.ItemsLayout>\n                                            <GridItemsLayout\n                                                HorizontalItemSpacing=\"5\"\n                                                Orientation=\"Vertical\"\n                                                Span=\"{x:Binding SpanningNumber,\n                                                                 Mode=TwoWay}\"\n                                                VerticalItemSpacing=\"5\" />\n                                        </CollectionView.ItemsLayout>\n                                    </CollectionView>\n                                </VerticalStackLayout>\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"CollectionView with setup\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlLayoutsChangingCollectionView}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Make one normal Template\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlLayoutsChangeNormalCollectionViewTemplate}\" CodeType=\"Xaml\" />\n                                <Label Text=\"We would need some Templates for the changing\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlLayoutsChangeCollectionViewTemplate}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is all we need in ViewModel\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpLayoutsChangingCollectionViewViewModel}\" CodeType=\"CSharp\" />\n                                <Label Text=\"This is what code behind look like\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpLayoutsChangingCollectionViewCodeBehind}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CollectionView Template Selector with Event\" />\n                                <Label Text=\"{x:StaticResource CollectionViewDataTemplateSelectorHeader}\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource CollectionViewDataTemplateSelector}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Picker\n                                    Title=\"Filter\"\n                                    ItemsSource=\"{x:Binding FilterPickerItems,\n                                                            Mode=OneWay}\"\n                                    SelectedIndex=\"0\"\n                                    SelectedIndexChanged=\"OnFilterItemChanged\"\n                                    SelectedItem=\"{x:Binding SelectedFilterPickerItem,\n                                                             Mode=TwoWay}\" />\n                                <CollectionView\n                                    x:Name=\"CollectionViewItemLayoutChanged\"\n                                    HeightRequest=\"400\"\n                                    ItemTemplate=\"{x:StaticResource TemplateSelector}\"\n                                    ItemsLayout=\"VerticalGrid, 4\"\n                                    ItemsSource=\"{x:Binding ControlGroupList,\n                                                            Mode=OneWay}\"\n                                    SelectionMode=\"None\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"Template Selector\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpTemplateSelector}\" CodeType=\"CSharp\" />\n                                <Label Text=\"Template for this CollectionView\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlTemplateSelectorCollectionViewTemplate}\" CodeType=\"Xaml\" />\n                                <Label Text=\"CollectionView with setup\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlTemplateSelectorCollectionView}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is ViewModel code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpTemplateSelectorCollectionViewViewModel}\" CodeType=\"CSharp\" />\n                                <Label Text=\"Code behind with EventHandler\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpTemplateSelectorCollectionViewEventHandler}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CollectionView Item Selection Properties\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource CollectionViewSelectionProperty}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CollectionView with single selection\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource CollectionViewSingleSelection}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label>\n                                    <Label.FormattedText>\n                                        <FormattedString>\n                                            <Span Text=\"Current selected item: \" />\n                                            <Span Text=\"{x:Binding CurrentSingleSelectedItemLabel}\" TextDecorations=\"Underline\" />\n                                        </FormattedString>\n                                    </Label.FormattedText>\n                                </Label>\n                                <Label>\n                                    <Label.FormattedText>\n                                        <FormattedString>\n                                            <Span Text=\"Previous selected item: \" />\n                                            <Span Text=\"{x:Binding PreviousSingleSelectedItemLabel}\" TextDecorations=\"Underline\" />\n                                        </FormattedString>\n                                    </Label.FormattedText>\n                                </Label>\n                                <CollectionView\n                                    HeightRequest=\"400\"\n                                    HorizontalOptions=\"CenterAndExpand\"\n                                    ItemTemplate=\"{x:StaticResource ControllInfoCollectionFourItemRowTemplate}\"\n                                    ItemsLayout=\"VerticalGrid, 4\"\n                                    ItemsSource=\"{x:Binding ControlGroupList}\"\n                                    SelectedItem=\"{x:Binding SingleSelectedControlInformation}\"\n                                    SelectionChangedCommand=\"{x:Binding SingleSelectCollectionViewCommand}\"\n                                    SelectionMode=\"Single\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"Template for this CollectionView\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlSingleSelectionCollectionViewTemplate}\" CodeType=\"Xaml\" />\n                                <Label Text=\"CollectionView with setup\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlSingleSelectionCollectionView}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is ViewModel code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpSingleSelectionCollectionViewViewModel}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"CollectionView with multiple selection\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource CollectionViewMultipleSelection}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label LineBreakMode=\"HeadTruncation\">\n                                    <Label.FormattedText>\n                                        <FormattedString>\n                                            <Span Text=\"Selected items: \" />\n                                            <Span Text=\"{x:Binding CurrentMultipleSelectedListItemLabel}\" TextDecorations=\"Underline\" />\n                                        </FormattedString>\n                                    </Label.FormattedText>\n                                </Label>\n                                <Label>\n                                    <Label.FormattedText>\n                                        <FormattedString>\n                                            <Span Text=\"Current selected item: \" />\n                                            <Span Text=\"{x:Binding CurrentMultipleSelectedItemLabel}\" TextDecorations=\"Underline\" />\n                                        </FormattedString>\n                                    </Label.FormattedText>\n                                </Label>\n                                <Label>\n                                    <Label.FormattedText>\n                                        <FormattedString>\n                                            <Span Text=\"Previous selected item: \" />\n                                            <Span Text=\"{x:Binding PreviousMultipleSelectedItemLabel}\" TextDecorations=\"Underline\" />\n                                        </FormattedString>\n                                    </Label.FormattedText>\n                                </Label>\n                                <CollectionView\n                                    HeightRequest=\"400\"\n                                    HorizontalOptions=\"CenterAndExpand\"\n                                    ItemTemplate=\"{x:StaticResource ControllInfoCollectionFourItemRowTemplate}\"\n                                    ItemsLayout=\"VerticalGrid, 4\"\n                                    ItemsSource=\"{x:Binding ControlGroupList}\"\n                                    SelectedItems=\"{x:Binding MultipleSelectedControlInformationList,\n                                                              Mode=TwoWay}\"\n                                    SelectionChangedCommand=\"{x:Binding MultipleSelectCollectionViewCommand}\"\n                                    SelectionMode=\"Multiple\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"CollectionView with setup\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlMultipleSelectionCollectionView}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Make one normal Template\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlMultipleSelectionCollectionViewTemplate}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is all we need in ViewModel\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpMultipleSelectionCollectionViewViewModel}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/CollectionView/CollectionViewPage.xaml.cs",
    "content": "using System.ComponentModel;\n\nnamespace MAUIsland;\n\npublic partial class CollectionViewPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    protected readonly CollectionViewPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public CollectionViewPage(CollectionViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Override ]\n    protected override void OnAppearing()\n    {\n        base.OnAppearing();\n        viewModel.SpanningNumberChanged += ViewModelSpanningNumberPropertyChanged;\n    }\n\n    protected override void OnDisappearing()\n    {\n        base.OnDisappearing();\n        viewModel.SpanningNumberChanged -= ViewModelSpanningNumberPropertyChanged;\n    }\n    #endregion\n\n    #region [ Event Handler ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n            viewModel.RefreshPageCommand.Execute(null);\n        }\n    }\n\n    private void ViewModelSpanningNumberPropertyChanged(object sender, PropertyChangedEventArgs e)\n    {\n        if (e.PropertyName == \"SpanningNumber\")\n        {\n            switch (viewModel.SpanningNumber)\n            {\n                case 1:\n                    CollectionViewSpanningChange.ItemTemplate = (DataTemplate)Resources[\"ControllInfoCollectionTemplate\"];\n                    break;\n                case 2:\n                    CollectionViewSpanningChange.ItemTemplate = (DataTemplate)Resources[\"ControllInfoCollectionTwoItemRowTemplate\"];\n                    break;\n                case 3:\n                    CollectionViewSpanningChange.ItemTemplate = (DataTemplate)Resources[\"ControllInfoCollectionThreeItemRowTemplate\"];\n                    break;\n                case 4:\n                    CollectionViewSpanningChange.ItemTemplate = (DataTemplate)Resources[\"ControllInfoCollectionFourItemRowTemplate\"];\n                    break;\n            }\n        }\n    }\n\n    void OnFilterItemChanged(object sender, EventArgs e)\n    {\n        var picker = (Picker)sender;\n\n        if (picker.SelectedItem is null)\n            return;\n\n        var selectedFilter = picker.SelectedItem.ToString();\n\n        var collectionView = CollectionViewItemLayoutChanged;\n        var itemsSource = viewModel.ControlGroupList;\n\n        var filteredItems = new ObservableCollection<IGalleryCardInfo>(itemsSource.Where(x => x.CardType.ToString() == selectedFilter));\n\n        var itemsToSelect = itemsSource.Where(x => x.CardType.ToString() == selectedFilter).ToList();\n\n        collectionView.SelectedItems.Clear();\n        foreach (var item in itemsToSelect)\n        {\n            collectionView.SelectedItems.Add(item);\n        }\n\n        // Refresh the CollectionView\n        collectionView.ItemsSource = null;\n        collectionView.ItemsSource = itemsSource;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/DatePicker/Converters/FulldateToDateOnlyConverter.cs",
    "content": "﻿\nnamespace MAUIsland;\n\npublic class FulldateToDateOnlyConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        var birthDay = (DateTime?)value;\n        return birthDay?.Date.ToString(\"MM/dd/yyyy\");\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/DatePicker/DatePickerPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.DatePickerPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Date Picker\"\n    Padding=\"20\"\n    x:DataType=\"core:DatePickerPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.Resources>\n        <app:FulldateToDateOnlyConverter x:Key=\"FulldateToDateOnlyConverter\" />\n\n        <x:String x:Key=\"ControlInfo\">The .NET Multi-platform App UI (.NET MAUI) DatePicker invokes the platform's date-picker control and allows you to select a date.</x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            DatePicker defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">MinimumDate</strong>, of type <strong style=\"color:blue\">DateTime</strong>, which defaults to the first day of the year 1900.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">MaximumDate</strong>, of type <strong style=\"color:blue\">DateTime</strong>, which defaults to the last day of the year 2100.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Date</strong>, of type <strong style=\"color:blue\">DateTime</strong>, the selected date, which defaults to the value DateTime.Today.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Format</strong>, of type <strong style=\"color:blue\">string</strong>, a standard or custom .NET formatting string, which defaults to \"D\", the long date pattern.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, the color used to display the selected date.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAttributes</strong>, of type <strong style=\"color:blue\">FontAttributes</strong>, which defaults to FontAtributes.None.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAttributes</strong>, of type <strong style=\"color:blue\">string</strong>, which defaults to FontAtributes.None.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">double</strong>, which defaults to -1.0.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CharacterSpacing</strong>, of type <strong style=\"color:blue\">double</strong>, is the spacing between characters of the DatePicker text.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    FontSize=\"Subtitle\"\n                                    HorizontalOptions=\"Start\"\n                                    Text=\"{x:StaticResource ControlInfo}\"\n                                    VerticalOptions=\"Center\" />\n                                <DatePicker />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"A simple date picker\" />\n                                <Label Text=\"The default format with be month/day/year\" />\n                                <DatePicker />\n                                <core:SourceCodeExpander Code=\"{x:Binding SimpleDatePickerXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Control the date picker minimum date - maximum date\" />\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <DatePicker\n                                        x:Name=\"CurrentDatePicker\"\n                                        MaximumDate=\"{x:Binding Source={x:Reference MaximumDatePicker},\n                                                                Path=Date}\"\n                                        MinimumDate=\"{x:Binding Source={x:Reference MinimumDatePicker},\n                                                                Path=Date}\"\n                                        VerticalOptions=\"End\" />\n\n                                    <VerticalStackLayout>\n                                        <Label Text=\"Minimum date\" />\n                                        <DatePicker x:Name=\"MinimumDatePicker\" MaximumDate=\"{x:Binding Source={x:Reference MaximumDatePicker}, Path=Date}\" />\n                                    </VerticalStackLayout>\n\n                                    <VerticalStackLayout>\n                                        <Label Text=\"Maximum date\" />\n                                        <DatePicker x:Name=\"MaximumDatePicker\" MinimumDate=\"{x:Binding Source={x:Reference MinimumDatePicker}, Path=Date}\" />\n                                    </VerticalStackLayout>\n                                </HorizontalStackLayout>\n                                <Label Text=\"{x:Binding Source={x:Reference CurrentDatePicker}, Path=Date}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Get the date only\" />\n                                <DatePicker x:Name=\"DateOnlyDatePicker\" />\n                                <Label Text=\"{x:Binding Source={x:Reference DateOnlyDatePicker}, Path=Date, Converter={x:StaticResource FulldateToDateOnlyConverter}}\" />\n                                <Label FontAttributes=\"Bold\" Text=\"UI\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding DatePickerUseDateOnlyConverterXamlCode}\" />\n                                <Label FontAttributes=\"Bold\" Text=\"Converter\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding FulldateToDateOnlyConverterCsharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/DatePicker/DatePickerPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class DatePickerPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly DatePickerPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public DatePickerPage(DatePickerPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Editor/Converter/EditorTextTransformPickerConverter.cs",
    "content": "﻿namespace MAUIsland;\n\npublic class EditorTextTransformPickerConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        if (value is TextTransform textTransform)\n        {\n            return textTransform;\n        }\n\n        return TextTransform.None;\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        if (value is TextTransform textTransform)\n        {\n            return textTransform;\n        }\n\n        return TextTransform.None;\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Editor/EditorPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.EditorPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Editor\"\n    Padding=\"20\"\n    x:DataType=\"core:EditorPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <core:StringToColorConverter x:Key=\"StringToColorConverter\" />\n        <app:EditorTextTransformPickerConverter x:Key=\"TextTransformConverter\" />\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) Editor allows you to enter and edit multiple lines of text.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Editor defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"LabelColorResource\" Type=\"{x:Type x:String}\">\n            <x:String>Red</x:String>\n            <x:String>Blue</x:String>\n            <x:String>Green</x:String>\n            <x:String>White</x:String>\n            <x:String>Black</x:String>\n            <x:String>Cyan</x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">AutoSize</strong>, of type <strong style=\"color:blue\">EditorAutoSizeOption</strong>, defines whether the editor will change size to accommodate user input. By default, the editor doesn't auto size.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CharacterSpacing</strong>, of type <strong style=\"color:blue\">double</strong>, sets the spacing between characters in the entered text.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CursorPosition</strong>, of type <strong style=\"color:blue\">int</strong>, defines the position of the cursor within the editor.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FontAttributes</strong>, of type <strong style=\"color:blue\">FontAttributes</strong>, determines text style.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FontAutoScalingEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, defines whether the text will reflect scaling preferences set in the operating system. The default value of this property is true.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FontFamily</strong>, of type <strong style=\"color:blue\">string</strong>, defines the font family.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">double</strong>, defines the font size.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">HorizontalTextAlignment</strong>, of type <strong style=\"color:blue\">TextAlignment</strong>, defines the horizontal alignment of the text.   ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">IsTextPredictionEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, controls whether text prediction and automatic text correction is enabled.   ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Placeholder</strong>, of type <strong style=\"color:blue\">string</strong>, defines the text that's displayed when the control is empty.   ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">PlaceholderColor</strong>, of type <strong style=\"color:blue\">Color</strong>, defines the color of the placeholder text. ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SelectionLength</strong>, of type <strong style=\"color:blue\">int</strong>, represents the length of selected text within the editor. ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Text</strong>, of type <strong style=\"color:blue\">string</strong>, defines the text entered into the editor. ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, defines the color of the entered text.    ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">VerticalTextAlignment</strong>, of type <strong style=\"color:blue\">TextAlignment</strong>, defines the vertical alignment of the text.   ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"Looks like this control is stable !!!\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Simple Editor\" />\n                                <Editor\n                                    Completed=\"OnEditorCompleted\"\n                                    HeightRequest=\"150\"\n                                    Placeholder=\"Enter your response here\"\n                                    TextChanged=\"OnEditorTextChanged\" />\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    Text=\"Here is the behavior of old text and new text:\"\n                                    TextDecorations=\"Underline\" />\n                                <Label>\n                                    <Label.FormattedText>\n                                        <FormattedString>\n                                            <Span Text=\"Old Text: \" />\n                                            <Span x:Name=\"OldTextSpan\" Text=\"Your old text\" />\n                                        </FormattedString>\n                                    </Label.FormattedText>\n                                </Label>\n                                <Label>\n                                    <Label.FormattedText>\n                                        <FormattedString>\n                                            <Span Text=\"New Text: \" />\n                                            <Span x:Name=\"NewTextSpan\" Text=\"Your new text\" />\n                                        </FormattedString>\n                                    </Label.FormattedText>\n                                </Label>\n                                <Label Text=\"\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlSimpleEditor}\" CodeType=\"Xaml\" />\n                                <Label Text=\"\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpSimpleEditorCodeBehind}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Editor With TextColor and CharacterSpacing\" />\n                                <Frame BackgroundColor=\"#313131\" BorderColor=\"#313131\">\n                                    <Grid\n                                        ColumnDefinitions=\"0.7*, 0.3*\"\n                                        ColumnSpacing=\"10\"\n                                        HeightRequest=\"200\"\n                                        RowDefinitions=\"0.3*, 0.7*\"\n                                        RowSpacing=\"10\">\n                                        <VerticalStackLayout Grid.Row=\"0\" Grid.Column=\"0\">\n                                            <Label Text=\"Set character spacing\" TextColor=\"#bfbfbf\" />\n                                            <Slider\n                                                x:Name=\"EditorCharacterSpacingSlider\"\n                                                Maximum=\"50\"\n                                                Minimum=\"0\" />\n                                        </VerticalStackLayout>\n                                        <Picker\n                                            x:Name=\"EditorColorPicker\"\n                                            Title=\"Text Color\"\n                                            Grid.Row=\"0\"\n                                            Grid.Column=\"1\"\n                                            ItemsSource=\"{x:StaticResource LabelColorResource}\"\n                                            SelectedIndex=\"5\" />\n                                        <Editor\n                                            Grid.Row=\"1\"\n                                            Grid.Column=\"0\"\n                                            Grid.ColumnSpan=\"2\"\n                                            CharacterSpacing=\"{x:Binding Source={x:Reference EditorCharacterSpacingSlider},\n                                                                         Path=Value,\n                                                                         Mode=TwoWay}\"\n                                            Placeholder=\"Type something in buddy\"\n                                            TextColor=\"{x:Binding Source={x:Reference EditorColorPicker},\n                                                                  Path=SelectedItem,\n                                                                  Converter={x:StaticResource StringToColorConverter}}\" />\n                                    </Grid>\n                                </Frame>\n                                <Label Text=\"This is how the Xaml look like\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlEditorDecoration}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Here is the String To Color Converter\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpEditorDecorationConverter}\" CodeType=\"CSharp\" />\n                                <Label Text=\"This is how the converter setup\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlEditorDecorationConverterDeclare}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Editor With Input Length and AutoSize\" />\n                                <Frame BackgroundColor=\"#313131\" BorderColor=\"#313131\">\n                                    <Grid ColumnDefinitions=\"0.7*, 0.3*\" ColumnSpacing=\"10\">\n                                        <Label\n                                            Grid.Column=\"0\"\n                                            Margin=\"5\"\n                                            HorizontalOptions=\"End\"\n                                            IsVisible=\"{x:Binding Source={x:Reference Editor2},\n                                                                  Path=IsFocused}\"\n                                            VerticalOptions=\"End\">\n                                            <Label.FormattedText>\n                                                <FormattedString>\n                                                    <Span x:Name=\"Editor2TextLenghtLabelSpan\" Text=\"{x:Binding Source={x:Reference Editor2}, Path=Text.Length}\" />\n                                                    <Span Text=\"/\" />\n                                                    <Span Text=\"{x:Binding EditorCharacterLimit}\" />\n                                                </FormattedString>\n                                            </Label.FormattedText>\n                                        </Label>\n                                        <Editor\n                                            x:Name=\"Editor2\"\n                                            Grid.Column=\"0\"\n                                            AutoSize=\"{x:Binding AutoSizeMode}\"\n                                            MaxLength=\"{x:Binding EditorCharacterLimit}\"\n                                            Text=\"Enter text here\"\n                                            TextChanged=\"OnEditorGetTextLength\" />\n                                        <VerticalStackLayout Grid.Column=\"1\" Spacing=\"5\">\n                                            <Label Text=\"Limit Your Editor\" />\n                                            <Frame\n                                                Padding=\"10\"\n                                                BackgroundColor=\"#4d4d4d\"\n                                                BorderColor=\"#4d4d4d\">\n                                                <Grid ColumnDefinitions=\"0.7*, 0.2*\" ColumnSpacing=\"10\">\n                                                    <Slider\n                                                        x:Name=\"CharacterLimitSlider\"\n                                                        Grid.Column=\"0\"\n                                                        Maximum=\"1000\"\n                                                        Minimum=\"1\"\n                                                        Value=\"{x:Binding EditorCharacterLimit}\" />\n                                                    <Label\n                                                        Grid.Column=\"1\"\n                                                        HorizontalOptions=\"Center\"\n                                                        Text=\"{x:Binding EditorCharacterLimit}\"\n                                                        VerticalOptions=\"Center\" />\n                                                </Grid>\n                                            </Frame>\n                                            <Label Text=\"Change AutoSize Mode\" />\n                                            <Button Command=\"{x:Binding ChangeAutoSizeModeCommand}\" Text=\"{x:Binding AutoSizeMode}\" />\n                                        </VerticalStackLayout>\n                                    </Grid>\n                                </Frame>\n\n                                <Label Text=\"This is how the Xaml\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlEditorTextLengthAndAutoSize}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Here is the ViewModel content\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpEditorTextLengthAndAutoSize}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Editor Transform Text\" />\n                                <Frame BackgroundColor=\"#313131\" BorderColor=\"#313131\">\n                                    <Grid ColumnDefinitions=\"0.8*, 0.2*\" ColumnSpacing=\"10\">\n                                        <Editor\n                                            Grid.Column=\"0\"\n                                            Text=\"Enter text here\"\n                                            TextTransform=\"{x:Binding SelectedTextTransform}\" />\n                                        <Picker\n                                            Grid.Column=\"1\"\n                                            ItemsSource=\"{x:Binding TextTransformList,\n                                                                    Mode=OneWay}\"\n                                            SelectedIndex=\"0\"\n                                            SelectedItem=\"{x:Binding SelectedTextTransform,\n                                                                     Mode=TwoWay,\n                                                                     Converter={StaticResource TextTransformConverter}}\" />\n                                    </Grid>\n                                </Frame>\n\n                                <Label Text=\"This is Xaml code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlEditorTransformText}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Here is the Text Transform Picker Converter\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpEditorTransformTextConverter}\" CodeType=\"CSharp\" />\n                                <Label Text=\"This is how the converter setup\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlEditorTransformTextConverterDeclare}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Here is ViewModel code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpEditorTransformTextViewModel}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Editor with Prediction and Prevent Text Entry\" />\n                                <Frame BackgroundColor=\"#313131\" BorderColor=\"#313131\">\n                                    <Grid ColumnDefinitions=\"0.8*, 0.2*\" ColumnSpacing=\"10\">\n                                        <Editor\n                                            Grid.Column=\"0\"\n                                            IsReadOnly=\"{x:Binding IsReadOnly}\"\n                                            IsTextPredictionEnabled=\"{x:Binding IsTextPrediction}\"\n                                            Text=\"Enter text here\" />\n                                        <VerticalStackLayout Grid.Column=\"1\">\n                                            <Label Text=\"Text Prediction\" />\n                                            <Switch IsToggled=\"{x:Binding IsTextPrediction, Mode=TwoWay}\" />\n                                            <Label Text=\"Read Only\" />\n                                            <Switch IsToggled=\"{x:Binding IsReadOnly, Mode=TwoWay}\" />\n                                        </VerticalStackLayout>\n                                    </Grid>\n                                </Frame>\n\n                                <Label Text=\"This is Xaml code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlEditorPredictionReadOnly}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Here is ViewModel code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpEditorPredictionReadOnlyViewModel}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Editor/EditorPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class EditorPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly EditorPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public EditorPage(EditorPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    void OnEditorGetTextLength(object sender, TextChangedEventArgs e)\n    {\n        Editor2TextLenghtLabelSpan.Text = e.NewTextValue.Length.ToString();\n    }\n\n    void OnEditorTextChanged(object sender, TextChangedEventArgs e)\n    {\n        OldTextSpan.Text = e.OldTextValue;\n        NewTextSpan.Text = e.NewTextValue;\n    }\n\n    void OnEditorCompleted(object sender, EventArgs e)\n    {\n        string text = ((Editor)sender).Text;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Entry/EntryPage.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.EntryPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Entry\"\n    Padding=\"20\"\n    x:DataType=\"core:EntryPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n    <core:BasePage.Resources>\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) Entry allows you to enter and edit a single line of text. In addition, the Entry can be used as a password field.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Entry defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:String x:Key=\"ImageButtonControlInfo\">\n            The Button class defines an ImageSource property that allows you to display a small bitmap image on the Button, either alone or in combination with text. You can also specify how the text and image are arranged. The ImageSource property is of type ImageSource, which means that the bitmaps can be loaded from a file, embedded resource, URI, or stream.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CharacterSpacing</strong>, of type <strong style=\"color:blue\">double</strong>, sets the spacing between characters in the entered text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ClearButtonVisibility</strong>, of type <strong style=\"color:blue\">ClearButtonVisibility</strong>, controls whether a clear button is displayed, which enables the user to clear the text. The default value of this property ensures that a clear button isn't displayed.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CursorPosition</strong>, of type <strong style=\"color:blue\">int</strong>, defines the position of the cursor within the entry.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAttributes</strong>, of type <strong style=\"color:blue\">FontAttributes</strong>, determines text style.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAutoScalingEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, defines whether the text will reflect scaling preferences set in the operating system. The default value of this property is true.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontFamily</strong>, of type <strong style=\"color:blue\">string</strong>, defines the font family.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">double</strong>, defines the font size.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Keyboard</strong>, of type <strong style=\"color:blue\">Keyboard</strong>, specifies the virtual keyboard that's displayed when entering text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">HorizontalTextAlignment</strong>, of type <strong style=\"color:blue\">TextAlignment</strong>, defines the horizontal alignment of the text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IsPassword</strong>, of type <strong style=\"color:blue\">bool</strong>, specifies whether the entry should visually obscure typed text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IsTextPredictionEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, controls whether text prediction and automatic text correction is enabled.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Placeholder</strong>, of type <strong style=\"color:blue\">string</strong>, defines the text that's displayed when the control is empty.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">PlaceholderColor</strong>, of type <strong style=\"color:blue\">Color</strong>, defines the color of the placeholder text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ReturnCommand</strong>, of type <strong style=\"color:blue\">ICommand</strong>, defines the command to be executed when the return key is pressed.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ReturnCommandParameter</strong>, of type <strong style=\"color:blue\">object</strong>, specifies the parameter for the ReturnCommand.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ReturnType</strong>, of type <strong style=\"color:blue\">ReturnType</strong>, specifies the appearance of the return button.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SelectionLength</strong>, of type <strong style=\"color:blue\">int</strong>, represents the length of selected text within the entry.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Text</strong>, of type <strong style=\"color:blue\">string</strong>, defines the text entered into the entry.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, defines the color of the entered text.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">VerticalTextAlignment</strong>, of type <strong style=\"color:blue\">TextAlignment</strong>, defines the vertical alignment of the text.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n        <LinearItemsLayout\n            x:Key=\"ChatLayout\"\n            ItemSpacing=\"10\"\n            Orientation=\"Vertical\" />\n\n        <DataTemplate x:Key=\"ChatCollectionViewItemTemplate\" x:DataType=\"core:ChatMessageModel\">\n            <app:ChatBubbleContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label Text=\"{x:Binding Content}\" />\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:Binding Content1}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:Binding EntryList}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label Text=\"{x:Binding Content2}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Create an Entry  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding CreateAnEntryHeader}\" />\n                                <Label Text=\"{x:Binding Content3}\" />\n                                <Entry\n                                    x:Name=\"entry\"\n                                    Completed=\"OnEntryCompleted\"\n                                    Placeholder=\"Enter text\"\n                                    TextChanged=\"OnEntryTextChanged\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CreateAnEntryXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:Binding Content4}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CreateAnEntryCSharpCode}\" CodeType=\"CSharp\" />\n                                <core:DocumentAlert AlertType=\"Note\" Text=\"{x:Binding CreateAnEntryNote}\" />\n                                <Label Text=\"{x:Binding Content5}\" />\n                                <Label Text=\"{x:Binding Content6}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CreateAnEntryCSharpCode1}\" CodeType=\"CSharp\" />\n                                <Label Text=\"{x:Binding Content7}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CreateAnEntryCSharpCode2}\" CodeType=\"CSharp\" />\n                                <Label Text=\"{x:Binding Content8}\" />\n                                <core:DocumentAlert AlertType=\"Note\" Text=\"{x:Binding CreateAnEntryNote1}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Set character spacing  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding SetCharacterSpacingHeader}\" />\n                                <Label Text=\"{x:Binding SetCharacterSpacing}\" />\n                                <Entry CharacterSpacing=\"10\" Placeholder=\"Type the text to see the behavior\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding SetCharacterSpacingXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:Binding SetCharacterSpacing1}\" />\n                                <core:DocumentAlert AlertType=\"Note\" Text=\"{x:Binding SetCharacterSpacingNote}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Limit input length  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding LimitInputLengthHeader}\" />\n                                <Label Text=\"{x:Binding LimitInputLength}\" />\n                                <Entry MaxLength=\"10\" Placeholder=\"Type the text to see the behavior\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding LimitInputLengthXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:Binding LimitInputLength1}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Set the cursor position and text selection length  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding SetTheCursorPositionAndTextSelectionLengthHeader}\" />\n                                <Label Text=\"{x:Binding SetTheCursorPositionAndTextSelectionLength}\" />\n                                <Entry CursorPosition=\"5\" Text=\"Cursor position set\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding SetTheCursorPositionAndTextSelectionLengthXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:Binding SetTheCursorPositionAndTextSelectionLength1}\" />\n                                <Label Text=\"{x:Binding SetTheCursorPositionAndTextSelectionLength2}\" />\n                                <Entry\n                                    CursorPosition=\"2\"\n                                    SelectionLength=\"10\"\n                                    Text=\"Cursor position and selection length set\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding SetTheCursorPositionAndTextSelectionLengthXamlCode1}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:Binding SetTheCursorPositionAndTextSelectionLength3}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Display a clear button  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding DisplayAClearButtonHeader}\" />\n                                <Label Text=\"{x:Binding DisplayAClearButton}\" />\n                                <CollectionView ItemsSource=\"{x:Binding DisplayAClearButtonList}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding DisplayAClearButtonXamlCode}\" CodeType=\"Xaml\" />\n                                <Entry ClearButtonVisibility=\"WhileEditing\" Text=\".NET MAUI\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Transform text  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding TransformTextHeader}\" />\n                                <Label Text=\"{x:Binding TransformText}\" />\n                                <CollectionView ItemsSource=\"{x:Binding TransformTextList}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label Text=\"{x:Binding TransformText1}\" />\n                                <Entry Text=\"This text will be displayed in uppercase.\" TextTransform=\"Uppercase\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding TransformTextXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Obscure text entry  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding ObscureTextEntryHeader}\" />\n                                <Label Text=\"{x:Binding ObscureTextEntry}\" />\n                                <Entry IsPassword=\"True\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding ObscureTextEntryXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Customize the keyboard  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding CustomizeTheKeyboardHeader}\" />\n                                <Label Text=\"{x:Binding CustomizeTheKeyboard}\" />\n                                <CollectionView ItemsSource=\"{x:Binding CustomizeTheKeyboardList}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label Text=\"{x:Binding CustomizeTheKeyboard1}\" />\n                                <Entry Keyboard=\"Chat\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CustomizeTheKeyboardXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:Binding CustomizeTheKeyboard2}\" />\n                                <CollectionView ItemsSource=\"{x:Binding CustomizeTheKeyboardList1}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label Text=\"{x:Binding CustomizeTheKeyboard3}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CustomizeTheKeyboardXamlCode1}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:Binding CustomizeTheKeyboard4}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CustomizeTheKeyboardCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Customize the return key  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding CustomizeTheReturnKeyHeader}\" />\n                                <Label Text=\"{x:Binding CustomizeTheReturnKey}\" />\n                                <CollectionView ItemsSource=\"{x:Binding CustomizeTheReturnKeyList}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label Text=\"{x:Binding CustomizeTheKeyboard1}\" />\n                                <Entry ReturnType=\"Send\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CustomizeTheReturnKeyXamlCode}\" CodeType=\"Xaml\" />\n                                <core:DocumentAlert AlertType=\"Note\" Text=\"{x:Binding CustomizeTheReturnKeyNote}\" />\n                                <Label Text=\"{x:Binding CustomizeTheKeyboard2}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Hide and show the soft input keyboard  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding HideAndShowTheSoftInputKeyboardHeader}\" />\n                                <Label Text=\"{x:Binding HideAndShowTheSoftInputKeyboard}\" />\n                                <CollectionView ItemsSource=\"{x:Binding HideAndShowTheSoftInputKeyboardList}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label Text=\"{x:Binding HideAndShowTheSoftInputKeyboard1}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding HideAndShowTheSoftInputKeyboardCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Enable and disable spell checking  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding EnableAndDisableSpellCheckingHeader}\" />\n                                <Label Text=\"{x:Binding EnableAndDisableSpellChecking}\" />\n                                <Label Text=\"{x:Binding EnableAndDisableSpellChecking1}\" />\n                                <Entry IsSpellCheckEnabled=\"True\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding EnableAndDisableSpellCheckingXamlCode}\" CodeType=\"Xaml\" />\n                                <core:DocumentAlert AlertType=\"Note\" Text=\"{x:Binding EnableAndDisableSpellCheckingNote}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Enable and disable text prediction  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding EnableAndDisableTextPredictionHeader}\" />\n                                <Label Text=\"{x:Binding EnableAndDisableTextPrediction}\" />\n                                <Label Text=\"{x:Binding EnableAndDisableTextPrediction1}\" />\n                                <Entry IsTextPredictionEnabled=\"True\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding EnableAndDisableTextPredictionXamlCode}\" CodeType=\"Xaml\" />\n                                <core:DocumentAlert AlertType=\"Note\" Text=\"{x:Binding EnableAndDisableTextPredictionNote}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Prevent text entry  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding PreventTextEntryHeader}\" />\n                                <Label Text=\"{x:Binding PreventTextEntry}\" />\n                                <Entry IsReadOnly=\"true\" Text=\"User input won't be accepted.\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding PreventTextEntryXamlCode}\" CodeType=\"Xaml\" />\n                                <core:DocumentAlert AlertType=\"Note\" Text=\"{x:Binding PreventTextEntryNote}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"We used entry for chatting\" />\n                                <Label Text=\"With the support of ReturnCommand you can fire an event with the return key and this also work for windows Enter key\" />\n                                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                                    <CollectionView\n                                        EmptyView=\"Send some messages\"\n                                        ItemTemplate=\"{x:StaticResource ChatCollectionViewItemTemplate}\"\n                                        ItemsLayout=\"{x:StaticResource ChatLayout}\"\n                                        ItemsSource=\"{x:Binding Messages}\"\n                                        ItemsUpdatingScrollMode=\"KeepLastItemInView\" />\n                                </Border>\n                                <Label\n                                    BackgroundColor=\"{x:StaticResource Primary}\"\n                                    HorizontalOptions=\"Center\"\n                                    Text=\"No need for a send button just hit enter\"\n                                    TextColor=\"{x:StaticResource White}\" />\n                                <Entry\n                                    x:Name=\"ChatboxEntry\"\n                                    Placeholder=\"Type in some message and press Enter !!!\"\n                                    ReturnCommand=\"{x:Binding SendMessageCommand}\"\n                                    ReturnCommandParameter=\"{x:Binding TextMessage}\"\n                                    Text=\"{x:Binding TextMessage,\n                                                     Mode=TwoWay}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Entry/EntryPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class EntryPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly EntryPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public EntryPage(EntryPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    private void OnEntryCompleted(System.Object sender, System.EventArgs e)\n    {\n        string text = ((Entry)sender).Text;\n    }\n    private void OnEntryTextChanged(System.Object sender, Microsoft.Maui.Controls.TextChangedEventArgs e)\n    {\n        string oldText = e.OldTextValue;\n        string newText = e.NewTextValue;\n        string myText = entry.Text;\n    }\n\n    #endregion\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Frame/FramePage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.FramePage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Frame\"\n    Padding=\"20\"\n    x:DataType=\"core:FramePageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) Frame is used to wrap a view or layout with a border that can be configured with color, shadow, and other options. Frames can be used to create borders around controls but can also be used to create more complex UI.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Frame defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">BorderColor</strong>, of type <strong style=\"color:blue\">Color </strong>, determines the color of the Frame border.\n\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CornerRadius</strong>, of type <strong style=\"color:blue\">float</strong>, determines the rounded radius of the corner.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">HasShadow</strong>, of type <strong style=\"color:blue\">bool</strong>, determines whether the frame has a drop shadow.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSource2\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                The <strong style=\"color:blue\">CornerRadius</strong>  property of the Frame control is one approach to creating a circle image. The following XAML shows how to create a circle image with a Frame:\n\n                            ]]>\n            </x:String>\n\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"Looks like this control is stable !!!\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Create a Frame\" />\n                                <Label Text=\"A Frame object typically wraps another control, such as a Label:\" />\n                                <Frame>\n                                    <Label Text=\"Frame wrapped around a Label\" TextColor=\"White\" />\n                                </Frame>\n                                <core:SourceCodeExpander Code=\"{x:Binding StandardCreateFrameXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Text=\"The appearance of Frame objects can be customized by setting properties:\" />\n                                <Frame\n                                    BackgroundColor=\"DimGrey\"\n                                    BorderColor=\"Grey\"\n                                    CornerRadius=\"10\">\n                                    <Label Text=\"Frame wrapped around a Label\" />\n                                </Frame>\n                                <core:SourceCodeExpander Code=\"{x:Binding CreateTheSecondFrameXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Create a card with a Frame\" />\n                                <Label Text=\"The following XAML shows how to create a card with a Frame:\" />\n                                <Frame\n                                    Padding=\"10\"\n                                    BackgroundColor=\"White\"\n                                    BorderColor=\"Gray\"\n                                    CornerRadius=\"8\"\n                                    HeightRequest=\"150\"\n                                    WidthRequest=\"200\">\n                                    <StackLayout>\n                                        <Label\n                                            FontAttributes=\"Bold\"\n                                            FontSize=\"14\"\n                                            Text=\"Card Example\"\n                                            TextColor=\"Black\" />\n                                        <BoxView\n                                            HeightRequest=\"2\"\n                                            HorizontalOptions=\"Fill\"\n                                            Color=\"Gray\" />\n                                        <Label Text=\"Frames can wrap more complex layouts to create more complex UI components, such as this card!\" TextColor=\"Black\" />\n                                    </StackLayout>\n                                </Frame>\n                                <core:SourceCodeExpander Code=\"{x:Binding CreateACardWithAFrameXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Round elements\" />\n                                <Label Text=\"The CornerRadius  property of the Frame control is one approach to creating a circle image. The following XAML shows how to create a circle image with a Frame:\" />\n                                <Frame\n                                    Padding=\"20\"\n                                    BorderColor=\"Black\"\n                                    CornerRadius=\"60\"\n                                    HeightRequest=\"120\"\n                                    HorizontalOptions=\"Center\"\n                                    IsClippedToBounds=\"True\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"120\">\n                                    <Image\n                                        HeightRequest=\"80\"\n                                        HorizontalOptions=\"Center\"\n                                        Source=\"{x:Binding ControlInformation.ControlIcon}\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"80\" />\n                                </Frame>\n                                <core:SourceCodeExpander Code=\"{x:Binding RoundElementsXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Frame/FramePage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class FramePage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly FramePageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public FramePage(FramePageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/ImageButton/ImageButtonPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ImageButtonPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"ImageButton\"\n    Padding=\"20\"\n    x:DataType=\"core:ImageButtonPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) Button displays text and responds to a tap or click that directs the app to carry out a task. A Button usually displays a short text string indicating a command, but it can also display a bitmap image, or a combination of text and an image. When the Button is pressed with a finger or clicked with a mouse it initiates that command.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Button defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">BorderColor</strong>, of type <strong style=\"color:blue\">Color</strong>, describes the border color of the button.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">BorderWidth</strong>, of type <strong style=\"color:blue\">double</strong>, defines the width of the button's border.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CharacterSpacing</strong>, of type <strong style=\"color:blue\">double</strong>, defines the spacing between characters of the button's text.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Command</strong>, of type <strong style=\"color:blue\">ICommand</strong>, defines the command that's executed when the button is tapped.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CommandParameter</strong>, of type <strong style=\"color:blue\">object</strong>, is the parameter that's passed to Command.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ContentLayout</strong>, of type <strong style=\"color:blue\">ButtonContentLayout</strong>, defines the object that controls the position of the button image and the spacing between the button's image and text.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CornerRadius</strong>, of type <strong style=\"color:blue\">int</strong>, describes the corner radius of the button's border.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FontAttributes</strong>, of type <strong style=\"color:blue\">FontAttributes</strong>, determines text style.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FontAutoScalingEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, defines whether the button text will reflect scaling preferences set in the operating system. The default value of this property is true. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FontFamily</strong>, of type <strong style=\"color:blue\">string</strong>, defines the font family.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">double</strong>, defines the font size.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ImageSource</strong>, of type <strong style=\"color:blue\">ImageSource</strong>, specifies a bitmap image to display as the content of the button. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">LineBreakMode</strong>, of type <strong style=\"color:blue\">LineBreakMode</strong>, determines how text should be handled when it can't fit on one line.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Padding</strong>, of type <strong style=\"color:blue\">Thickness</strong>, determines the button's padding.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Text</strong>, of type <strong style=\"color:blue\">string</strong>, defines the text displayed as the content of the button.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, describes the color of the button's text. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">TextTransform</strong>, of type <strong style=\"color:blue\">TextTransform</strong>, defines the casing of the button's text.  ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <CollectionView\n                                Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                Header=\"{x:StaticResource PropertiesListHeader}\"\n                                ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Basic ImageButton\" />\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <ImageButton\n                                        Padding=\"5\"\n                                        CornerRadius=\"5\"\n                                        HeightRequest=\"50\"\n                                        Pressed=\"OnButtonPressed\"\n                                        Released=\"OnButtonReleased\"\n                                        Source=\"android_logo.png\"\n                                        VerticalOptions=\"Center\" />\n                                    <ImageButton\n                                        Padding=\"5\"\n                                        CornerRadius=\"5\"\n                                        HeightRequest=\"50\"\n                                        Pressed=\"OnButtonPressed\"\n                                        Released=\"OnButtonReleased\"\n                                        Source=\"tizenlogo.png\"\n                                        VerticalOptions=\"Center\" />\n                                    <ImageButton\n                                        Padding=\"5\"\n                                        CornerRadius=\"5\"\n                                        HeightRequest=\"50\"\n                                        Pressed=\"OnButtonPressed\"\n                                        Released=\"OnButtonReleased\"\n                                        Source=\"windowslogo.png\"\n                                        VerticalOptions=\"Center\" />\n                                    <ImageButton\n                                        Padding=\"5\"\n                                        CornerRadius=\"5\"\n                                        HeightRequest=\"50\"\n                                        Pressed=\"OnButtonPressed\"\n                                        Released=\"OnButtonReleased\"\n                                        Source=\"ios_logo.png\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Label Text=\"This is basic ImageButton XAML\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlBasicImageButton}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"ImageButton with EventHandler\" />\n                                <Label Text=\"Click the Image Please\" />\n                                <Border\n                                    x:Name=\"ImageButtonWithEvent\"\n                                    Padding=\"5\"\n                                    BackgroundColor=\"DarkGray\">\n                                    <Border.StrokeShape>\n                                        <RoundRectangle CornerRadius=\"5\" StrokeThickness=\"1\" />\n                                    </Border.StrokeShape>\n                                    <HorizontalStackLayout Spacing=\"10\">\n                                        <ImageButton\n                                            Clicked=\"ImageButtonEventHandlerClicked\"\n                                            HeightRequest=\"50\"\n                                            Source=\"android_logo.png\"\n                                            VerticalOptions=\"Center\" />\n                                        <Label\n                                            x:Name=\"ImageButtonWithEventLabel\"\n                                            Text=\"ImageButton with Click Event\"\n                                            VerticalOptions=\"Center\" />\n                                    </HorizontalStackLayout>\n                                </Border>\n\n                                <Label Text=\"This is how this ImageButton looks like\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlImageButtonWithEventHandler}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Here for the ImageButton EventHandler\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpImageButtonWithEventHandlerCodeBehind}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"ImageButton with Command\" />\n                                <Label Text=\"Click the Image Please\" />\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <ImageButton\n                                        Command=\"{x:Binding ClickedCountCommand}\"\n                                        CornerRadius=\"10\"\n                                        HeightRequest=\"50\"\n                                        Source=\"android_logo.png\"\n                                        VerticalOptions=\"Center\" />\n                                    <Label VerticalOptions=\"Center\">\n                                        <Label.FormattedText>\n                                            <FormattedString>\n                                                <Span Text=\"You just click the button: \" />\n                                                <Span Text=\"{x:Binding ImageButtonClickCount}\" />\n                                            </FormattedString>\n                                        </Label.FormattedText>\n                                    </Label>\n                                </HorizontalStackLayout>\n                                <Label Text=\"This is ImageButton with Command code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlImageButtonWithCommand}\" CodeType=\"Xaml\" />\n                                <Label Text=\"Here for the ViewModel\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpImageButtonWithCommandViewModel}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"ImageButton can act like a Clickable Image\" />\n                                <ImageButton\n                                    Padding=\"0\"\n                                    Command=\"{x:Binding ClickedCheckCommand}\"\n                                    CornerRadius=\"{x:Binding Source={x:Reference RoundedCornerSlider},\n                                                             Path=Value}\"\n                                    HorizontalOptions=\"Center\"\n                                    Scale=\"{x:Binding Source={x:Reference ScaleSlider},\n                                                      Path=Value}\"\n                                    Source=\"{x:Binding ImageSourceSample}\"\n                                    VerticalOptions=\"Center\" />\n                                <Button Command=\"{x:Binding OpenFileCommand}\" Text=\"Upload image\" />\n                                <Label Text=\"Adjust the corner radius\" />\n                                <Slider\n                                    x:Name=\"RoundedCornerSlider\"\n                                    Maximum=\"100\"\n                                    Minimum=\"0\" />\n                                <Label Text=\"Adjust the Scale\" />\n                                <Slider\n                                    x:Name=\"ScaleSlider\"\n                                    Maximum=\"1.5\"\n                                    Minimum=\"0.1\"\n                                    Value=\"1\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"ImageButton visual states\" />\n                                <Label Text=\"Visual states currently did not work on ImageButton.\" TextColor=\"OrangeRed\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/ImageButton/ImageButtonPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class ImageButtonPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly ImageButtonPageViewModel viewModel;\n    #endregion\n\n    #region [ Properties ]\n\n    private bool IsPressed = true;\n    #endregion\n\n    #region [ CTor ]\n    public ImageButtonPage(ImageButtonPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n\n    }\n    #endregion\n\n    #region [ Event Handler ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    private void OnButtonPressed(object sender, EventArgs e)\n    {\n        var imageButton = sender as ImageButton;\n        imageButton.BackgroundColor = Colors.DarkGray;\n    }\n\n    private void OnButtonReleased(object sender, EventArgs e)\n    {\n        var imageButton = sender as ImageButton;\n        imageButton.BackgroundColor = Colors.White;\n    }\n\n    private void ImageButtonEventHandlerClicked(object sender, EventArgs e)\n    {\n        if (IsPressed)\n        {\n            ImageButtonWithEvent.BackgroundColor = Colors.Blue;\n            ImageButtonWithEventLabel.TextColor = Colors.White;\n            IsPressed = false;\n        }\n        else\n        {\n            ImageButtonWithEvent.BackgroundColor = Colors.DarkGray;\n            ImageButtonWithEventLabel.TextColor = Colors.Black;\n            IsPressed = true;\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/IndicatorView/IndicatorViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.IndicatorViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    x:Name=\"root\"\n    Title=\"Indicator View\"\n    Padding=\"20\"\n    x:DataType=\"core:IndicatorViewPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) IndicatorView is a control that displays indicators that represent the number of items, and current position, in a CarouselView:\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            IndicatorView defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:String x:Key=\"DemonstrateMessage\">\n            The CarouselView currently very buggy on WinUI it can't decide the width it need to stretch the item inside, leading the indicator also confuse to calculate the position.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Count</strong>, of type <strong style=\"color:blue\">int</strong>, the number of indicators.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">HideSingle</strong>, of type <strong style=\"color:blue\">bool</strong>, indicates whether the indicator should be hidden when only one exists. The default value is <strong style=\"color:blue\">true</strong>.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                               <strong style=\"color:blue\">IndicatorColor</strong>, of type <strong style=\"color:blue\">Color</strong>, the color of the indicators.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IndicatorSize</strong>, of type <strong style=\"color:blue\">double</strong>, the size of the indicators. The default value is 6.0.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IndicatorLayout</strong>, of type <strong style=\"color:blue\">Layout.View</strong>, defines the layout class used to render the IndicatorView. This property is set by .NET MAUI, and does not typically need to be set by developers.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IndicatorTemplate</strong>, of type <strong style=\"color:blue\">DataTemplate</strong>, the template that defines the appearance of each indicator.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IndicatorsShape</strong>, of type <strong style=\"color:blue\">IndicatorShape</strong>, the shape of each indicator.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ItemsSource</strong>, of type <strong style=\"color:blue\">IEnumerable</strong>, the collection that indicators will be displayed for. This property will automatically be set when the <strong style=\"color:blue\">CarouselView.IndicatorView</strong> property is set.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">MaximumVisible</strong>, of type <strong style=\"color:blue\">int</strong>, the maximum number of visible indicators. The default value is <strong style=\"color:blue\">int.MaxValue</strong>.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Position</strong>, of type <strong style=\"color:blue\">int</strong>, the currently selected indicator index. This property uses a <strong style=\"color:blue\">TwoWay</strong> binding. This property will automatically be set when the <strong style=\"color:blue\">CarouselView.IndicatorView</strong> property is set.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SelectedIndicatorColor</strong>, of type <strong style=\"color:blue\">Color</strong>, the color of the indicator that represents the current item in the CarouselView.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"CarouseViewTemplate1\" x:DataType=\"core:Cat\">\n            <StackLayout>\n                <Frame\n                    BorderColor=\"Blue\"\n                    HorizontalOptions=\"Center\"\n                    VerticalOptions=\"Center\"\n                    WidthRequest=\"120\">\n                    <StackLayout>\n                        <Label Text=\"{Binding Name}\" />\n                        <Label Text=\"{Binding Description}\" />\n                    </StackLayout>\n                </Frame>\n            </StackLayout>\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    Margin=\"0,0,0,10\"\n                                    Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                    Text=\"Demonstration\" />\n                                <Label Text=\"{x:StaticResource DemonstrateMessage}\" />\n                                <Grid\n                                    Background=\"White\"\n                                    HeightRequest=\"1\"\n                                    VerticalOptions=\"End\" />\n                                <StackLayout HorizontalOptions=\"Start\">\n                                    <CarouselView\n                                        HorizontalScrollBarVisibility=\"Never\"\n                                        IndicatorView=\"indicatorView1\"\n                                        ItemTemplate=\"{x:StaticResource CarouseViewTemplate1}\"\n                                        ItemsSource=\"{x:Binding Cats}\"\n                                        Loop=\"False\"\n                                        WidthRequest=\"120\" />\n                                    <IndicatorView\n                                        x:Name=\"indicatorView1\"\n                                        IndicatorColor=\"LightGray\"\n                                        SelectedIndicatorColor=\"DarkGray\" />\n                                </StackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding StandardIndicatorViewXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/IndicatorView/IndicatorViewPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class IndicatorViewPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly IndicatorViewPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public IndicatorViewPage(IndicatorViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    #endregion\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Label/LabelPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.LabelPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Label\"\n    Padding=\"10\"\n    x:DataType=\"core:LabelPageViewModel\"\n    BackgroundColor=\"Transparent\">\n    <core:BasePage.Resources>\n        <core:LineBreakModeEnumToStringConverter x:Key=\"LineBreakModeEnumToStringConverter\" />\n        <core:StringToColorConverter x:Key=\"StringToColorConverter\" />\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) Label displays single-line and multi-line text. Text displayed by a Label can be colored, spaced, and can have text decorations.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Label defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"LabelColorResource\" Type=\"{x:Type x:String}\">\n            <x:String>Red</x:String>\n            <x:String>Blue</x:String>\n            <x:String>Green</x:String>\n            <x:String>White</x:String>\n            <x:String>Black</x:String>\n            <x:String>Cyan</x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CharacterSpacing</strong>, of type <strong style=\"color:blue\">double</strong>, sets the spacing between characters in the displayed text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAttributes</strong>, of type <strong style=\"color:blue\">FontAttributes</strong>, determines text style.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAutoScalingEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, defines whether the text will reflect scaling preferences set in the operating system. The default value of this property is true.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontFamily</strong>, of type <strong style=\"color:blue\">string</strong>, defines the font family.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">double</strong>, defines the font size.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FormattedText</strong>, of type <strong style=\"color:blue\">FormattedString</strong>, specifies the presentation of text with multiple presentation options such as fonts and colors.\n\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">HorizontalTextAlignment</strong>, of type <strong style=\"color:blue\">TextAlignment</strong>, defines the horizontal alignment of the displayed text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">LineBreakMode</strong>, of type <strong style=\"color:blue\">LineBreakMode</strong>, determines how text should be handled when it can't fit on one line.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">LineHeight</strong>, of type <strong style=\"color:blue\">double</strong>, specifies the multiplier to apply to the default line height when displaying text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">MaxLines</strong>, of type <strong style=\"color:blue\">int</strong>, indicates the maximum number of lines allowed in the Label.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Padding</strong>, of type <strong style=\"color:blue\">Thickness</strong>, determines the label's padding.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Text</strong>, of type <strong style=\"color:blue\">string</strong>, defines the text displayed as the content of the label.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, defines the color of the displayed text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextDecorations</strong>, of type <strong style=\"color:blue\">TextDecorations</strong>, specifies the text decorations (underline and strikethrough) that can be applied.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextTransform</strong>, of type <strong style=\"color:blue\">TextTransform</strong>, specifies the casing of the displayed text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextType</strong>, of type <strong style=\"color:blue\">TextType</strong>, determines whether the Label should display plain text or HTML text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">VerticalTextAlignment</strong>, of type <strong style=\"color:blue\">TextAlignment</strong>, defines the vertical alignment of the displayed text.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n    </core:BasePage.Resources>\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <CollectionView\n                                Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                Header=\"{x:StaticResource PropertiesListHeader}\"\n                                ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Grid ColumnDefinitions=\"*, *\" RowDefinitions=\"*,*\">\n                                <VerticalStackLayout Grid.RowSpan=\"2\" Spacing=\"10\">\n                                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Built-in font sizes\" />\n                                    <Label FontSize=\"Caption\" Text=\"Caption\" />\n                                    <Label FontSize=\"Body\" Text=\"Body\" />\n                                    <Label FontSize=\"Default\" Text=\"Default\" />\n                                    <Label FontSize=\"Micro\" Text=\"Micro\" />\n                                    <Label FontSize=\"Small\" Text=\"Small\" />\n                                    <Label FontSize=\"Subtitle\" Text=\"Subtitle\" />\n                                    <Label FontSize=\"Title\" Text=\"Title\" />\n                                    <Label FontSize=\"Medium\" Text=\"Medium\" />\n                                    <Label FontSize=\"Large\" Text=\"Large\" />\n                                    <Label FontSize=\"Header\" Text=\"Header\" />\n                                </VerticalStackLayout>\n                                <VerticalStackLayout Grid.Column=\"1\" Spacing=\"10\">\n                                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Built-in font attributes\" />\n                                    <Label FontAttributes=\"None\" Text=\"None\" />\n                                    <Label FontAttributes=\"Bold\" Text=\"Bold\" />\n                                    <Label FontAttributes=\"Italic\" Text=\"Italic\" />\n                                </VerticalStackLayout>\n                                <VerticalStackLayout\n                                    Grid.Row=\"1\"\n                                    Grid.Column=\"1\"\n                                    Spacing=\"10\">\n                                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Text decorations\" />\n                                    <Label Text=\"None\" TextDecorations=\"None\" />\n                                    <Label Text=\"Strikethrough\" TextDecorations=\"Strikethrough\" />\n                                    <Label Text=\"Underline\" TextDecorations=\"Underline\" />\n                                </VerticalStackLayout>\n                            </Grid>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Control text truncation and wrapping\" />\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Picker\n                                        x:Name=\"LineBreakModePicker\"\n                                        Title=\"Line Break Mode\"\n                                        ItemsSource=\"{x:Binding LineBreakModes}\"\n                                        SelectedIndex=\"{x:Binding SelectedLineBreakModeIndex,\n                                                                  Converter={x:StaticResource LineBreakModeEnumToStringConverter},\n                                                                  Mode=TwoWay}\" />\n\n                                    <VerticalStackLayout Spacing=\"8\">\n                                        <Label Text=\"Adjust maximum lines\" />\n                                        <HorizontalStackLayout Spacing=\"5\">\n                                            <Stepper\n                                                x:Name=\"MaximumLineStepper\"\n                                                Increment=\"1\"\n                                                Maximum=\"5\"\n                                                Minimum=\"1\"\n                                                VerticalOptions=\"Center\" />\n                                            <Label Text=\"{x:Binding Source={x:Reference MaximumLineStepper}, Path=Value}\" VerticalOptions=\"Center\" />\n                                        </HorizontalStackLayout>\n                                    </VerticalStackLayout>\n\n                                    <Picker\n                                        x:Name=\"LabelColorPicker\"\n                                        Title=\"Change Text Color\"\n                                        ItemsSource=\"{x:StaticResource LabelColorResource}\"\n                                        SelectedIndex=\"1\" />\n                                </HorizontalStackLayout>\n\n                                <VerticalStackLayout MinimumWidthRequest=\"200\" Spacing=\"8\">\n                                    <Label Text=\"Line Height\" />\n                                    <Slider\n                                        x:Name=\"LineHeightSlider\"\n                                        Maximum=\"3\"\n                                        Minimum=\"1\" />\n                                </VerticalStackLayout>\n\n                                <Label\n                                    LineBreakMode=\"{x:Binding Source={x:Reference LineBreakModePicker},\n                                                              Path=SelectedIndex,\n                                                              Converter={x:StaticResource LineBreakModeEnumToStringConverter},\n                                                              Mode=TwoWay}\"\n                                    LineHeight=\"{x:Binding Source={x:Reference LineHeightSlider},\n                                                           Path=Value,\n                                                           Mode=TwoWay}\"\n                                    MaxLines=\"{x:Binding Source={x:Reference MaximumLineStepper},\n                                                         Path=Value,\n                                                         Mode=TwoWay}\"\n                                    Text=\"{x:StaticResource Lorem}\"\n                                    TextColor=\"{x:Binding Source={x:Reference LabelColorPicker},\n                                                          Path=SelectedItem,\n                                                          Converter={x:StaticResource StringToColorConverter}}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Control the text using FormattedString and Span\" />\n                                <Label>\n                                    <Label.FormattedText>\n                                        <FormattedString>\n                                            <Span Text=\"Sometimes we only want to use one label to display a complex line of text rather than using multiples labels and arrange them inside a layout ex: \" />\n                                            <Span\n                                                BackgroundColor=\"Gray\"\n                                                Text=\"HorizontalStackLayout\"\n                                                TextColor=\"Blue\" />\n                                            <Span Text=\", You can also apply color to Span \" TextColor=\"Violet\" />\n                                            <Span Text=\"{x:Binding LabelSpanBinding}\" TextColor=\"#e89e4e\" />\n                                        </FormattedString>\n                                    </Label.FormattedText>\n                                </Label>\n                                <core:SourceCodeExpander Code=\"{x:Binding LabelXamlCodeExample}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Code style label\" />\n                                <Label FormattedText=\"{x:Binding FormatedStringByCsharpCode}\" />\n                                <!--<Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Test your code format\" />\n                    <Editor />\n                    <Label />-->\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Label/LabelPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class LabelPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly LabelPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public LabelPage(LabelPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/MenuBar/MenuBarPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.MenuBarPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"MenuBar\"\n    Padding=\"20\"\n    x:DataType=\"core:MenuBarPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.Resources>\n        <FontImageSource\n            x:Key=\"DownloadIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_download_48_regular}\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n\n        <x:String x:Key=\"ControlInfo\">\n            A .NET Multi-platform App UI (.NET MAUI) menu bar is a container that presents a set of menus in a horizontal row, at the top of an app on Mac Catalyst and Windows.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Each top-level menu in the menu bar, known as a menu bar item, is represented by a MenuBarItem object. MenuBarItem defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader1\">\n            A MenuBarItem can consist of the following children:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter1\">\n            MenuFlyoutSubItem derives from MenuFlyoutItem, which in turn derives from MenuItem. MenuItem defines multiple properties that enable the appearance and behavior of a menu item to be specified. The appearance of a menu item, or sub-item, can be defined by setting the Text, and IconImageSource properties. The response to a menu item, or sub-item, click can be defined by setting the Clicked, Command, and CommandParameter properties. For more information about menu items, see Display menu items.\n        </x:String>\n\n        <x:String x:Key=\"ImageButtonControlInfo\">\n            The Button class defines an ImageSource property that allows you to display a small bitmap image on the Button, either alone or in combination with text. You can also specify how the text and image are arranged. The ImageSource property is of type ImageSource, which means that the bitmaps can be loaded from a file, embedded resource, URI, or stream.\n        </x:String>\n\n        <x:String x:Key=\"CreateMenuBarItems\">\n            MenuBarItem objects can be added to the MenuBarItems collection, of type IListMenuBarItem, on a ContentPage. .NET MAUI desktop apps will display a menu bar, containing menu items, when they are added to any ContentPage that's hosted in a NavigationPage or a Shell app.\n        </x:String>\n\n        <x:String x:Key=\"CreateMenuBarItems2\">\n            This example defines three top-level menus. Each top-level menu has menu items, and the second top-level menu has a sub-menu and a separator:\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Text</strong>, which represents a menu item that can be clicked.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IsEnabled</strong>, of type <strong style=\"color:blue\">boolean</strong>, specifies whether the menu is enabled. The default value of this property is true.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"Properties1ItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">MenuFlyoutItem</strong>, of type <strong style=\"color:blue\">string</strong>, defines the menu text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">MenuFlyoutSubItem</strong>, which represents a sub-menu item that can be clicked.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">MenuFlyoutSeparator</strong>, which is a horizontal line that separates items in the menu.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.MenuBarItems>\n        <MenuBarItem Text=\"File\">\n            <MenuFlyoutItem\n                Command=\"{Binding OpenSnackBarCommand}\"\n                CommandParameter=\"Exit\"\n                Text=\"Exit\" />\n        </MenuBarItem>\n        <MenuBarItem Text=\"Locations\">\n            <MenuFlyoutSubItem Text=\"Change Location\">\n                <MenuFlyoutItem\n                    Command=\"{Binding OpenSnackBarCommand}\"\n                    CommandParameter=\"Redmond\"\n                    Text=\"Redmond, USA\" />\n                <MenuFlyoutItem\n                    Command=\"{Binding OpenSnackBarCommand}\"\n                    CommandParameter=\"London\"\n                    Text=\"London, UK\" />\n                <MenuFlyoutItem\n                    Command=\"{Binding OpenSnackBarCommand}\"\n                    CommandParameter=\"Berlin\"\n                    Text=\"Berlin, DE\" />\n            </MenuFlyoutSubItem>\n            <MenuFlyoutSeparator />\n            <MenuFlyoutItem\n                Command=\"{Binding OpenSnackBarCommand}\"\n                CommandParameter=\"Add Location\"\n                Text=\"Add Location\" />\n            <MenuFlyoutItem\n                Command=\"{Binding OpenSnackBarCommand}\"\n                CommandParameter=\"Edit Location\"\n                Text=\"Edit Location\" />\n            <MenuFlyoutItem\n                Command=\"{Binding OpenSnackBarCommand}\"\n                CommandParameter=\"Remove Location\"\n                Text=\"Remove Location\" />\n        </MenuBarItem>\n        <MenuBarItem Text=\"View\">\n            <MenuFlyoutItem\n                Command=\"{Binding OpenSnackBarCommand}\"\n                CommandParameter=\"Refresh\"\n                Text=\"Refresh\" />\n            <MenuFlyoutItem\n                Command=\"{Binding OpenSnackBarCommand}\"\n                CommandParameter=\"Change Theme\"\n                Text=\"Change Theme\" />\n        </MenuBarItem>\n    </core:BasePage.MenuBarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader1}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter1}\"\n                                    ItemsSource=\"{x:StaticResource Properties1ItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Create menu bar items\" />\n                                <Label\n                                    Padding=\"8\"\n                                    BackgroundColor=\"Yellow\"\n                                    HorizontalOptions=\"Start\"\n                                    Text=\"Check on the top left of this page (on the left of the MenuBar text)\"\n                                    TextColor=\"Black\" />\n                                <Label Text=\"{x:StaticResource CreateMenuBarItems}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding ContentPageWithMenuBar}\" CodeType=\"Xaml\" />\n                                <Label Text=\"{x:StaticResource CreateMenuBarItems2}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"You can stick menu bar everywhere\" />\n                                <Label Text=\"Right click these below elements to trigger menu bars\" />\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    Text=\"Button:\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    HorizontalOptions=\"Start\"\n                                    Text=\"&#x25B6;&#xFE0F; Play\"\n                                    WidthRequest=\"80\">\n                                    <FlyoutBase.ContextFlyout>\n                                        <MenuFlyout>\n                                            <MenuFlyoutItem Text=\"Pause\">\n                                                <MenuFlyoutItem.IconImageSource>\n                                                    <FontImageSource FontFamily=\"Arial\" Glyph=\"&#x23F8;\" />\n                                                </MenuFlyoutItem.IconImageSource>\n                                            </MenuFlyoutItem>\n                                            <MenuFlyoutItem Text=\"Stop\">\n                                                <MenuFlyoutItem.IconImageSource>\n                                                    <FontImageSource FontFamily=\"Arial\" Glyph=\"&#x23F9;\" />\n                                                </MenuFlyoutItem.IconImageSource>\n                                            </MenuFlyoutItem>\n                                        </MenuFlyout>\n                                    </FlyoutBase.ContextFlyout>\n                                </Button>\n                                <core:SourceCodeExpander Code=\"{x:Binding ButtonWithMenuBar}\" CodeType=\"Xaml\" />\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    Text=\"Image:\"\n                                    TextDecorations=\"Underline\" />\n                                <Image\n                                    HeightRequest=\"100\"\n                                    HorizontalOptions=\"Start\"\n                                    Source=\"dotnet_bot.png\"\n                                    WidthRequest=\"100\">\n                                    <FlyoutBase.ContextFlyout>\n                                        <MenuFlyout>\n                                            <MenuFlyoutItem IconImageSource=\"{x:StaticResource DownloadIcon}\" Text=\"Save Image\" />\n                                        </MenuFlyout>\n                                    </FlyoutBase.ContextFlyout>\n                                </Image>\n                                <core:SourceCodeExpander Code=\"{x:Binding ImageWithMenuBar}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/MenuBar/MenuBarPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class MenuBarPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly MenuBarPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public MenuBarPage(MenuBarPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Picker/PickerPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.PickerPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Picker\"\n    Padding=\"20\"\n    x:DataType=\"core:PickerPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n    <core:BasePage.Resources>\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) Picker displays short list of items, from which the user can select an item.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Picker defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CharacterSpacing</strong>, of type <strong style=\"color:blue\">double</strong>, is the spacing between characters of the item displayed by the Picker.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAttributes</strong>, of type <strong style=\"color:blue\">FontAttributes</strong>, which defaults to <strong style=\"color:blue\">FontAtributes.None</strong>.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAutoScalingEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, which determines whether the text respects scaling preferences set in the operating system. The default value of this property is <strong style=\"color:blue\">true</strong>.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontFamily</strong>, of type <strong style=\"color:blue\">string</strong>, which defaults to <strong style=\"color:blue\">null</strong>.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">double</strong>, which defaults to -1.0.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">HorizontalTextAlignment</strong>, of type <strong style=\"color:blue\">TextAlignment</strong>, is the horizontal alignment of the text displayed by the Picker.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ItemsSource</strong>, of type <strong style=\"color:blue\">IList</strong>, the source list of items to display, which defaults to <strong style=\"color:blue\">null</strong>.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SelectedIndex</strong>, of type <strong style=\"color:blue\">int</strong>, the index of the selected item, which defaults to -1.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SelectedItem</strong>, of type <strong style=\"color:blue\">object</strong>, the selected item, which defaults to <strong style=\"color:blue\">null</strong>.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, which defines the color used to display the text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextTransform</strong>, of type <strong style=\"color:blue\">TextTransform</strong>, which defines whether to transform the casing of text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Title</strong>, of type <strong style=\"color:blue\">string</strong>, which defaults to <strong style=\"color:blue\">null</strong>.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TitleColor</strong>, of type <strong style=\"color:blue\">Color</strong>, which defines the color used to display the <strong style=\"color:blue\">Title</strong> text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">VerticalTextAlignment</strong>, of type <strong style=\"color:blue\">TextAlignment</strong>, is the vertical alignment of the text displayed by the Picker.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"MAUIMembers\" Type=\"{x:Type x:String}\">\n            <x:String>Mr.Viet</x:String>\n            <x:String>Nhi</x:String>\n            <x:String>Linh</x:String>\n            <x:String>Hung</x:String>\n            <x:String>Hoang</x:String>\n            <x:String>Tan</x:String>\n            <x:String>Dat</x:String>\n            <x:String>Nghia</x:String>\n            <x:String>Chinh</x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"A simple Picker for selecting MAUIsland members\" />\n                                <Picker\n                                    x:Name=\"picker\"\n                                    Title=\"Select a MAUIsland members\"\n                                    ItemsSource=\"{x:StaticResource MAUIMembers}\"\n                                    SelectedIndex=\"3\" />\n                                <Button\n                                    BackgroundColor=\"Black\"\n                                    HorizontalOptions=\"Start\"\n                                    Text=\"{x:Binding Source={x:Reference picker},\n                                                     Path=SelectedItem}\"\n                                    TextColor=\"{x:StaticResource White}\" />\n\n                                <core:SourceCodeExpander Code=\"{x:Binding MemberPickerXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Picker/PickerPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class PickerPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly PickerPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public PickerPage(PickerPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/ProgressBar/ProgressBarPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ProgressBarPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Progress Bar\"\n    Padding=\"20\"\n    x:DataType=\"core:ProgressBarPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n    <core:BasePage.Resources>\n        <core:ProgressBarPercentageConverter x:Key=\"ProgressBarPercentageConverter\" />\n\n        <x:String x:Key=\"introduce\">\n            The .NET Multi-platform App UI (.NET MAUI) ProgressBar indicates to users that the app is progressing through a lengthy activity. The progress bar is a horizontal bar that is filled to a percentage represented by a double value.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            ProgressBar defines two properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[    <strong style=\"color:blue\">Progress</strong> is a <strong style=\"color:blue\">double</strong> value that represents the current progress as a value from 0 to 1. <strong style=\"color:blue\">Progress</strong> values less than 0 will be clamped to 0, values greater than 1 will be clamped to 1. The default value of this property is 0. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ProgressColor</strong> is a <strong style=\"color:blue\">Color</strong> values that defines the color of the ProgressBar.  ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"AnimatedProgressBar\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ProgressTo</strong> method animates the <strong style=\"color:blue\">ProgressBar</strong> from its current <strong style=\"color:blue\">Progress</strong> value to a provided value over time. The method accepts a <strong style=\"color:blue\">double</strong> progress value, a <strong style=\"color:blue\">uint</strong> duration in milliseconds, an <strong style=\"color:blue\">Easing</strong> enum value and returns a <strong style=\"color:blue\">Task</strong>. The following example demonstrates how to animate a <strong style=\"color:blue\">ProgressBar</strong>: ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"10\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource introduce}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontSize=\"Medium\"\n                                    HorizontalOptions=\"Start\"\n                                    Text=\"Basic Progress Bar\"\n                                    VerticalOptions=\"Center\" />\n                                <BoxView\n                                    Background=\"White\"\n                                    HeightRequest=\"1\"\n                                    VerticalOptions=\"End\" />\n                                <Grid ColumnDefinitions=\"0.25*, 0.75*\" RowDefinitions=\"auto, auto, auto\">\n                                    <Label\n                                        Grid.Row=\"0\"\n                                        Grid.Column=\"0\"\n                                        Text=\"This ProgressBar prepersent 0%\" />\n                                    <ProgressBar\n                                        Grid.Row=\"0\"\n                                        Grid.Column=\"1\"\n                                        Progress=\"0\" />\n                                    <Label\n                                        Grid.Row=\"1\"\n                                        Grid.Column=\"0\"\n                                        Text=\"This ProgressBar prepersent 50%\" />\n                                    <ProgressBar\n                                        Grid.Row=\"1\"\n                                        Grid.Column=\"1\"\n                                        Progress=\"0.5\" />\n                                    <Label\n                                        Grid.Row=\"2\"\n                                        Grid.Column=\"0\"\n                                        Text=\"This ProgressBar prepersent 100%\" />\n                                    <ProgressBar\n                                        Grid.Row=\"2\"\n                                        Grid.Column=\"1\"\n                                        Progress=\"1\" />\n                                </Grid>\n\n                                <Label Text=\"This is xaml code for the ProgressBar\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlStandardProgressBar}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontSize=\"Medium\"\n                                    HorizontalOptions=\"Start\"\n                                    Text=\"Progress Bar with Color Changing\"\n                                    VerticalOptions=\"Center\" />\n                                <BoxView\n                                    Background=\"White\"\n                                    HeightRequest=\"1\"\n                                    VerticalOptions=\"End\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    Header=\"{x:StaticResource PropertiesListHeader}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n\n                                <Frame\n                                    Padding=\"5\"\n                                    BackgroundColor=\"#313131\"\n                                    BorderColor=\"#313131\">\n                                    <Grid ColumnDefinitions=\"0.1*, 0.6*, 0.1*, 0.2*\">\n                                        <Label\n                                            Grid.Column=\"0\"\n                                            HorizontalOptions=\"Center\"\n                                            Text=\"0%\"\n                                            VerticalOptions=\"Center\" />\n                                        <ProgressBar\n                                            x:Name=\"ProgressBar1\"\n                                            Grid.Column=\"1\"\n                                            Progress=\"0\" />\n                                        <Label\n                                            x:Name=\"ProgressLabel\"\n                                            Grid.Column=\"2\"\n                                            HorizontalOptions=\"Center\"\n                                            Text=\"0%\"\n                                            VerticalOptions=\"Center\" />\n                                        <Button\n                                            x:Name=\"ProgressBarLoadButton\"\n                                            Grid.Column=\"3\"\n                                            Clicked=\"ProgressBarLoadButtonClicked\"\n                                            Text=\"Load\" />\n                                    </Grid>\n                                </Frame>\n\n                                <Label Text=\"This is xaml for the design\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlColorProgressBar}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is code behind\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpCcolorProgressBarCodeBehind}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontSize=\"Medium\"\n                                    HorizontalOptions=\"Start\"\n                                    Text=\"ProgressBar with Progress Animated\"\n                                    VerticalOptions=\"Center\" />\n                                <BoxView\n                                    Background=\"White\"\n                                    HeightRequest=\"1\"\n                                    VerticalOptions=\"End\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource AnimatedProgressBar}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Frame\n                                    Padding=\"5\"\n                                    BackgroundColor=\"#313131\"\n                                    BorderColor=\"#313131\">\n                                    <Grid ColumnDefinitions=\"0.1*, 0.6*, 0.1*, 0.2*\">\n                                        <Label\n                                            Grid.Column=\"0\"\n                                            HorizontalOptions=\"Center\"\n                                            Text=\"{Binding Path=Progress, Source={x:Reference ProgressBar2}, Converter={x:StaticResource ProgressBarPercentageConverter}, ConverterParameter={x:Type x:String}}\"\n                                            VerticalOptions=\"Center\" />\n                                        <ProgressBar\n                                            x:Name=\"ProgressBar2\"\n                                            Grid.Column=\"1\"\n                                            Margin=\"10\"\n                                            Progress=\"0\"\n                                            ProgressColor=\"Red\" />\n                                        <Label\n                                            Grid.Column=\"2\"\n                                            HorizontalOptions=\"Center\"\n                                            Text=\"100%\"\n                                            VerticalOptions=\"Center\" />\n                                        <Button\n                                            x:Name=\"ProgressBarRunButton\"\n                                            Grid.Column=\"3\"\n                                            Clicked=\"ProgressBarRunButtonClicked\"\n                                            Text=\"Run\" />\n                                    </Grid>\n                                </Frame>\n\n                                <Label Text=\"This is xaml code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlAnimateProgressBar}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is the code behind\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpAnimateProgressBarCodeBehind}\" CodeType=\"CSharp\" />\n                                <Label Text=\"This is the converter\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpAnimateProgressBarConverter}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/ProgressBar/ProgressBarPage.xaml.cs",
    "content": "namespace MAUIsland;\n\n\npublic partial class ProgressBarPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly ProgressBarPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public ProgressBarPage(ProgressBarPageViewModel vm)\n    {\n        InitializeComponent();\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    private double progress;\n    public double Progress\n    {\n        get { return progress; }\n        set { progress = value; }\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    private async void ProgressBarLoadButtonClicked(object sender, EventArgs e)\n    {\n        Progress = 0;\n\n        while (Progress < 1)\n        {\n            if (Progress == 0)\n            {\n                ProgressBar1.ProgressColor = Colors.Red;\n            }\n            Progress += 0.01;\n            await Task.Delay(1);\n            var progressIntValue = Progress * 100;\n            ProgressLabel.Text = $\"{progressIntValue:N1}%\";\n            switch ((int)progressIntValue)\n            {\n                case 30:\n                    ProgressBar1.ProgressColor = Colors.OrangeRed;\n                    break;\n                case 50:\n                    ProgressBar1.ProgressColor = Colors.Orange;\n                    break;\n                case 80:\n                    ProgressBar1.ProgressColor = Colors.Yellow;\n                    break;\n                case 90:\n                    ProgressBar1.ProgressColor = Colors.YellowGreen;\n                    break;\n                case 100:\n                    ProgressBar1.ProgressColor = Colors.Green;\n                    break;\n            }\n            ProgressBar1.Progress = Progress;\n        }\n    }\n\n    private async void ProgressBarRunButtonClicked(object sender, EventArgs e)\n    {\n        ProgressBar2.Progress = 0;\n        ProgressBarRunButton.IsEnabled = false;\n        await ProgressBar2.ProgressTo(0.999, 5000, Easing.BounceIn);\n        ProgressBarRunButton.IsEnabled = true;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/RadioButton/RadioButtonPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.RadioButtonPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Radio Button\"\n    Padding=\"20\"\n    x:DataType=\"core:RadioButtonPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) RadioButton is a type of button that allows users to select one option from a set. Each option is represented by one radio button, and you can only select one radio button in a group.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:Array x:Key=\"RadioButtonExplanation\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   In <strong style=\"color:blue\">.NET MAUI</strong>, when you place <strong style=\"color:blue\">RadioButton</strong> controls inside a layout (like <strong style=\"color:blue\">HorizontalStackLayout</strong>), they automatically behave as a group, even without explicitly setting the <strong style=\"color:blue\">GroupName</strong> property. This is why your first example works as expected.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   When you place <strong style=\"color:blue\">RadioButton</strong> controls inside a layout, they are aware of each other because they share the same parent in the visual tree. So, when one <strong style=\"color:blue\">RadioButton</strong> is selected, the others are automatically deselected, ensuring that only one <strong style=\"color:blue\">RadioButton</strong> in the layout can be selected at a time.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            RadioButton defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Content</strong>, of type <strong style=\"color:blue\">object</strong>, which defines the <strong style=\"color:blue\">string</strong> or View to be displayed by the RadioButton.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">IsChecked</strong>, of type <strong style=\"color:blue\">bool</strong>, which defines whether the RadioButton is checked. This property uses a <strong style=\"color:blue\">TwoWay</strong> binding, and has a default value of <strong style=\"color:blue\">false</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">GroupName</strong>, of type <strong style=\"color:blue\">string</strong>, which defines the name that specifies which RadioButton controls are mutually exclusive. This property has a default value of <strong style=\"color:blue\">null</strong>.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Value</strong>, of type <strong style=\"color:blue\">object</strong>, which defines an optional unique value associated with the RadioButton.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">BorderColor</strong>, of type <strong style=\"color:blue\">Color</strong>, which defines the border stroke color.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">BorderWidth</strong>, of type <strong style=\"color:blue\">double</strong>, which defines the width of the RadioButton border. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CharacterSpacing</strong>, of type <strong style=\"color:blue\">double</strong>, which defines the spacing between characters of any displayed text.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CornerRadius</strong>, of type <strong style=\"color:blue\">int</strong>, which defines the corner radius of the RadioButton.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FontAttributes</strong>, of type <strong style=\"color:blue\">FontAttributes</strong>, which determines text style.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FontAutoScalingEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, which defines whether an app's UI reflects text scaling preferences set in the operating system. The default value of this property is <strong style=\"color:blue\">true</strong>.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FontFamily</strong>, of type <strong style=\"color:blue\">string</strong>, which defines the font family.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">double</strong>, which defines the font size.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, which defines the color of any displayed text.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">TextTransform</strong>, of type <strong style=\"color:blue\">TextTransform</strong>, which defines the casing of any displayed text.   ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n        <FontImageSource\n            x:Key=\"Happy\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_emoji_28_regular}\"\n            Size=\"60\"\n            Color=\"Black\" />\n        <FontImageSource\n            x:Key=\"Normal\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_emoji_smile_slight_24_regular}\"\n            Size=\"60\"\n            Color=\"Black\" />\n        <FontImageSource\n            x:Key=\"Sad\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_emoji_sad_24_regular}\"\n            Size=\"60\"\n            Color=\"Black\" />\n\n        <Style x:Key=\"RadioButtonStyle\" TargetType=\"RadioButton\">\n            <Setter Property=\"VisualStateManager.VisualStateGroups\">\n                <VisualStateGroupList>\n                    <VisualStateGroup x:Name=\"CheckedStates\">\n                        <VisualState x:Name=\"Checked\">\n                            <VisualState.Setters>\n                                <Setter Property=\"TextColor\" Value=\"Green\" />\n                                <Setter Property=\"Opacity\" Value=\"1\" />\n                            </VisualState.Setters>\n                        </VisualState>\n                        <VisualState x:Name=\"Unchecked\">\n                            <VisualState.Setters>\n                                <Setter Property=\"TextColor\" Value=\"OrangeRed\" />\n                                <Setter Property=\"Opacity\" Value=\"0.5\" />\n                            </VisualState.Setters>\n                        </VisualState>\n                    </VisualStateGroup>\n                </VisualStateGroupList>\n            </Setter>\n        </Style>\n\n        <ControlTemplate x:Key=\"RadioButtonTemplate\">\n            <Border\n                Padding=\"5\"\n                BackgroundColor=\"#F3F2F1\"\n                HorizontalOptions=\"FillAndExpand\"\n                Stroke=\"#F3F2F1\"\n                StrokeShape=\"RoundRectangle 10\"\n                StrokeThickness=\"2\"\n                VerticalOptions=\"FillAndExpand\">\n                <Grid HorizontalOptions=\"CenterAndExpand\" VerticalOptions=\"CenterAndExpand\">\n                    <Grid\n                        HeightRequest=\"20\"\n                        HorizontalOptions=\"End\"\n                        VerticalOptions=\"End\"\n                        WidthRequest=\"20\">\n                        <Ellipse\n                            x:Name=\"Outcheck\"\n                            Fill=\"#53e6a1\"\n                            HeightRequest=\"20\"\n                            HorizontalOptions=\"Center\"\n                            Stroke=\"white\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"20\" />\n                        <Ellipse\n                            x:Name=\"Check\"\n                            Fill=\"Black\"\n                            HeightRequest=\"10\"\n                            HorizontalOptions=\"Center\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                    </Grid>\n                    <ContentPresenter />\n                </Grid>\n                <VisualStateManager.VisualStateGroups>\n                    <VisualStateGroupList>\n                        <VisualStateGroup x:Name=\"CheckedStates\">\n                            <VisualState x:Name=\"Checked\">\n                                <VisualState.Setters>\n                                    <Setter Property=\"Stroke\" Value=\"#ffffff\" />\n                                    <Setter TargetName=\"Check\" Property=\"Opacity\" Value=\"1\" />\n                                    <Setter TargetName=\"Outcheck\" Property=\"Opacity\" Value=\"1\" />\n                                </VisualState.Setters>\n                            </VisualState>\n                            <VisualState x:Name=\"Unchecked\">\n                                <VisualState.Setters>\n                                    <Setter Property=\"Stroke\" Value=\"Transparent\" />\n                                    <Setter TargetName=\"Check\" Property=\"Opacity\" Value=\"0\" />\n                                    <Setter TargetName=\"Outcheck\" Property=\"Opacity\" Value=\"0\" />\n                                </VisualState.Setters>\n                            </VisualState>\n                        </VisualStateGroup>\n                    </VisualStateGroupList>\n                </VisualStateManager.VisualStateGroups>\n            </Border>\n        </ControlTemplate>\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Padding=\"10\" Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Basic radio button\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource RadioButtonExplanation}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <VerticalStackLayout Spacing=\"5\">\n                                    <Label Text=\"What's your favorite pet?\" />\n                                    <!--  Without GroupName  -->\n                                    <HorizontalStackLayout>\n                                        <RadioButton Content=\"Cat\" IsChecked=\"True\" />\n                                        <RadioButton Content=\"Dog\" />\n                                        <RadioButton Content=\"Fish\" />\n                                        <RadioButton Content=\"Bird\" />\n                                    </HorizontalStackLayout>\n                                    <Label Text=\"What's your favorite mode of transport?\" />\n                                    <!--  With GroupName  -->\n                                    <HorizontalStackLayout>\n                                        <RadioButton\n                                            Content=\"Car\"\n                                            GroupName=\"Transport\"\n                                            IsChecked=\"True\" />\n                                        <RadioButton Content=\"Bike\" GroupName=\"Transport\" />\n                                        <RadioButton Content=\"Motocrycle\" GroupName=\"Transport\" />\n                                    </HorizontalStackLayout>\n                                    <HorizontalStackLayout>\n                                        <RadioButton Content=\"Bus\" GroupName=\"Transport\" />\n                                        <RadioButton Content=\"Train\" GroupName=\"Transport\" />\n                                        <RadioButton Content=\"Walking\" GroupName=\"Transport\" />\n                                    </HorizontalStackLayout>\n                                    <Label Text=\"What's your favorite type of music?\" />\n                                    <!--  With GroupName in parent  -->\n                                    <HorizontalStackLayout RadioButtonGroup.GroupName=\"Transport\">\n                                        <RadioButton Content=\"Rock\" IsChecked=\"True\" />\n                                        <RadioButton Content=\"Pop\" />\n                                        <RadioButton Content=\"Jazz\" />\n                                    </HorizontalStackLayout>\n                                    <HorizontalStackLayout RadioButtonGroup.GroupName=\"Transport\">\n                                        <RadioButton Content=\"Classical\" />\n                                        <RadioButton Content=\"Country\" />\n                                        <RadioButton Content=\"Hip Hop\" />\n                                    </HorizontalStackLayout>\n                                </VerticalStackLayout>\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Padding=\"10\">\n                                <Label Text=\"This is example code:\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding StandardRadioButtonXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Padding=\"10\" Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Image radio button\" />\n                                <VerticalStackLayout>\n                                    <RadioButton\n                                        BackgroundColor=\"White\"\n                                        CornerRadius=\"5\"\n                                        IsChecked=\"True\">\n                                        <RadioButton.Content>\n                                            <ContentView Padding=\"5,0,5,0\">\n                                                <Image Source=\"{x:StaticResource Happy}\" WidthRequest=\"30\" />\n                                            </ContentView>\n                                        </RadioButton.Content>\n                                    </RadioButton>\n                                    <RadioButton BackgroundColor=\"White\" CornerRadius=\"5\">\n                                        <RadioButton.Content>\n                                            <ContentView Padding=\"5,0,5,0\">\n                                                <Image Source=\"{x:StaticResource Normal}\" WidthRequest=\"30\" />\n                                            </ContentView>\n                                        </RadioButton.Content>\n                                    </RadioButton>\n                                    <RadioButton BackgroundColor=\"White\" CornerRadius=\"5\">\n                                        <RadioButton.Content>\n                                            <ContentView Padding=\"5,0,5,0\">\n                                                <Image Source=\"{x:StaticResource Sad}\" WidthRequest=\"30\" />\n                                            </ContentView>\n                                        </RadioButton.Content>\n                                    </RadioButton>\n                                </VerticalStackLayout>\n                                <Label Text=\"This is how you can setup your resource: \" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlImageRadioButtonStaticResource}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is the Xaml code: \" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlImageRadioButton}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Padding=\"10\" Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Respond to RadioButton state changes\" />\n                                <Label Text=\"What's your favorite mode of transport?\" />\n                                <HorizontalStackLayout RadioButtonGroup.GroupName=\"{x:Binding TransportGroupName}\" RadioButtonGroup.SelectedValue=\"{x:Binding SelectedTransportItem}\">\n                                    <RadioButton\n                                        Content=\"Car\"\n                                        GroupName=\"{x:Binding TransportGroupName}\"\n                                        IsChecked=\"True\"\n                                        Value=\"Car\" />\n                                    <RadioButton\n                                        Content=\"Bike\"\n                                        GroupName=\"{x:Binding TransportGroupName}\"\n                                        Value=\"Bike\" />\n                                    <RadioButton\n                                        Content=\"Train\"\n                                        GroupName=\"{x:Binding TransportGroupName}\"\n                                        Value=\"Train\" />\n                                    <RadioButton\n                                        Content=\"Walking\"\n                                        GroupName=\"{x:Binding TransportGroupName}\"\n                                        Value=\"Walking\" />\n                                </HorizontalStackLayout>\n                                <Label x:Name=\"Label\">\n                                    <Label.FormattedText>\n                                        <FormattedString>\n                                            <Span Text=\"You have chosen: \" />\n                                            <Span Text=\"{x:Binding SelectedTransportItem}\" />\n                                        </FormattedString>\n                                    </Label.FormattedText>\n                                </Label>\n                                <Label Text=\"This is ViewModel source code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpRadioButtonState}\" CodeType=\"CSharp\" />\n                                <Label Text=\"This is xaml source code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlRadioButtonState}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Padding=\"10\" Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"RadioButton visual states\" />\n                                <Label Text=\"What's your favorite mode of transport?\" />\n                                <HorizontalStackLayout>\n                                    <RadioButton\n                                        Content=\"Car\"\n                                        IsChecked=\"True\"\n                                        Style=\"{x:StaticResource RadioButtonStyle}\" />\n                                    <RadioButton Content=\"Bike\" Style=\"{x:StaticResource RadioButtonStyle}\" />\n                                    <RadioButton Content=\"Train\" Style=\"{x:StaticResource RadioButtonStyle}\" />\n                                    <RadioButton Content=\"Walking\" Style=\"{x:StaticResource RadioButtonStyle}\" />\n                                </HorizontalStackLayout>\n                                <Label Text=\"This is the RadioButton style\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlRadioButtonVisualStateStyle}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is xaml source code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlRadioButtonVisualStates}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Padding=\"10\" Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Text and Image radio button with custom template\" />\n                                <HorizontalStackLayout\n                                    x:Name=\"EmotionalRadioButtonGroupWithCustomTemplate\"\n                                    RadioButtonGroup.GroupName=\"Emotional\"\n                                    Spacing=\"20\">\n                                    <RadioButton ControlTemplate=\"{x:StaticResource RadioButtonTemplate}\" IsChecked=\"True\">\n                                        <RadioButton.Content>\n                                            <VerticalStackLayout>\n                                                <Image Source=\"{x:StaticResource Happy}\" />\n                                                <Label Text=\"Happy\" TextColor=\"Black\" />\n                                            </VerticalStackLayout>\n                                        </RadioButton.Content>\n                                    </RadioButton>\n                                    <RadioButton ControlTemplate=\"{x:StaticResource RadioButtonTemplate}\">\n                                        <RadioButton.Content>\n                                            <VerticalStackLayout>\n                                                <Image Source=\"{x:StaticResource Normal}\" />\n                                                <Label Text=\"Normal\" TextColor=\"Black\" />\n                                            </VerticalStackLayout>\n                                        </RadioButton.Content>\n                                    </RadioButton>\n                                    <RadioButton ControlTemplate=\"{x:StaticResource RadioButtonTemplate}\">\n                                        <RadioButton.Content>\n                                            <VerticalStackLayout>\n                                                <Image Source=\"{x:StaticResource Sad}\" />\n                                                <Label Text=\"Sad\" TextColor=\"Black\" />\n                                            </VerticalStackLayout>\n                                        </RadioButton.Content>\n                                    </RadioButton>\n                                </HorizontalStackLayout>\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Padding=\"10\" Spacing=\"10\">\n                                <Label Text=\"This is the xaml code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlCustomRadioButton}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is the Resource for the image\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlImageRadioButtonStaticResource}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is the custom ControlTemplate\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlCustomRadioButtonControlTemplate}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/RadioButton/RadioButtonPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class RadioButtonPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly RadioButtonPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public RadioButtonPage(RadioButtonPageViewModel vm)\n    {\n        InitializeComponent();\n        BindingContext = viewModel = vm;\n    }\n\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/RefreshView/RefreshViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.RefreshViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:skia=\"clr-namespace:SkiaSharp.Extended.UI.Controls;assembly=SkiaSharp.Extended.UI\"\n    Title=\"Refresh View\"\n    Padding=\"20\"\n    x:DataType=\"core:RefreshViewPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n    <core:BasePage.Resources>\n\n        <core:StringToColorConverter x:Key=\"StringToColorConverter\" />\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) RefreshView is a container control that provides pull to refresh functionality for scrollable content. Therefore, the child of a RefreshView must be a scrollable control, such as ScrollView, CollectionView, or ListView.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            RefreshView defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"RefreshViewPageColorResource\" Type=\"{x:Type x:String}\">\n            <x:String>Red</x:String>\n            <x:String>Blue</x:String>\n            <x:String>Green</x:String>\n            <x:String>White</x:String>\n            <x:String>Black</x:String>\n            <x:String>Cyan</x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Command</strong>, of type <strong style=\"color:blue\">ICommand</strong>, which is executed when a refresh is triggered.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CommandParameter</strong>, of type <strong style=\"color:blue\">object</strong>, which is the parameter that's passed to the Command.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IsRefreshing</strong>, of type <strong style=\"color:blue\">bool</strong>, which indicates the current state of the RefreshView.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">RefreshColor</strong>, of type <strong style=\"color:blue\">Color</strong>, the color of the progress circle that appears during the refresh.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n        <DataTemplate x:Key=\"DemoItemTemplate\" x:DataType=\"core:DemoItem\">\n            <VerticalStackLayout>\n                <Label Text=\"{x:Binding name}\" />\n                <Label Text=\"{x:Binding time}\" />\n            </VerticalStackLayout>\n        </DataTemplate>\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshPageCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Swipe to add more items\" />\n                                <Grid ColumnDefinitions=\"*, *,*\">\n                                    <RefreshView\n                                        Command=\"{Binding RefreshCommand}\"\n                                        HorizontalOptions=\"Start\"\n                                        IsRefreshing=\"{x:Binding IsBusy}\"\n                                        MaximumWidthRequest=\"300\"\n                                        RefreshColor=\"{x:Binding Source={x:Reference RefreshViewRefreshColorPicker},\n                                                                 Path=SelectedItem,\n                                                                 Converter={x:StaticResource StringToColorConverter}}\">\n                                        <CollectionView ItemTemplate=\"{x:StaticResource DemoItemTemplate}\" ItemsSource=\"{x:Binding Items}\" />\n                                    </RefreshView>\n                                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"10\">\n                                        <Label\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Requirements for laptops and PC\"\n                                            TextDecorations=\"Underline\" />\n                                        <Label\n                                            Padding=\"10\"\n                                            BackgroundColor=\"Green\"\n                                            HorizontalOptions=\"Start\"\n                                            Text=\"This work on laptop or 3rd parties touchpad devices THAT SUPPORT PRECISION TOUCH from Windows 10 and 11\"\n                                            TextColor=\"White\" />\n                                        <Label\n                                            Padding=\"10\"\n                                            BackgroundColor=\"Green\"\n                                            HorizontalOptions=\"Start\"\n                                            Text=\"This will work on Macbooks that no hardware requirements needed\"\n                                            TextColor=\"White\" />\n                                        <Label\n                                            Padding=\"10\"\n                                            BackgroundColor=\"Red\"\n                                            HorizontalOptions=\"Start\"\n                                            Text=\"You can't perform swipe using a mouse\"\n                                            TextColor=\"White\" />\n                                        <Label\n                                            Padding=\"10\"\n                                            BackgroundColor=\"Red\"\n                                            HorizontalOptions=\"Start\"\n                                            Text=\"Laptop that does not support precision touchpad from Windows 10 or 11\"\n                                            TextColor=\"White\" />\n                                    </VerticalStackLayout>\n                                    <skia:SKLottieView\n                                        Grid.Column=\"2\"\n                                        HeightRequest=\"500\"\n                                        HorizontalOptions=\"Center\"\n                                        RepeatCount=\"-1\"\n                                        RepeatMode=\"Restart\"\n                                        Source=\"swipeupordown.json\"\n                                        WidthRequest=\"500\" />\n                                </Grid>\n                                <Picker\n                                    x:Name=\"RefreshViewRefreshColorPicker\"\n                                    Title=\"Choose color and then perform refresh again\"\n                                    ItemsSource=\"{x:StaticResource RefreshViewPageColorResource}\"\n                                    SelectedIndex=\"0\"\n                                    VerticalOptions=\"Center\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding RefreshViewXamlCode}\" CodeType=\"Xaml\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding RefreshCommandCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/RefreshView/RefreshViewPage.xaml.cs",
    "content": "namespace MAUIsland;\n\n\npublic partial class RefreshViewPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly RefreshViewPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public RefreshViewPage(RefreshViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/SearchBar/SearchBarPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SearchBarPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Search Bar\"\n    Padding=\"20\"\n    x:DataType=\"core:SearchBarPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.Resources>\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) SearchBar is a user input control used to initiating a search. The SearchBar control supports placeholder text, query input, search execution, and cancellation. The following iOS screenshot shows a SearchBar query with results displayed in a ListView:\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesSearchEventHandlerHeader\">\n            A search can be executed using the SearchBar control by attaching an event handler to one of the following events:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesSearchViewModelHeader\">\n            A search can be executed without event handlers by binding the SearchCommand property to an ICommand implementation:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            SearchBar defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesSearchEventHandlerFooter\">\n            The following example shows an event handler attached to the TextChanged event and uses a ListView to display search results:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesSearchViewModelFooter\">\n            The following example shows an command binding to the search command and uses a ListView to display search results:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CancelButtonColor</strong> is a <strong style=\"color:blue\">Color</strong> that defines the color of the cancel button.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CharacterSpacing</strong> is a <strong style=\"color:blue\">Color</strong> that's the spacing between characters of the SearchBar text.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CursorPosition</strong> is a <strong style=\"color:blue\">int</strong> that determines the position at which the next character will be inserted into the string stored in the <strong style=\"color:blue\">Text</strong> property.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAttributes</strong> is a <strong style=\"color:blue\">FontAttributes</strong> enum value that determines whether the SearchBar font is bold, italic, or neither.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAutoScalingEnabled</strong> is a <strong style=\"color:blue\">bool</strong> which defines whether an app's UI reflects text scaling preferences set in the operating system.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontFamily</strong> is a <strong style=\"color:blue\">string</strong> that determines the font family used by the SearchBar.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontSize</strong> is a <strong style=\"color:blue\">double</strong> value that represents specific font sizes across platforms.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">HorizontalTextAlignment</strong> is a <strong style=\"color:blue\">TextAlignment</strong> enum value that defines the horizontal alignment of the query text.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IsTextPredictionEnabled</strong> is a <strong style=\"color:blue\">bool</strong> that determines whether text prediction and automatic text correction is enabled.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Placeholder</strong> is a <strong style=\"color:blue\">string</strong> that defines the placeholder text, such as \"Search...\".\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">PlaceholderColor</strong> is a <strong style=\"color:blue\">Color</strong> that defines the color of the placeholder text.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SearchCommand</strong> is an <strong style=\"color:blue\">ICommand</strong> that allows binding user actions, such as finger taps or clicks, to commands defined on a viewmodel.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SearchCommandParameter</strong> is an <strong style=\"color:blue\">object</strong> that specifies the parameter that should be passed to the <strong style=\"color:blue\">SearchCommand</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SelectionLength</strong> is an <strong style=\"color:blue\">int</strong> that can be used to return or set the length of text selection within the SearchBar.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Text</strong> is a <strong style=\"color:blue\">string</strong> containing the query text in the SearchBar.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextColor</strong> is a <strong style=\"color:blue\">Color</strong> that defines the query text color.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">VerticalTextAlignment</strong> is a <strong style=\"color:blue\">TextAlignment</strong> enum value that defines the vertical alignment of the query text.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertyEventHandlersItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SearchButtonPressed</strong>, which is called when the user either clicks the search button or presses the enter key.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextChanged</strong>, which is called anytime the text in the query box is changed. This event is inherited from the <strong style=\"color:blue\">InputView</strong> class.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertyViewModelItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                The following example shows a viewmodel class that contains an <strong style=\"color:blue\">ICommand</strong> property named <strong style=\"color:blue\">SearchCommand</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                In this case the <strong style=\"color:blue\">RelayCommand</strong> attribute help to generate the <strong style=\"color:blue\">ICommand</strong> property named <strong style=\"color:blue\">SearchCommand</strong> from <strong style=\"color:blue\">SearchAsync</strong> method.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n    </core:BasePage.Resources>\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <CollectionView\n                                Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                Header=\"{x:StaticResource PropertiesListHeader}\"\n                                ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        </Border>\n\n                        <!--  Create a SearchBar  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Create a SearchBar\" />\n                                <Label Text=\"The following XAML example shows how to create a SearchBar:\" />\n                                <SearchBar Placeholder=\"Search items...\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding StandardSearchBarXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <!--  Perform a search with event handlers  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <ScrollView>\n                                <VerticalStackLayout Spacing=\"20\">\n                                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Perform a search with Event Handlers using TextChanged in SearchBar\" />\n                                    <CollectionView\n                                        Footer=\"{x:StaticResource PropertiesSearchEventHandlerFooter}\"\n                                        Header=\"{x:StaticResource PropertiesSearchEventHandlerHeader}\"\n                                        ItemsSource=\"{x:StaticResource PropertyEventHandlersItemsSource}\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                    <SearchBar\n                                        x:Name=\"EventHandlerSearchBar\"\n                                        Placeholder=\"Search items...\"\n                                        TextChanged=\"OnSearchAsync\" />\n                                    <core:ControlInfoListView ItemsSource=\"{x:Binding ControlGroupListForEventCall}\" />\n                                    <core:SourceCodeExpander Code=\"{x:Binding PerformASearchWithEventHandlersXamlCode}\" CodeType=\"Xaml\" />\n                                    <core:SourceCodeExpander Code=\"{x:Binding PerformASearchWithEventHandlersCSCode}\" CodeType=\"CSharp\" />\n                                </VerticalStackLayout>\n                            </ScrollView>\n                        </Border>\n\n                        <!--  Perform a search using a viewmodel  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <ScrollView>\n                                <VerticalStackLayout Spacing=\"20\">\n                                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Perform a search with ViewModel using SearchCommand in SearchBar\" />\n                                    <CollectionView\n                                        Footer=\"{x:StaticResource PropertiesSearchViewModelFooter}\"\n                                        Header=\"{x:StaticResource PropertiesSearchViewModelHeader}\"\n                                        ItemsSource=\"{x:StaticResource PropertyViewModelItemsSource}\"\n                                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                    <SearchBar\n                                        x:Name=\"ViewModelSearchBar\"\n                                        Placeholder=\"Search items...\"\n                                        Text=\"{x:Binding SearchText}\" />\n                                    <core:ControlInfoListView ItemsSource=\"{x:Binding ControlGroupListForCommandCall}\" />\n                                    <core:SourceCodeExpander Code=\"{x:Binding PerformASearchWithViewModelXamlCode}\" CodeType=\"Xaml\" />\n                                    <core:SourceCodeExpander Code=\"{x:Binding PerformASearchWithViewModelCSCode}\" CodeType=\"CSharp\" />\n                                </VerticalStackLayout>\n                            </ScrollView>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/SearchBar/SearchBarPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class SearchBarPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly IControlsService mauiControlsService;\n    #endregion\n\n    #region[ View Model ]\n    protected SearchBarPageViewModel viewModel { get; set; }\n    #endregion\n\n    #region [ CTor ]\n    public SearchBarPage(SearchBarPageViewModel vm,\n                         IControlsService mauiControlsService)\n    {\n        InitializeComponent();\n\n        this.mauiControlsService = mauiControlsService;\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handler ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    private async void OnSearchAsync(object sender, TextChangedEventArgs args)\n    {\n        viewModel.ControlGroupListForEventCall.Clear();\n\n        var items = await mauiControlsService.GetControlsAsync(viewModel.ControlInformation.GroupName);\n\n        var filtered = items.Where(x => x.ControlName.ToLower().Contains(EventHandlerSearchBar.Text.ToLower(), StringComparison.OrdinalIgnoreCase));\n\n        foreach (var item in filtered)\n        {\n            viewModel.ControlGroupListForEventCall.Add(item);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Slider/SliderPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SliderPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Slider\"\n    Padding=\"20\"\n    x:DataType=\"core:SliderPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n    <core:BasePage.Resources>\n        <core:StringToColorConverter x:Key=\"StringToColorConverter\" />\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) Slider is a horizontal bar that you can manipulate to select a double value from a continuous range.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Slider defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects. The Value property has a default binding mode of BindingMode.TwoWay, which means that it's suitable as a binding source in an application that uses the Model-View-ViewModel (MVVM) pattern.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Minimum</strong>, of type <strong style=\"color:blue\">double</strong>, is the minimum of the range, with a default value of 0.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Maximum</strong>, of type <strong style=\"color:blue\">double</strong>, is the maximum of the range, with a default value of 1.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Value</strong>, of type <strong style=\"color:blue\">double</strong>, is the slider's value, which can range between Minimum and Maximum and has a default value of 0.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">MinimumTrackColor</strong>, of type <strong style=\"color:blue\">Color</strong>, is the bar color on the left side of the thumb.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">MaximumTrackColor</strong>, of type <strong style=\"color:blue\">Color</strong>, is the bar color on the right side of the thumb.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ThumbColor</strong>, of type <strong style=\"color:blue\">Color</strong>, is the thumb color.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ThumbImageSource</strong>, of type <strong style=\"color:blue\">ImageSource</strong>, is the image to use for the thumb, of type ImageSource.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">DragStartedCommand</strong>, of type <strong style=\"color:blue\">ICommand</strong>, which is executed at the beginning of a drag action.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">DragCompletedCommand</strong>, of type <strong style=\"color:blue\">ICommand</strong>, which is executed at the end of a drag action.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"SliderColorResource\" Type=\"{x:Type x:String}\">\n            <x:String>Red</x:String>\n            <x:String>Blue</x:String>\n            <x:String>Green</x:String>\n            <x:String>White</x:String>\n            <x:String>Black</x:String>\n            <x:String>Cyan</x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem IconImageSource=\"github_logo.png\" Text=\"Source code\" />\n        <ToolbarItem IconImageSource=\"microsoft.png\" Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Slider />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout>\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Create a slider\" />\n\n                                <Slider />\n\n                                <core:SourceCodeExpander Code=\"{x:Binding SimpleCreateSliderXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Customize the slider\" />\n\n                                <Label FontSize=\"Subtitle\" Text=\"Change the colors of your slider\" />\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Picker\n                                        x:Name=\"ThumbColorPicker\"\n                                        Title=\"Thumb Color\"\n                                        ItemsSource=\"{x:StaticResource SliderColorResource}\"\n                                        SelectedIndex=\"0\" />\n\n                                    <Picker\n                                        x:Name=\"MinimumTrackColorPicker\"\n                                        Title=\"Minimum Track Color\"\n                                        ItemsSource=\"{x:StaticResource SliderColorResource}\"\n                                        SelectedIndex=\"1\" />\n\n                                    <Picker\n                                        x:Name=\"MaximumTrackColorPicker\"\n                                        Title=\"Maximum Track Color\"\n                                        ItemsSource=\"{x:StaticResource SliderColorResource}\"\n                                        SelectedIndex=\"2\" />\n                                </HorizontalStackLayout>\n\n                                <Slider\n                                    MaximumTrackColor=\"{x:Binding Source={x:Reference MaximumTrackColorPicker},\n                                                                  Path=SelectedItem,\n                                                                  Converter={x:StaticResource StringToColorConverter}}\"\n                                    MinimumTrackColor=\"{x:Binding Source={x:Reference MinimumTrackColorPicker},\n                                                                  Path=SelectedItem,\n                                                                  Converter={x:StaticResource StringToColorConverter}}\"\n                                    ThumbColor=\"{x:Binding Source={x:Reference ThumbColorPicker},\n                                                           Path=SelectedItem,\n                                                           Converter={x:StaticResource StringToColorConverter}}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding SliderWithCustomColorsXamlCode}\" />\n\n                                <Label FontSize=\"Subtitle\" Text=\"You can even change the thumb image\" />\n                                <Slider MinimumTrackColor=\"#6e50db\" ThumbImageSource=\"dotnet_bot.png\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding SliderWithCustomThumbImageXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout>\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"LET'S HAVE A LITTLE FUN!!!!\" />\n                                <Slider\n                                    x:Name=\"HavingFunSlider\"\n                                    DragCompleted=\"HavingFunSlider_DragCompleted\"\n                                    Maximum=\"360\"\n                                    ValueChanged=\"HavingFunSlider_ValueChanged\" />\n                                <Grid\n                                    HeightRequest=\"300\"\n                                    HorizontalOptions=\"Start\"\n                                    VerticalOptions=\"Start\"\n                                    WidthRequest=\"300\">\n                                    <Label\n                                        x:Name=\"RotatingLabel\"\n                                        Text=\"COME ON SLIDE ME !!!!\"\n                                        VerticalTextAlignment=\"Center\" />\n                                </Grid>\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Slider/SliderPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class SliderPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly SliderPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public SliderPage(SliderPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    private void HavingFunSlider_ValueChanged(object sender, ValueChangedEventArgs e)\n    {\n        double value = e.NewValue;\n        RotatingLabel.Rotation = value;\n        RotatingLabel.Text = \"Woohooooooo!!!!\";\n    }\n\n    private void HavingFunSlider_DragCompleted(object sender, EventArgs e)\n    {\n        RotatingLabel.Text = \"COME ON SLIDE ME !!!\";\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Stepper/StepperPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.StepperPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Stepper\"\n    Padding=\"20\"\n    x:DataType=\"core:StepperPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.Resources>\n        <core:AgeToMemeImageConverter x:Key=\"AgeToMrIncreadibleMemeImageConverter\" />\n        <core:AgeToMemeTitleConverter x:Key=\"AgeToMrIncreadibleMemeTitleConverter\" />\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) Stepper enables a numeric value to be selected from a range of values. It consists of two buttons labeled with minus and plus signs. These buttons can be manipulated by the user to incrementally select a double value from a range of values.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader1\">\n            The Stepper defines four properties of type double:P\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader2\">\n            The following example shows how to create a Stepper, with two Label objects:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader3\">\n            The ValueChanged event handler can be eliminated by using data binding to respond to the Stepper value changing:\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Increment</strong> is the amount to change the selected value by, with a default value of 1.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Minimum</strong> is the minimum of the range, with a default value of 0.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Maximum</strong> is the maximum of the range, with a default value of 100.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Value</strong> is the stepper's value, which can range between <strong style=\"color:blue\">Minimum</strong> and <strong style=\"color:blue\">Maximum</strong> and has a default value of 0.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n    </core:BasePage.Resources>\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ControlInfo}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <CollectionView\n                                    Header=\"{x:StaticResource PropertiesListHeader1}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label\n                                    FontSize=\"Default\"\n                                    HorizontalTextAlignment=\"Start\"\n                                    Text=\"Stepper defines a ValueChanged event that's raised when the Value changes, either through user manipulation of the Stepper or when the application sets the Value property directly. A ValueChanged event is also raised when the Value property is coerced as previously described. The ValueChangedEventArgs object that accompanies the ValueChanged event has OldValue and NewValue, of type double. At the time the event is raised, the value of NewValue is the same as the Value property of the Stepper object.\"\n                                    VerticalTextAlignment=\"Start\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"What types of women do you like?\" />\n                                <Label Text=\"{x:Binding Source={x:Reference AgeStepper}, Path=Value, Mode=OneWay, Converter={x:StaticResource AgeToMrIncreadibleMemeTitleConverter}}\" />\n                                <HorizontalStackLayout Spacing=\"5\">\n                                    <VerticalStackLayout Spacing=\"5\">\n                                        <Label>\n                                            <Label.FormattedText>\n                                                <FormattedString>\n                                                    <Span Text=\"{x:Binding Source={x:Reference AgeStepper}, Path=Value}\" />\n                                                    <Span Text=\" Age\" />\n                                                </FormattedString>\n                                            </Label.FormattedText>\n                                        </Label>\n                                        <Stepper\n                                            x:Name=\"AgeStepper\"\n                                            BackgroundColor=\"Black\"\n                                            Maximum=\"23\"\n                                            Minimum=\"10\"\n                                            Value=\"18\" />\n                                    </VerticalStackLayout>\n\n                                    <Image\n                                        x:Name=\"MrIncreadibleImage\"\n                                        HeightRequest=\"100\"\n                                        Source=\"{x:Binding Source={x:Reference AgeStepper},\n                                                           Path=Value,\n                                                           Mode=OneWay,\n                                                           Converter={x:StaticResource AgeToMrIncreadibleMemeImageConverter}}\"\n                                        WidthRequest=\"100\" />\n                                </HorizontalStackLayout>\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Create a Stepper  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Create a Stepper\" />\n                                <CollectionView Header=\"{x:StaticResource PropertiesListHeader2}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <StackLayout Margin=\"20\">\n                                    <Label\n                                        x:Name=\"RotatingLabel\"\n                                        FontSize=\"18\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"ROTATING TEXT\"\n                                        VerticalOptions=\"Center\" />\n                                    <Stepper\n                                        HorizontalOptions=\"Center\"\n                                        Increment=\"30\"\n                                        Maximum=\"360\"\n                                        ValueChanged=\"OnStepperValueChanged\" />\n                                    <Label\n                                        x:Name=\"DisplayLabel\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"(uninitialized)\"\n                                        VerticalOptions=\"Center\" />\n                                </StackLayout>\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"Here is the Xaml Code for the Stepper and 2 Labels\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlStandardStepper}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is the code behind for the OnStepperValueChanged\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CsharpStandardStepper}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <!--  Data bind a Stepper  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Data bind a Stepper\" />\n                                <CollectionView Header=\"{x:StaticResource PropertiesListHeader3}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <StackLayout Margin=\"20\">\n                                    <Label\n                                        FontSize=\"18\"\n                                        HorizontalOptions=\"Center\"\n                                        Rotation=\"{Binding Source={x:Reference MyStepper}, Path=Value}\"\n                                        Text=\"ROTATING TEXT\"\n                                        VerticalOptions=\"Center\" />\n                                    <Stepper\n                                        x:Name=\"MyStepper\"\n                                        HorizontalOptions=\"Center\"\n                                        Increment=\"30\"\n                                        Maximum=\"360\" />\n                                    <Label\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{Binding Source={x:Reference MyStepper}, Path=Value, StringFormat='The Stepper value is {0:F0}'}\"\n                                        VerticalOptions=\"Center\" />\n                                </StackLayout>\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"Here is how it should look like\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlDataBindAStepper}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Stepper/StepperPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class StepperPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly StepperPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public StepperPage(StepperPageViewModel vm)\n    {\n        InitializeComponent();\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    private void OnStepperValueChanged(object sender, ValueChangedEventArgs e)\n    {\n        double value = e.NewValue;\n        RotatingLabel.Rotation = value;\n        DisplayLabel.Text = string.Format(\"The Stepper value is {0}\", value);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/SwipeView/SwipeViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SwipeViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Swipe View\"\n    Padding=\"20\"\n    x:DataType=\"core:SwipeViewPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n    <core:BasePage.Resources>\n        <x:String x:Key=\"ContronInfo1\">\n            The .NET Multi-platform App UI (.NET MAUI) SwipeView is a container control that wraps around an item of content, and provides context menu items that are revealed by a swipe gesture:\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"ContronInfo2\">\n            A SwipeView must define the content that the SwipeView wraps around, and the swipe items that are revealed by the swipe gesture. The swipe items are one or more SwipeItem objects that are placed in one of the four SwipeView directional collections - LeftItems, RightItems, TopItems, or BottomItems.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader1\">\n            SwipeView defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader2\">\n            The SwipeView class also defines three events:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter1\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter2\">\n            In addition, SwipeView includes Open and Close methods, which programmatically open and close the swipe items, respectively.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource1\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">LeftItems</strong>, of type <strong style=\"color:blue\">SwipeItems</strong>, which represents the swipe items that can be invoked when the control is swiped from the left side.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">RightItems</strong>, of type <strong style=\"color:blue\">SwipeItems</strong>, which represents the swipe items that can be invoked when the control is swiped from the right side.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TopItems</strong>, of type <strong style=\"color:blue\">SwipeItems</strong>, which represents the swipe items that can be invoked when the control is swiped from the top down.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">BottemItems</strong>, of type <strong style=\"color:blue\">SwipeItems</strong>, which represents the swipe items that can be invoked when the control is swiped from the bottom up.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Threshold</strong>, of type <strong style=\"color:blue\">double</strong>, which represents the number of device-independent units that trigger a swipe gesture to fully reveal swipe items.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSource2\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SwipeStarted</strong>, is raised when a swipe starts. The <strong style=\"color:blue\">SwipeStartedEventArgs</strong> object that accompanies this event has a <strong style=\"color:blue\">SwipeDirection</strong> property, of type <strong style=\"color:blue\">SwipeDirection</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SwipeChanging</strong>, is raised when a swipe moves. The <strong style=\"color:blue\">SwipeChangingEventArgs</strong> object that accompanies this event has a <strong style=\"color:blue\">SwipeDirection</strong> property, of type <strong style=\"color:blue\">SwipeDirection</strong>, and an <strong style=\"color:blue\">Offset</strong> property of type <strong style=\"color:blue\">double</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SwipeEnded</strong>, is raised when a swipe ends. The <strong style=\"color:blue\">SwipeEndedEventArgs</strong> object that accompanies this event has a <strong style=\"color:blue\">SwipeDirection</strong> property, of type <strong style=\"color:blue\">SwipeDirection</strong>, and an <strong style=\"color:blue\">IsOpen</strong> property of type <strong style=\"color:blue\">bool</strong>.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n\n        <FontImageSource\n            x:Key=\"SwipeViewPageFluentStart48Regular\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_star_48_regular}\"\n            Color=\"Black\" />\n\n        <FontImageSource\n            x:Key=\"SwipeViewPageFluentDelete16Regular\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_delete_16_regular}\"\n            Color=\"Black\" />\n\n    </core:BasePage.Resources>\n\n    <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n        <ScrollView>\n            <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                    <Border\n                        Padding=\"20\"\n                        BackgroundColor=\"#272b33\"\n                        StrokeShape=\"RoundRectangle 4\">\n                        <Grid>\n                            <HorizontalStackLayout Spacing=\"10\">\n                                <Image\n                                    HeightRequest=\"25\"\n                                    Source=\"github_logo.png\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"25\" />\n\n                                <Label\n                                    HorizontalOptions=\"Start\"\n                                    Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                    Text=\"Issues\"\n                                    VerticalOptions=\"Center\" />\n                            </HorizontalStackLayout>\n                            <Border\n                                BackgroundColor=\"OrangeRed\"\n                                HeightRequest=\"40\"\n                                HorizontalOptions=\"End\"\n                                StrokeShape=\"RoundRectangle 20\"\n                                VerticalOptions=\"Center\"\n                                WidthRequest=\"40\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    HorizontalOptions=\"Center\"\n                                    Text=\"{x:Binding ControlIssues.Count,\n                                                     Mode=OneWay}\"\n                                    VerticalOptions=\"Center\" />\n                            </Border>\n                        </Grid>\n                    </Border>\n                    <CollectionView\n                        Grid.Row=\"1\"\n                        Margin=\"0,0,0,0\"\n                        EmptyView=\"{x:Binding EmptyViewText,\n                                              Mode=OneWay}\"\n                        ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                        ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                        ItemsSource=\"{x:Binding ControlIssues,\n                                                Mode=OneWay}\"\n                        SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                 Mode=TwoWay}\"\n                        SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                        SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                     Mode=OneWay}\"\n                        SelectionMode=\"Single\"\n                        VerticalOptions=\"Start\" />\n                    <Border\n                        Grid.Row=\"2\"\n                        Margin=\"0,0,0,10\"\n                        Padding=\"20\"\n                        BackgroundColor=\"#272b33\"\n                        StrokeShape=\"RoundRectangle 4\">\n                        <VerticalStackLayout Spacing=\"5\">\n                            <Label\n                                HorizontalOptions=\"Center\"\n                                HorizontalTextAlignment=\"Center\"\n                                Text=\"Found a new bug?\"\n                                TextColor=\"White\"\n                                TextDecorations=\"Underline\" />\n                            <Button\n                                Command=\"{x:Binding OpenUrlCommand}\"\n                                CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                Text=\"Report to the MAUI team\" />\n                        </VerticalStackLayout>\n                    </Border>\n                </Grid>\n                <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                    <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                        <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource ContronInfo1}\" />\n                    </Border>\n\n                    <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                        <VerticalStackLayout Spacing=\"10\">\n                            <Label\n                                FontAttributes=\"Bold\"\n                                FontSize=\"Subtitle\"\n                                Text=\"{x:StaticResource PropertiesListHeader1}\"\n                                TextDecorations=\"Underline\" />\n                            <CollectionView\n                                Footer=\"{x:StaticResource PropertiesListFooter1}\"\n                                ItemsSource=\"{x:StaticResource PropertiesItemsSource1}\"\n                                Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        </VerticalStackLayout>\n                    </Border>\n\n                    <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                        <CollectionView\n                            Footer=\"{x:StaticResource PropertiesListFooter2}\"\n                            Header=\"{x:StaticResource PropertiesListHeader2}\"\n                            ItemsSource=\"{x:StaticResource PropertiesItemsSource2}\"\n                            Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </Border>\n\n\n                    <!--  Create Swipe View  -->\n                    <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                        <VerticalStackLayout Spacing=\"20\">\n                            <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Create a SwipeView\" />\n                            <Label Text=\"{x:StaticResource ContronInfo2}\" />\n                            <Label FontSize=\"Micro\" Text=\"The following example shows how to instantiate a SwipeView in XAML:\" />\n                            <SwipeView>\n                                <SwipeView.LeftItems>\n                                    <SwipeItems>\n                                        <SwipeItem\n                                            BackgroundColor=\"LightGreen\"\n                                            Command=\"{x:Binding FavoriteCommand}\"\n                                            IconImageSource=\"{x:StaticResource SwipeViewPageFluentStart48Regular}\"\n                                            Text=\"Favorite\" />\n                                        <SwipeItem\n                                            BackgroundColor=\"LightPink\"\n                                            Command=\"{x:Binding DeleteCommand}\"\n                                            IconImageSource=\"{x:StaticResource SwipeViewPageFluentDelete16Regular}\"\n                                            Text=\"Delete\" />\n                                    </SwipeItems>\n                                </SwipeView.LeftItems>\n                                <Grid\n                                    BackgroundColor=\"DimGray\"\n                                    HeightRequest=\"60\"\n                                    WidthRequest=\"300\">\n                                    <Label\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Swipe right\"\n                                        VerticalOptions=\"Center\" />\n                                </Grid>\n                            </SwipeView>\n                            <Label FontSize=\"Micro\" Text=\"Once a swipe item has been executed the swipe items are hidden and the SwipeView content is re-displayed. However, this behavior can be changed. For more information, see Swipe behavior.\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding StandardSwipeViewXamlCode}\" />\n                        </VerticalStackLayout>\n                    </Border>\n\n                    <!--  Swipe items  -->\n                    <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                        <VerticalStackLayout Spacing=\"20\">\n                            <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Swipe items\" />\n                            <SwipeView>\n                                <SwipeView.LeftItems>\n                                    <SwipeItems>\n                                        <SwipeItem\n                                            BackgroundColor=\"LightGreen\"\n                                            IconImageSource=\"{x:StaticResource SwipeViewPageFluentStart48Regular}\"\n                                            Text=\"Favorite\" />\n                                        <SwipeItem\n                                            BackgroundColor=\"LightPink\"\n                                            IconImageSource=\"{x:StaticResource SwipeViewPageFluentDelete16Regular}\"\n                                            Text=\"Delete\" />\n                                    </SwipeItems>\n                                </SwipeView.LeftItems>\n                                <Grid\n                                    BackgroundColor=\"ForestGreen\"\n                                    HeightRequest=\"60\"\n                                    WidthRequest=\"300\">\n                                    <Label\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Swipe right\"\n                                        VerticalOptions=\"Center\" />\n                                </Grid>\n                            </SwipeView>\n                            <core:SourceCodeExpander Code=\"{x:Binding SwipeItemsXamlCode}\" />\n                        </VerticalStackLayout>\n                    </Border>\n\n                    <!--  Swipe direction  -->\n                    <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                        <VerticalStackLayout Spacing=\"20\">\n                            <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Swipe direction\" />\n                            <SwipeView>\n                                <SwipeView.LeftItems>\n                                    <SwipeItems Mode=\"Execute\">\n                                        <SwipeItem\n                                            BackgroundColor=\"LightPink\"\n                                            Command=\"{x:Binding DeleteCommand}\"\n                                            IconImageSource=\"{x:StaticResource SwipeViewPageFluentDelete16Regular}\"\n                                            Text=\"Delete\" />\n                                    </SwipeItems>\n                                </SwipeView.LeftItems>\n                                <SwipeView.RightItems>\n                                    <SwipeItems Mode=\"Reveal\">\n                                        <SwipeItem\n                                            BackgroundColor=\"LightGreen\"\n                                            Command=\"{x:Binding FavoriteCommand}\"\n                                            IconImageSource=\"{x:StaticResource SwipeViewPageFluentStart48Regular}\"\n                                            Text=\"Favorite\" />\n                                        <SwipeItem\n                                            BackgroundColor=\"LightYellow\"\n                                            Command=\"{x:Binding ShareCommand}\"\n                                            IconImageSource=\"share.png\"\n                                            Text=\"Share\" />\n                                    </SwipeItems>\n                                </SwipeView.RightItems>\n                                <Grid\n                                    BackgroundColor=\"BlueViolet\"\n                                    HeightRequest=\"60\"\n                                    WidthRequest=\"300\">\n                                    <Label\n                                        HorizontalTextAlignment=\"Center\"\n                                        Text=\"Swipe Right Or Left\"\n                                        VerticalOptions=\"Center\" />\n                                </Grid>\n                            </SwipeView>\n                            <core:SourceCodeExpander Code=\"{x:Binding SwipeDirectionXamlCode}\" />\n                        </VerticalStackLayout>\n                    </Border>\n\n                    <!--  Swipe threshold  -->\n                    <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                        <VerticalStackLayout Spacing=\"20\">\n                            <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Swipe threshold\" />\n                            <SwipeView Threshold=\"200\">\n                                <SwipeView.LeftItems>\n                                    <SwipeItems>\n                                        <SwipeItem\n                                            BackgroundColor=\"LightGreen\"\n                                            IconImageSource=\"{x:StaticResource SwipeViewPageFluentStart48Regular}\"\n                                            Text=\"Favorite\" />\n                                    </SwipeItems>\n                                </SwipeView.LeftItems>\n                                <Grid\n                                    BackgroundColor=\"Tomato\"\n                                    HeightRequest=\"60\"\n                                    WidthRequest=\"300\">\n                                    <Label\n                                        HorizontalTextAlignment=\"Center\"\n                                        Text=\"Swipe Right\"\n                                        VerticalOptions=\"Center\" />\n                                </Grid>\n                            </SwipeView>\n                            <core:SourceCodeExpander Code=\"{x:Binding SwipeThresholdXamlCode}\" />\n                        </VerticalStackLayout>\n                    </Border>\n\n                    <!--  Swipe mode  -->\n                    <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                        <VerticalStackLayout Spacing=\"20\">\n                            <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Swipe mode\" />\n                            <SwipeView>\n                                <SwipeView.LeftItems>\n                                    <SwipeItems Mode=\"Execute\">\n                                        <SwipeItem\n                                            BackgroundColor=\"LightPink\"\n                                            Command=\"{x:Binding DeleteCommand}\"\n                                            IconImageSource=\"{x:StaticResource SwipeViewPageFluentDelete16Regular}\"\n                                            Text=\"Delete\" />\n                                    </SwipeItems>\n                                </SwipeView.LeftItems>\n                                <Grid\n                                    BackgroundColor=\"LightCoral\"\n                                    HeightRequest=\"60\"\n                                    WidthRequest=\"300\">\n                                    <Label\n                                        HorizontalTextAlignment=\"Center\"\n                                        Text=\"Swipe Right\"\n                                        VerticalOptions=\"Center\" />\n                                </Grid>\n                            </SwipeView>\n                            <core:SourceCodeExpander Code=\"{x:Binding SwipeModeXamlCode}\" />\n                        </VerticalStackLayout>\n                    </Border>\n\n                    <!--  Swipe behavior  -->\n                    <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                        <VerticalStackLayout Spacing=\"20\">\n                            <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Swipe behavior\" />\n                            <SwipeView>\n                                <SwipeView.LeftItems>\n                                    <SwipeItems SwipeBehaviorOnInvoked=\"RemainOpen\">\n                                        <SwipeItem\n                                            BackgroundColor=\"LightGreen\"\n                                            IconImageSource=\"{x:StaticResource SwipeViewPageFluentStart48Regular}\"\n                                            Text=\"Favorite\" />\n                                        <SwipeItem\n                                            BackgroundColor=\"LightPink\"\n                                            IconImageSource=\"{x:StaticResource SwipeViewPageFluentDelete16Regular}\"\n                                            Text=\"Delete\" />\n                                    </SwipeItems>\n                                </SwipeView.LeftItems>\n                                <Grid\n                                    BackgroundColor=\"Orchid\"\n                                    HeightRequest=\"60\"\n                                    WidthRequest=\"300\">\n                                    <Label\n                                        HorizontalTextAlignment=\"Center\"\n                                        Text=\"Swipe Right\"\n                                        VerticalOptions=\"Center\" />\n                                </Grid>\n                            </SwipeView>\n                            <core:SourceCodeExpander Code=\"{x:Binding SwipeBehaviorXamlCode}\" />\n                        </VerticalStackLayout>\n                    </Border>\n                </VerticalStackLayout>\n            </Grid>\n        </ScrollView>\n    </RefreshView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/SwipeView/SwipeViewPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class SwipeViewPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly SwipeViewPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public SwipeViewPage(SwipeViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Switch/SwitchPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SwitchPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Switch\"\n    Padding=\"20\"\n    x:DataType=\"core:SwitchPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) Switch control is a horizontal toggle button that can be manipulated by the user to toggle between on and off states, which are represented by a boolean value.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            The Switch control defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means they can be styled and be the target of data bindings.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IsToggled</strong> is a <strong style=\"color:blue\">boolean</strong> value that indicates whether the Switch is on. The default value of this property is <strong style=\"color:blue\">false</strong>.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">OnColor</strong> is a <strong style=\"color:blue\">Color</strong> that affects how the Switch is rendered in the toggled, or on state.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ThumbColor</strong> is the <strong style=\"color:blue\">Color</strong> of the switch thumb.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"{x:StaticResource ControlInfo}\" />\n\n                                <Grid Margin=\"0,0,0,5\">\n                                    <Label\n                                        Margin=\"0,0,0,10\"\n                                        FontSize=\"Medium\"\n                                        HorizontalOptions=\"Start\"\n                                        Text=\"Basic switch\"\n                                        VerticalOptions=\"Center\" />\n\n                                    <Grid\n                                        Background=\"White\"\n                                        HeightRequest=\"1\"\n                                        VerticalOptions=\"End\" />\n                                </Grid>\n\n                                <Switch\n                                    HorizontalOptions=\"Start\"\n                                    IsToggled=\"True\"\n                                    OnColor=\"Pink\"\n                                    ThumbColor=\"ForestGreen\" />\n\n                                <core:SourceCodeExpander Code=\"{x:Binding StandardSwitchXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"⚠️ Warning Zone\" />\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"windowslogo.png\"\n                                        WidthRequest=\"25\" />\n                                </HorizontalStackLayout>\n                                <Label>\n                                    <Label.FormattedText>\n                                        <FormattedString>\n                                            <Span Text=\"The switch on WinUI have \" />\n                                            <Span\n                                                BackgroundColor=\"#282a36\"\n                                                FontAttributes=\"Bold\"\n                                                Text=\"MinimumWidthRequest = &quot;100&quot; \"\n                                                TextColor=\"#428fd6\" />\n                                            <Span Text=\"by default, this will result a white empty space when you align something next to it\" />\n                                        </FormattedString>\n                                    </Label.FormattedText>\n                                </Label>\n                                <Frame IsVisible=\"{x:OnPlatform WinUI=true, Android=false, iOS=false, Tizen=false, MacCatalyst=false}\" Style=\"{x:StaticResource DocumentContentFrameStyle}\">\n                                    <VerticalStackLayout>\n                                        <HorizontalStackLayout>\n                                            <Switch />\n                                            <Label\n                                                LineBreakMode=\"WordWrap\"\n                                                Text=\"I am the label next to the switch but sit inside a 0 spacing HorizontalStackLayout\"\n                                                VerticalTextAlignment=\"Center\" />\n                                        </HorizontalStackLayout>\n\n                                        <HorizontalStackLayout Spacing=\"5\">\n                                            <Switch MinimumWidthRequest=\"0\" />\n                                            <Label\n                                                LineBreakMode=\"WordWrap\"\n                                                Text=\"I am not having that issue anymore by setting the MinimumWidthRequest = 0\"\n                                                VerticalTextAlignment=\"Center\" />\n                                        </HorizontalStackLayout>\n                                    </VerticalStackLayout>\n                                </Frame>\n                            </VerticalStackLayout>\n                        </Border>\n\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout>\n                                <Grid Margin=\"0,0,0,5\">\n                                    <Label\n                                        Margin=\"0,0,0,10\"\n                                        FontSize=\"Medium\"\n                                        HorizontalOptions=\"Start\"\n                                        Text=\"Switch visual states and data bind\"\n                                        VerticalOptions=\"Center\" />\n\n                                    <Grid\n                                        Background=\"White\"\n                                        HeightRequest=\"1\"\n                                        VerticalOptions=\"End\" />\n                                </Grid>\n\n                                <Label Margin=\"0,10,0,5\" FontSize=\"15\">\n                                    <Label.Triggers>\n                                        <DataTrigger\n                                            Binding=\"{Binding Source={x:Reference switch2}, Path=IsToggled}\"\n                                            TargetType=\"Label\"\n                                            Value=\"True\">\n                                            <Setter Property=\"Text\" Value=\"The light is on 😊\" />\n                                            <Setter Property=\"TextColor\" Value=\"Yellow\" />\n                                        </DataTrigger>\n                                        <DataTrigger\n                                            Binding=\"{Binding Source={x:Reference switch2}, Path=IsToggled}\"\n                                            TargetType=\"Label\"\n                                            Value=\"False\">\n                                            <Setter Property=\"Text\" Value=\"The light is off 😭\" />\n                                            <Setter Property=\"TextColor\" Value=\"Gray\" />\n                                        </DataTrigger>\n                                    </Label.Triggers>\n                                </Label>\n\n                                <Switch\n                                    x:Name=\"switch2\"\n                                    HorizontalOptions=\"Start\"\n                                    OnColor=\"CadetBlue\">\n                                    <VisualStateManager.VisualStateGroups>\n                                        <VisualStateGroupList>\n                                            <VisualStateGroup x:Name=\"SwitchCommonStates\">\n                                                <VisualState x:Name=\"On\">\n                                                    <VisualState.Setters>\n                                                        <Setter Property=\"ThumbColor\" Value=\"Red\" />\n                                                    </VisualState.Setters>\n                                                </VisualState>\n                                                <VisualState x:Name=\"Off\">\n                                                    <VisualState.Setters>\n                                                        <Setter Property=\"ThumbColor\" Value=\"MediumSpringGreen\" />\n                                                    </VisualState.Setters>\n                                                </VisualState>\n                                            </VisualStateGroup>\n                                        </VisualStateGroupList>\n                                    </VisualStateManager.VisualStateGroups>\n                                </Switch>\n\n                                <core:SourceCodeExpander Code=\"{x:Binding AdvanceSwitchXamlCode}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/Switch/SwitchPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class SwitchPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly SwitchPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public SwitchPage(SwitchPageViewModel vm)\n    {\n        InitializeComponent();\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/TabbedPage/TabbedPagePage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<TabbedPage\n    x:Class=\"MAUIsland.TabbedPagePage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Padding=\"10\"\n    x:DataType=\"core:TabbedPagePageViewModel\">\n\n    <TabbedPage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </TabbedPage.ToolbarItems>\n\n    <TabbedPage.Resources>\n\n        <FontImageSource\n            x:Key=\"NewsIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_news_28_regular}\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n\n        <FontImageSource\n            x:Key=\"CommunityIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_people_community_28_regular}\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            TabbedPage defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Color</strong>, of type <strong style=\"color:blue\">Color </strong>, value that defines the color of the ActivityIndicator.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">IsRunning</strong>, of type <strong style=\"color:blue\">bool</strong>,value that indicates whether the ActivityIndicator should be visible and animating, or hidden. The default value of this property is false, which indicates that the ActivityIndicator isn't visible.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </TabbedPage.Resources>\n\n\n    <NavigationPage Title=\"News\" IconImageSource=\"{x:StaticResource NewsIcon}\">\n        <x:Arguments>\n            <app:NewsPage />\n        </x:Arguments>\n    </NavigationPage>\n\n    <NavigationPage Title=\"Contributor\" IconImageSource=\"{x:StaticResource CommunityIcon}\">\n        <x:Arguments>\n            <app:CommunityPage />\n        </x:Arguments>\n    </NavigationPage>\n\n</TabbedPage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/TabbedPage/TabbedPagePage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class TabbedPagePage : IGalleryPage\n{\n    #region [CTor]\n    public TabbedPagePage(TabbedPagePageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/TabbedPage/TabbedPages/CommunityPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentPage\n    x:Class=\"MAUIsland.CommunityPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    Title=\"CommunityPage\">\n    <VerticalStackLayout>\n        <Label\n            HorizontalOptions=\"Center\"\n            Text=\"Sups ??\"\n            VerticalOptions=\"Center\" />\n    </VerticalStackLayout>\n</ContentPage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/TabbedPage/TabbedPages/CommunityPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class CommunityPage : ContentPage\n{\n\tpublic CommunityPage()\n\t{\n\t\tInitializeComponent();\n\t}\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/TabbedPage/TabbedPages/NewsPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentPage\n    x:Class=\"MAUIsland.NewsPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    Title=\"NewsPage\">\n    <VerticalStackLayout>\n        <Label\n            HorizontalOptions=\"Center\"\n            Text=\"Sups ??\"\n            VerticalOptions=\"Center\" />\n    </VerticalStackLayout>\n</ContentPage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/TabbedPage/TabbedPages/NewsPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class NewsPage : ContentPage\n{\n\tpublic NewsPage()\n\t{\n\t\tInitializeComponent();\n\t}\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/TableView/TableViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.TableViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Table View\"\n    Padding=\"20\"\n    x:DataType=\"core:TableViewPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n    <core:BasePage.Resources>\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) TableView displays a table of scrollable items that can be grouped into sections. A TableView is typically used for displaying items where each row has a different appearance, such as presenting a table of settings.\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"ControlInfo1\">\n            To create a table, create a TableView object and set its Intent property to a TableIntent member. The child of a TableView must be a TableRoot object, which is parent to one or more TableSection objects. Each TableSection consists of an optional title whose color can also be set, and one or more Cell objects.\n        </x:String>\n\n        <x:String x:Key=\"ControlInfo2\">\n            Each item in a TableView is defined by a Cell object, and the Cell type used defines the appearance of the cell's data. .NET MAUI includes the following built-in cells:\n        </x:String>\n\n        <x:String x:Key=\"ControlInfo3\">\n            An ImageCell displays an image with primary and secondary text on separate lines. ImageCell inherits the properties from TextCell, and defines the ImageSource property, of type ImageSource, which specifies the image to be displayed in the cell. This property is backed by a BindableProperty object, which means it can be the target of data bindings, and be styled.\n        </x:String>\n\n        <x:String x:Key=\"ControlInfo4\">\n            A ViewCell is a custom cell whose appearance is defined by a View. ViewCell defines a View property, of type View, which defines the view that represents the content of the cell. This property is backed by a BindableProperty object, which means it can be the target of data bindings, and be styled.\n        </x:String>\n\n        <x:String x:Key=\"ControlInfo5\">\n            TableView can layout its content in a right-to-left flow direction by setting its FlowDirection property to RightToLeft. However, the FlowDirection property should ideally be set on a page or root layout, which causes all the elements within the page, or root layout, to respond to the flow direction:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            TableView defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader1\">\n            The value of the Intent property helps to define the TableView appearance on iOS only. This property should be set to a value of the TableIntent enumeration, which defines the following members:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader2\">\n            A TextCell displays primary and secondary text on separate lines. TextCell defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader3\">\n            A SwitchCell displays text and a switch that can be switched on or off. SwitchCell defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader4\">\n            An EntryCell displays a label and text data that's editable. EntryCell defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            The HasUnevenRows and RowHeight properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter1\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter2\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter3\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Intent</strong>, of type <strong style=\"color:blue\">TableIntent</strong>, defines the purpose of the table on iOS.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">HasUnevenRows</strong>, of type <strong style=\"color:blue\">bool</strong>, indicates whether items in the table can have rows of different heights. The default value of this property is <strong style=\"color:blue\">false</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Root</strong>, of type <strong style=\"color:blue\">TableRoot</strong>, defines the child of the TableView.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">RowHeight</strong>, of type <strong style=\"color:blue\">int</strong>, determines the height of each row when <strong style=\"color:blue\">HasUnevenRows</strong> is <strong style=\"color:blue\">false</strong>.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertyItemsSource1\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Menu</strong>, for presenting a selectable menu.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Setting</strong>, for presenting a table of configuration settings.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Form</strong>, for presenting a data input form.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Data</strong>, for presenting data.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertyItemsSource2\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextCell</strong>, which displays primary and secondary text on separate lines.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ImageCell</strong>, which displays an image with primary and secondary text on separate lines.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">SwitchCell</strong>, which displays text and a switch that can be switched on or off.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">EntryCell</strong>, which displays a label and text that's editable.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ViewCell</strong>, which is a custom cell whose appearance is defined by a <strong style=\"color:blue\">View</strong>. This cell type should be used when you want to fully define the appearance of each item in a <strong style=\"color:blue\">TableView</strong>.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertyItemsSource3\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Text</strong>, of type <strong style=\"color:blue\">string</strong>, defines the primary text to be displayed.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, represents the color of the primary text.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Detail</strong>, of type <strong style=\"color:blue\">string</strong>, defines the secondary text to be displayed.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">DetailColor</strong>, of type <strong style=\"color:blue\">color</strong>, indicates the color of the secondary text.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Command</strong>, of type <strong style=\"color:blue\">ICommand</strong>, defines the command that's executed when the cell is tapped.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CommandParameter</strong>, of type <strong style=\"color:blue\">object</strong>, represents the parameter that's passed to the command.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertyItemsSource4\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Text</strong>, of type <strong style=\"color:blue\">string</strong>, defines the text to display next to the switch.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">On</strong>, of type <strong style=\"color:blue\">bool</strong>, represents whether the switch is on or off.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">OnColor</strong>, of type <strong style=\"color:blue\">Color</strong>, indicates the color of the switch when in it's on position.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertyItemsSource5\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">HorizontalTextAlignment</strong>, of type <strong style=\"color:blue\">TextAlignment</strong>, represents the horizontal alignment of the text.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Keyboard</strong>, of type <strong style=\"color:blue\">Keyboard</strong>, determines the keyboard to display when entering text.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Label</strong>, of type <strong style=\"color:blue\">string</strong>, represents the text to display to the left of the editable text.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">LabelColor</strong>, of type <strong style=\"color:blue\">Color</strong>, defines the color of the label text.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Placeholder</strong>, of type <strong style=\"color:blue\">string</strong>, represents the text that's displayed when the <strong style=\"color:blue\">Text</strong> property is empty.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Text</strong>, of type <strong style=\"color:blue\">string</strong>, defines the text that's editable.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">VerticalTextAlignment</strong>, of type <strong style=\"color:blue\">TextAlignment</strong>, represents the vertical alignment of the text.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <!--  Create a TableView  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Create a TableView\" />\n                                <Label Text=\"{x:StaticResource ControlInfo1}\" />\n                                <Label Text=\"The following example shows how to create a TableView:\" />\n                                <TableView Intent=\"Menu\">\n                                    <TableRoot>\n                                        <TableSection Title=\"Chapters\">\n                                            <TextCell Detail=\"Learn about .NET MAUI and what it provides.\" Text=\"1. Introduction to .NET MAUI\" />\n                                            <TextCell Detail=\"Learn about the visual elements in .NET MAUI\" Text=\"2. Anatomy of an app\" />\n                                            <TextCell Detail=\"Learn about the .NET MAUI controls that display text.\" Text=\"3. Text\" />\n                                            <TextCell Detail=\"Learn how to size .NET MAUI controls on screen.\" Text=\"4. Dealing with sizes\" />\n                                            <TextCell Detail=\"Learn more about creating your UI in XAML.\" Text=\"5. XAML vs code\" />\n                                        </TableSection>\n                                    </TableRoot>\n                                </TableView>\n                                <core:SourceCodeExpander Code=\"{x:Binding StandardTableViewXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <!--  Define cell appearance  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Define cell appearance\" />\n                                <Label Text=\"{x:StaticResource ControlInfo2}\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource PropertyItemsSource2}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <!--  Text cell  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter2}\"\n                                    Header=\"{x:StaticResource PropertiesListHeader2}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource3}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label Text=\"The following example shows using a TextCell to define the appearance of items in a TableView:\" />\n                                <TableView Intent=\"Menu\">\n                                    <TableRoot>\n                                        <TableSection Title=\"Chapters\">\n                                            <TextCell Detail=\"Learn about .NET MAUI and what it provides.\" Text=\"1. Introduction to .NET MAUI\" />\n                                            <TextCell Detail=\"Learn about the visual elements in .NET MAUI\" Text=\"2. Anatomy of an app\" />\n                                            <TextCell Detail=\"Learn about the .NET MAUI controls that display text.\" Text=\"3. Text\" />\n                                            <TextCell Detail=\"Learn how to size .NET MAUI controls on screen.\" Text=\"4. Dealing with sizes\" />\n                                            <TextCell Detail=\"Learn more about creating your UI in XAML.\" Text=\"5. XAML vs code\" />\n                                        </TableSection>\n                                    </TableRoot>\n                                </TableView>\n                                <core:SourceCodeExpander Code=\"{x:Binding TextCellXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <!--  Image cell  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Image cell\" />\n                                <Label Text=\"{x:StaticResource ControlInfo3}\" />\n                                <Label Text=\"The following example shows using an ImageCell to define the appearance of items in a TableView:\" />\n                                <TableView Intent=\"Menu\">\n                                    <TableRoot>\n                                        <TableSection Title=\"Explore all the platforms\">\n                                            <ImageCell\n                                                Detail=\"iOS (formerly iPhone OS ) is a mobile operating system created and developed by Apple Inc. exclusively for its hardware. It is the operating system that powers many of the company's mobile devices, including the iPhone; the term also includes the system software for iPads predating iPadOS\"\n                                                ImageSource=\"ios_logo.png\"\n                                                Text=\"1. IOS\" />\n                                            <ImageCell\n                                                Detail=\"Android is an operating system for mobile devices. It is mostly used for smartphones, like Google 's own Google Pixel, as well as by other phone manufacturers like HTC and Samsung. It has also been used for tablets such as the Motorola, Xoom and Amazon Kindle.\"\n                                                ImageSource=\"android_logo.png\"\n                                                Text=\"2. Android\" />\n                                            <ImageCell\n                                                Detail=\"Windows is a group of several proprietary graphical operating system families developed and marketed by Microsoft. Each family caters to a certain sector of the computing industry. For example, Windows NT for consumers, Windows Server for servers, and Windows IoT for embedded systems. Defunct Windows families include Windows 9x, Windows Mobile, and Windows Phone.\"\n                                                ImageSource=\"windowslogo.png\"\n                                                Text=\"3. Windows\" />\n                                            <ImageCell\n                                                Detail=\"Tizen is a Linux-based mobile operating system backed by the Linux Foundation, mainly developed and used primarily by Samsung Electronics. The project was originally conceived as an HTML5-based platform for mobile devices to succeed MeeGo. Samsung merged its previous Linux-based OS effort, Bada, into Tizen, and has since used it primarily on platforms such as wearable devices and smart TVs.\"\n                                                ImageSource=\"tizenlogo.png\"\n                                                Text=\"4. Tizen\" />\n                                        </TableSection>\n                                    </TableRoot>\n                                </TableView>\n                                <core:SourceCodeExpander Code=\"{x:Binding ImageCellXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <!--  Switch cell  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Switch cell\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter3}\"\n                                    Header=\"{x:StaticResource PropertiesListHeader4}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource4}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label Text=\"The following example shows using a SwitchCell to define the appearance of items in a TableView:\" />\n                                <TableView Intent=\"Settings\">\n                                    <TableRoot>\n                                        <TableSection>\n                                            <SwitchCell On=\"False\" Text=\"Airplane Mode\" />\n                                            <SwitchCell On=\"True\" Text=\"Notifications\" />\n                                        </TableSection>\n                                    </TableRoot>\n                                </TableView>\n                                <core:SourceCodeExpander Code=\"{x:Binding SwitchCellXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <!--  Entry cell  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Entry cell\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource PropertyItemsSource5}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label Text=\"The following example shows using an EntryCell to define the appearance of items in a TableView:\" />\n                                <TableView Intent=\"Settings\">\n                                    <TableRoot>\n                                        <TableSection>\n                                            <EntryCell Label=\"Login\" Placeholder=\"username\" />\n                                            <EntryCell Label=\"Password\" Placeholder=\"password\" />\n                                        </TableSection>\n                                    </TableRoot>\n                                </TableView>\n                                <core:SourceCodeExpander Code=\"{x:Binding EntryCellXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <!--  View cell  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"View cell\" />\n                                <Label Text=\"{x:StaticResource ControlInfo4}\" />\n                                <Label Text=\"The following example shows using a ViewCell to define the appearance of an item in a TableView:\" />\n                                <TableView Intent=\"Settings\">\n                                    <TableRoot>\n                                        <TableSection Title=\"Silent\">\n                                            <ViewCell>\n                                                <Grid ColumnDefinitions=\"0.5*,0.5*\" RowDefinitions=\"Auto,Auto\">\n                                                    <Label Margin=\"10,10,0,0\" Text=\"Vibrate\" />\n                                                    <Switch Grid.Column=\"1\" HorizontalOptions=\"End\" />\n                                                    <Slider\n                                                        Grid.Row=\"1\"\n                                                        Grid.ColumnSpan=\"2\"\n                                                        Margin=\"10\"\n                                                        Maximum=\"10\"\n                                                        Minimum=\"0\"\n                                                        Value=\"3\" />\n                                                </Grid>\n                                            </ViewCell>\n                                        </TableSection>\n                                    </TableRoot>\n                                </TableView>\n                                <core:SourceCodeExpander Code=\"{x:Binding ViewCellXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <!--  Right-to-left layout  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Right-to-left layout\" />\n                                <Label Text=\"{x:StaticResource ControlInfo5}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding RightToLeftLayoutXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"The default FlowDirection for an element with a parent is MatchParent. Therefore, the TableView inherits the FlowDirection property value from the ContentPage.\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/TableView/TableViewPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class TableViewPage : IGalleryPage\n{\n\n    #region [ Fields ]\n\n    private readonly TableViewPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public TableViewPage(TableViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/TimePicker/TimePickerPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.TimePickerPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Time Picker\"\n    Padding=\"20\"\n    x:DataType=\"core:TimePickerPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <core:TimeOnyToTimeSpanConverter x:Key=\"TimeOnyToTimeSpanConverter\" />\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            TimePicker defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:String x:Key=\"TimeOnlyDataTypeInfo\">\n            The TimeOnly struct is used to represent a time that is independent of the date. For example, imagine creating an alarm clock app that lets the user create a reoccurring alarm. In this situation, we want to store the time of day when the alarm should sound, but the date is irrelevant.\n        </x:String>\n\n        <x:String x:Key=\"TimeOnlyDataTypeInfo1\">\n            The TimeOnly type has several constructor overloads. The more common ones that I expect most developers will use allow us to create a date accepting either the hour and minute for the time, the hour, minute and second, or the hour, minute, second and millisecond.\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                <strong style=\"color:blue\">Time</strong>, of type <strong style=\"color:blue\">TimeSpan</strong>, the selected time, which defaults to a <strong style=\"color:blue\">TimeSpan</strong> of 0. The <strong style=\"color:blue\">TimeSpan</strong> type indicates a duration of time since midnight.\n                    ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                <strong style=\"color:blue\">Format</strong>, of type <strong style=\"color:blue\">string</strong>, a standard or custom .NET formatting string, which defaults to \"t\", the short time pattern.\n                    ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, the color used to display the selected time.\n                    ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                <strong style=\"color:blue\">FontAttributes</strong>, of type <strong style=\"color:blue\">FontAttributes</strong>, which defaults to FontAtributes.None.\n                    ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                <strong style=\"color:blue\">FontFamily</strong>, of type <strong style=\"color:blue\">string</strong>, which defaults to null.\n                    ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">double</strong>, which defaults to -1.0.\n                    ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                <strong style=\"color:blue\">CharacterSpacing</strong>, of type <strong style=\"color:blue\">double</strong>, is the spacing between characters of the TimePicker text.\n                    ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertyItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Simple date picker\" />\n                                <TimePicker Time=\"4:15:26\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding SimpleTimePickerXamlCode}\" />\n                                <Label Text=\"You can also you use C# to create it\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding SimpleTimePickerCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"TIMEONLY in .NET 6\" />\n                                <Label Text=\"{x:StaticResource TimeOnlyDataTypeInfo}\" />\n                                <Label Text=\"{x:StaticResource TimeOnlyDataTypeInfo1}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding TimeOnlyContrutorsExampleCSharpCode}\" CodeType=\"CSharp\" />\n                                <Label Text=\"For example, to represent 10:30am in the morning, we can create the following TimeOnly instance.\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding TimeOnlyExampleCSharpCode}\" CodeType=\"CSharp\" />\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <TimePicker Time=\"{x:Binding TimeOnlyTime, Mode=TwoWay, Converter={x:StaticResource TimeOnyToTimeSpanConverter}}\" />\n                                    <Label Text=\"{x:Binding TimeOnlyTime}\" />\n                                </HorizontalStackLayout>\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"TimeOnyToTimeSpanConverter\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding TimeOnyToTimeSpanConverterCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Controls/TimePicker/TimePickerPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class TimePickerPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly TimePickerPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public TimePickerPage(TimePickerPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Helpers/AppSettingsJson/AppSettingsJsonPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.AppSettingsJsonPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"AppSettingsJson\"\n    Padding=\"20\"\n    x:DataType=\"core:AppSettingsJsonPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"jamesmontemagnologo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:String x:Key=\"Intro\">\n            This example is based on James Montemagnologo blog you can find the original link by click the logo on the top, huge thanks for his contribution\n        </x:String>\n\n        <x:String x:Key=\"AddFile\">\n            Let's add the appsettings.json file\n        </x:String>\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:StaticResource Intro}\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:StaticResource AddFile}\" />\n                        <core:SourceCodeExpander\n                            Code=\"{x:Binding AppSettingsJsonContent}\"\n                            CodeType=\"CSharp\"\n                            IsExpanding=\"True\"\n                            ShowCodeType=\"False\" />\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"Make it as \" />\n                                    <Span\n                                        BackgroundColor=\"#f8f8f8\"\n                                        Text=\"EmbeddedResource\"\n                                        TextColor=\"Black\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Next, let's create a few classes that represent these configuration settings anywhere in the project:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding AppSettingsCSharpClasses}\" CodeType=\"CSharp\" />\n                        <Label Text=\"We will now need to configure our json file with a few Microsoft.Extensions.Configuration NuGet packages. Added the following into your .csproj:\" />\n                        <core:SourceCodeExpander\n                            Code=\"{x:Binding PackageReferencesCode}\"\n                            IsExpanding=\"True\"\n                            ShowCodeType=\"False\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Now, let's read in our json file, and add it to our builder.Configuration in our CreateMauiApp method after we create the builder:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding SetUpConfigBuilder}\" CodeType=\"CSharp\" />\n                        <Label Text=\"The code above reads in the manifest resource from the assembly into a stream. You will want to change the MauiApp27 to whatever your assembly name is for your project. After that we load it up and add our new configuration to the builder's main ConfigurationManager. We do this so we can dependency inject our IConfiguration anywhere we want.\" />\n                        <Label Text=\"We will want to add our MainPage as a Transient into our IServiceCollection in our CreateMauiApp method:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding RegisterMainPageToServiceCollection}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Now we can adjust our App.xaml.cs to inject our MainPage:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding InjectMainPageService}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Then over on our MainPage, we can inject our IConfiguration and then use it when our button is clicked to read in our Settings and bind them together:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding MainPageWithCounterClickEvent}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Now, if you aren't using constructor injection don't worry as you can still access it manually by exposing the IServiceProvider in our MauiProgram.cs:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ServiceProviderExample}\" CodeType=\"CSharp\" />\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"Then you can access it via: \" />\n                                    <Span\n                                        BackgroundColor=\"Grey\"\n                                        Text=\"MauiProgram.Services.GetService();\"\n                                        TextColor=\"White\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <Label Text=\"Either way, you are good to go and you have access to these settings!!!\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Let's try it out !!!\" />\n                        <Button\n                            x:Name=\"SettingsButton\"\n                            Clicked=\"SettingsButton_Clicked\"\n                            Text=\"Show me those settings\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Helpers/AppSettingsJson/AppSettingsJsonPage.xaml.cs",
    "content": "using Microsoft.Extensions.Configuration;\n\nnamespace MAUIsland;\npublic partial class AppSettingsJsonPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly AppSettingsJsonPageViewModel viewModel;\n    #endregion\n\n    #region [ Properties ]\n\n    MAUIsland.Core.Settings settings;\n    #endregion\n\n    #region [ CTor ]\n    public AppSettingsJsonPage(AppSettingsJsonPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n\n        settings = ServiceHelper.GetService<IConfiguration>()\n                                   .GetRequiredSection(\"Settings\")\n                                   .Get<MAUIsland.Core.Settings>();\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    private async void SettingsButton_Clicked(object sender, EventArgs e)\n    {\n        await DisplayAlert(\"Config\", $\"{nameof(settings.KeyOne)}: {settings.KeyOne}\" +\n            $\"{nameof(settings.KeyTwo)}: {settings.KeyTwo}\" +\n            $\"{nameof(settings.KeyThree.Message)}: {settings.KeyThree.Message}\", \"OK\");\n\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Helpers/AppSettingsJson/JsonFiles/appsettings.json",
    "content": "﻿{\n  \"Settings\": {\n    \"KeyOne\": 1,\n    \"KeyTwo\": true,\n    \"KeyThree\": {\n      \"Message\": \"Oh, that's nice...\"\n    }\n  }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Helpers/Popup/PopupPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.PopupPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Popup\"\n    Padding=\"20\"\n    x:DataType=\"core:PopupPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            The full argument list for the DisplayPromptAsync method is:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">title</strong>, of type <strong style=\"color:blue\">string</strong>, is the title to display in the prompt.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">message</strong>, of type <strong style=\"color:blue\">string</strong>, is the message to display in the prompt.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">accept</strong>, of type <strong style=\"color:blue\">string</strong>, is the text for the accept button. This is an optional argument, whose default value is OK.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">cancel</strong>, of type <strong style=\"color:blue\">string</strong>, is the text for the cancel button. This is an optional argument, whose default value is Cancel.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">placeholder</strong>, of type <strong style=\"color:blue\">string</strong>, is the placeholder text to display in the prompt. This is an optional argument, whose default value is <strong style=\"color:blue\">null</strong>.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">maxLength</strong>, of type <strong style=\"color:blue\">int</strong>, is the maximum length of the user response. This is an optional argument, whose default value is -1.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">keyboard</strong>, of type <strong style=\"color:blue\">Keyboard</strong>, is the keyboard type to use for the user response. This is an optional argument, whose default value is <strong style=\"color:blue\">Keyboard.Default</strong>.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">initialValue</strong>, of type <strong style=\"color:blue\">string</strong>, is a pre-defined response that will be displayed, and which can be edited. This is an optional argument, whose default value is an empty <strong style=\"color:blue\">string</strong>.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n\n                                <Label FontSize=\"Medium\" Text=\"Basic Popup\" />\n\n                                <Grid\n                                    Background=\"White\"\n                                    HeightRequest=\"1\"\n                                    VerticalOptions=\"End\" />\n\n                                <Button\n                                    Clicked=\"Button_Clicked\"\n                                    Text=\"Click me!\"\n                                    WidthRequest=\"100\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding StandardPopupCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n\n                                <Label FontSize=\"Medium\" Text=\"Capture popup response\" />\n\n                                <Grid\n                                    Background=\"White\"\n                                    HeightRequest=\"1\"\n                                    VerticalOptions=\"End\" />\n\n                                <Button\n                                    Clicked=\"Button_Clicked_1\"\n                                    Text=\"Click me!\"\n                                    WidthRequest=\"100\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CaptureResponsePopupCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n\n                                <Label FontSize=\"Medium\" Text=\"An action sheet popup\" />\n\n                                <Grid\n                                    Background=\"White\"\n                                    HeightRequest=\"1\"\n                                    VerticalOptions=\"End\" />\n\n                                <Button\n                                    Clicked=\"Button_Clicked_2\"\n                                    Text=\"Click me!\"\n                                    WidthRequest=\"100\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding ActionSheetPopupCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n\n                                <Label FontSize=\"Medium\" Text=\"Display a prompt\" />\n\n                                <Grid\n                                    Background=\"White\"\n                                    HeightRequest=\"1\"\n                                    VerticalOptions=\"End\" />\n\n                                <Button\n                                    Clicked=\"Button_Clicked_3\"\n                                    Text=\"Click me!\"\n                                    WidthRequest=\"100\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding PromptPopupCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n\n                                <Label FontSize=\"Medium\" Text=\"Open dialog from the ViewModel\" />\n\n                                <Grid\n                                    Background=\"White\"\n                                    HeightRequest=\"1\"\n                                    VerticalOptions=\"End\" />\n\n                                <Button\n                                    Command=\"{x:Binding TriggerDialogFromViewModelCommand}\"\n                                    Text=\"Click me!\"\n                                    WidthRequest=\"100\" />\n\n                                <Label Text=\"Create an interface\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding ViewModelPopUpInterfaceCode}\" CodeType=\"CSharp\" />\n                                <Label Text=\"Create an implementation of that interface\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding ViewModelPopUpCSharpCode}\" CodeType=\"CSharp\" />\n                                <Label Text=\"Don't forget to register them inside the ServiceCollection !!!!\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Helpers/Popup/PopupPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class PopupPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly PopupPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public PopupPage(PopupPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    private async void Button_Clicked(object sender, EventArgs e)\n    {\n        await DisplayAlert(\"Sample Popup Alert\", \"You have been alerted\", \"OK\");\n    }\n\n    private async void Button_Clicked_1(object sender, EventArgs e)\n    {\n        bool answer = await DisplayAlert(\"Question?\", \"Would you like to play a game\", \"Yes\", \"No\");\n        await DisplayAlert(\"Answer\", $\"Answer is {(answer ? \"yes\" : \"no\")}\", \"OK\");\n    }\n\n    private async void Button_Clicked_2(object sender, EventArgs e)\n    {\n        string answer = await DisplayActionSheet(\"What game do you wanna play?\", \"Cancel\", null, \"LOL\", \"Halo\", \"Dota2\");\n        if (answer != \"Cancel\")\n        {\n            await DisplayAlert(\"Answer\", $\"{answer} is great!\", \"OK\");\n        }\n    }\n\n    private async void Button_Clicked_3(object sender, EventArgs e)\n    {\n        string answer = await DisplayPromptAsync(\"Hello\", \"What's your name?\", placeholder: \"Type your name\");\n        if (answer != null)\n        {\n            await DisplayAlert(\"Welcome\", $\"Hello, {answer}\", \"Cancel\");\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/AbsoluteLayout/AbsoluteLayoutPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.AbsoluteLayoutPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Absolute Layout\"\n    Padding=\"20\"\n    x:DataType=\"core:AbsoluteLayoutPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            The AbsoluteLayout class defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">LayoutBounds</strong>, of type <strong style=\"color:blue\">Rect</strong>, which is an attached property that represents the position and size of a child. The default value of this property is (0,0,AutoSize,AutoSize).\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">LayoutFlags</strong>, of type <strong style=\"color:blue\">AbsoluteLayoutFlags</strong>, which is an attached property that indicates whether properties of the layout bounds used to position and size the child are interpreted proportionally. The default value of this property is AbsoluteLayoutFlags.None.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label FontSize=\"Medium\" Text=\"{x:StaticResource PropertiesListHeader}\" />\n                                <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Position and size children  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Position and size children\" />\n                                <Label Text=\"{x:Binding PositionAndSizeChildren}\" />\n                                <Label Text=\"{x:Binding PositionAndSizeChildren1}\" />\n                                <CollectionView ItemsSource=\"{x:Binding PositionAndSizeChildrenList}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label Text=\"{x:Binding PositionAndSizeChildren2}\" />\n                                <core:DocumentAlert AlertType=\"Important\" Text=\"{x:Binding PositionAndSizeChildrenImportant}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Absolute positioning and sizing  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Absolute positioning and sizing\" />\n                                <Label Text=\"{x:Binding AbsolutePositioningAndSizing}\" />\n                                <core:DocumentAlert AlertType=\"Warning\" Text=\"{x:Binding AbsolutePositioningAndSizingWarning}\" />\n                                <Label Text=\"{x:Binding AbsolutePositioningAndSizing1}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding AbsolutePositioningAndSizingXamlCode}\" CodeType=\"Xaml\" />\n                                <AbsoluteLayout Margin=\"20\">\n                                    <BoxView AbsoluteLayout.LayoutBounds=\"0, 10, 200, 5\" Color=\"Silver\" />\n                                    <BoxView AbsoluteLayout.LayoutBounds=\"0, 20, 200, 5\" Color=\"Silver\" />\n                                    <BoxView AbsoluteLayout.LayoutBounds=\"10, 0, 5, 65\" Color=\"Silver\" />\n                                    <BoxView AbsoluteLayout.LayoutBounds=\"20, 0, 5, 65\" Color=\"Silver\" />\n                                    <Label\n                                        AbsoluteLayout.LayoutBounds=\"30, 25\"\n                                        FontSize=\"24\"\n                                        Text=\"Stylish Header\" />\n                                </AbsoluteLayout>\n                                <Label Text=\"{x:Binding AbsolutePositioningAndSizing3}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding AbsolutePositioningAndSizingCSharpCode}\" CodeType=\"CSharp\" />\n                                <Label Text=\"{x:Binding AbsolutePositioningAndSizing4}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding AbsolutePositioningAndSizingCSharpCode1}\" CodeType=\"CSharp\" />\n                                <Label Text=\"{x:Binding AbsolutePositioningAndSizing5}\" />\n                                <core:DocumentAlert AlertType=\"Note\" Text=\"{x:Binding AbsolutePositioningAndSizingNote}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Proportional positioning and sizing  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding ProportionalPositioningAndSizingHeader}\" />\n                                <Label Text=\"{x:Binding ProportionalPositioningAndSizing}\" TextType=\"Html\" />\n                                <Label Text=\"{x:Binding ProportionalPositioningAndSizing1}\" TextType=\"Html\" />\n                                <Label Text=\"{x:Binding ProportionalPositioningAndSizing2}\" TextType=\"Html\" />\n                                <CollectionView ItemsSource=\"{x:Binding ProportionalPositioningAndSizingList}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <core:DocumentAlert AlertType=\"Tip\" Text=\"{x:Binding ProportionalPositioningAndSizingTip}\" />\n                                <Label Text=\"{x:Binding ProportionalPositioningAndSizing3}\" TextType=\"Html\" />\n                                <Label Text=\"{x:Binding ProportionalPositioningAndSizing4}\" TextType=\"Html\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding ProportionalPositioningAndSizingXamlCode}\" CodeType=\"Xaml\" />\n                                <AbsoluteLayout>\n                                    <BoxView\n                                        AbsoluteLayout.LayoutBounds=\"0.5,0,100,25\"\n                                        AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                                        Color=\"Blue\" />\n                                    <BoxView\n                                        AbsoluteLayout.LayoutBounds=\"0,0.5,25,100\"\n                                        AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                                        Color=\"Green\" />\n                                    <BoxView\n                                        AbsoluteLayout.LayoutBounds=\"1,0.5,25,100\"\n                                        AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                                        Color=\"Red\" />\n                                    <BoxView\n                                        AbsoluteLayout.LayoutBounds=\"0.5,1,100,25\"\n                                        AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                                        Color=\"Black\" />\n                                    <Label\n                                        AbsoluteLayout.LayoutBounds=\"0.5,0.5,110,25\"\n                                        AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                                        Text=\"Centered text\" />\n                                </AbsoluteLayout>\n                                <Label Text=\"{x:Binding ProportionalPositioningAndSizing5}\" TextType=\"Html\" />\n                                <Label Text=\"{x:Binding ProportionalPositioningAndSizing6}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding ProportionalPositioningAndSizingCSharpCode}\" CodeType=\"CSharp\" />\n                                <Label Text=\"{x:Binding ProportionalPositioningAndSizing7}\" TextType=\"Html\" />\n                                <core:DocumentAlert AlertType=\"Note\" Text=\"{x:Binding ProportionalPositioningAndSizingNote}\" />\n                            </VerticalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout>\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"ASP.NET roadmap with absolute layout\" />\n                                <app:DotNetRoadMap />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/AbsoluteLayout/AbsoluteLayoutPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class AbsoluteLayoutPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly AbsoluteLayoutPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public AbsoluteLayoutPage(AbsoluteLayoutPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/AbsoluteLayout/ContentViews/DotNetRoadMap.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.DotNetRoadMap\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    x:Name=\"root\"\n    x:DataType=\"app:DotNetRoadMap\"\n    Loaded=\"root_Loaded\">\n    <VerticalStackLayout Spacing=\"10\">\n        <HorizontalStackLayout AbsoluteLayout.LayoutBounds=\"50.0, 1.0\" Spacing=\"10\">\n            <Label Text=\"Toggle elements opacity:\" VerticalOptions=\"Center\" />\n            <Switch\n                BindingContext=\"{x:Reference root}\"\n                IsToggled=\"{x:Binding IsToggleElementsVisible,\n                                      Mode=TwoWay}\"\n                VerticalOptions=\"Center\" />\n        </HorizontalStackLayout>\n        <AbsoluteLayout\n            HorizontalOptions=\"Center\"\n            VerticalOptions=\"Start\"\n            WidthRequest=\"960\">\n\n            <Image\n                HeightRequest=\"1900\"\n                Source=\"aspnetcore_developer_roadmap.png\"\n                WidthRequest=\"960\" />\n            <!--\n                Opacity=\"{x:Binding OpacityLevel,\n                Mode=OneWay}\"\n            -->\n            <Label\n                x:Name=\"CSharpFundamentalLink\"\n                Padding=\"0\"\n                AbsoluteLayout.LayoutBounds=\"0.527, 0.064\"\n                AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                BackgroundColor=\"Red\"\n                BindingContext=\"{x:Reference root}\"\n                FontSize=\"8\"\n                HeightRequest=\"25\"\n                HorizontalTextAlignment=\"Center\"\n                Opacity=\"{x:Binding OpacityLevel,\n                                    Mode=OneWay}\"\n                Text=\"General Development Skill\"\n                VerticalTextAlignment=\"Center\"\n                WidthRequest=\"120\">\n                <Label.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"TapGestureRecognizer_Tapped\" />\n                </Label.GestureRecognizers>\n            </Label>\n\n\n            <!--  C#  -->\n            <Label\n                x:Name=\"CSharpLink\"\n                Padding=\"0\"\n                AbsoluteLayout.LayoutBounds=\"0.39,0.079\"\n                AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                BackgroundColor=\"Red\"\n                BindingContext=\"{x:Reference root}\"\n                FontSize=\"8\"\n                HeightRequest=\"25\"\n                HorizontalTextAlignment=\"Center\"\n                Opacity=\"{x:Binding OpacityLevel,\n                                    Mode=OneWay}\"\n                Text=\"C#\"\n                VerticalTextAlignment=\"Center\"\n                WidthRequest=\"25\">\n                <Label.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"TapGestureRecognizer_Tapped\" />\n                </Label.GestureRecognizers>\n            </Label>\n\n            <!--  SQL Fundamenatls  -->\n            <Label\n                x:Name=\"SQLFundamentalsLink\"\n                Padding=\"0\"\n                AbsoluteLayout.LayoutBounds=\"0.507, 0.104\"\n                AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                BackgroundColor=\"Red\"\n                BindingContext=\"{x:Reference root}\"\n                FontSize=\"8\"\n                HeightRequest=\"25\"\n                HorizontalTextAlignment=\"Center\"\n                Opacity=\"{x:Binding OpacityLevel,\n                                    Mode=OneWay}\"\n                Text=\"SQL Fundamenatls\"\n                VerticalTextAlignment=\"Center\"\n                WidthRequest=\"85\">\n                <Label.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"TapGestureRecognizer_Tapped\" />\n                </Label.GestureRecognizers>\n            </Label>\n\n            <!--  ASP.NET Core Basics  -->\n            <Label\n                x:Name=\"ASPNETCoreBasicsLink\"\n                Padding=\"0\"\n                AbsoluteLayout.LayoutBounds=\"0.339,0.135\"\n                AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                BackgroundColor=\"Red\"\n                BindingContext=\"{x:Reference root}\"\n                FontSize=\"8\"\n                HeightRequest=\"25\"\n                HorizontalTextAlignment=\"Center\"\n                Opacity=\"{x:Binding OpacityLevel,\n                                    Mode=OneWay}\"\n                Text=\"ASP.NET Core Basics\"\n                VerticalTextAlignment=\"Center\"\n                WidthRequest=\"90\">\n                <Label.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"TapGestureRecognizer_Tapped\" />\n                </Label.GestureRecognizers>\n            </Label>\n\n            <!--  SOLID  -->\n            <Label\n                x:Name=\"SOLIDLink\"\n                Padding=\"0\"\n                AbsoluteLayout.LayoutBounds=\"0.477, 0.156\"\n                AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                BackgroundColor=\"Red\"\n                BindingContext=\"{x:Reference root}\"\n                FontSize=\"8\"\n                HeightRequest=\"25\"\n                HorizontalTextAlignment=\"Center\"\n                Opacity=\"{x:Binding OpacityLevel,\n                                    Mode=OneWay}\"\n                Text=\"SOLID\"\n                VerticalTextAlignment=\"Center\"\n                WidthRequest=\"35\">\n                <Label.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"TapGestureRecognizer_Tapped\" />\n                </Label.GestureRecognizers>\n            </Label>\n\n            <!--  ORM  -->\n            <Label\n                x:Name=\"ORMLink\"\n                Padding=\"0\"\n                AbsoluteLayout.LayoutBounds=\"0.3835,0.227\"\n                AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                BackgroundColor=\"Red\"\n                BindingContext=\"{x:Reference root}\"\n                FontSize=\"8\"\n                HeightRequest=\"25\"\n                HorizontalTextAlignment=\"Center\"\n                Opacity=\"{x:Binding OpacityLevel,\n                                    Mode=OneWay}\"\n                Text=\"ORM\"\n                VerticalTextAlignment=\"Center\"\n                WidthRequest=\"33\">\n                <Label.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"TapGestureRecognizer_Tapped\" />\n                </Label.GestureRecognizers>\n            </Label>\n\n            <!--  Dependency Injection  -->\n            <Label\n                x:Name=\"DILink\"\n                Padding=\"0\"\n                AbsoluteLayout.LayoutBounds=\"0.513, 0.242\"\n                AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                BackgroundColor=\"Red\"\n                BindingContext=\"{x:Reference root}\"\n                FontSize=\"8\"\n                HeightRequest=\"25\"\n                HorizontalTextAlignment=\"Center\"\n                Opacity=\"{x:Binding OpacityLevel,\n                                    Mode=OneWay}\"\n                Text=\"Dependency Injection\"\n                VerticalTextAlignment=\"Center\"\n                WidthRequest=\"95\">\n                <Label.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"TapGestureRecognizer_Tapped\" />\n                </Label.GestureRecognizers>\n            </Label>\n\n            <!--  Databases  -->\n            <Label\n                x:Name=\"DatabasesLink\"\n                Padding=\"0\"\n                AbsoluteLayout.LayoutBounds=\"0.368,0.326\"\n                AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                BackgroundColor=\"Red\"\n                BindingContext=\"{x:Reference root}\"\n                FontSize=\"8\"\n                HeightRequest=\"25\"\n                HorizontalTextAlignment=\"Center\"\n                Opacity=\"{x:Binding OpacityLevel,\n                                    Mode=OneWay}\"\n                Text=\"Databases\"\n                VerticalTextAlignment=\"Center\"\n                WidthRequest=\"50\">\n                <Label.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"TapGestureRecognizer_Tapped\" />\n                </Label.GestureRecognizers>\n            </Label>\n\n            <!--  Caching  -->\n            <Label\n                x:Name=\"CachingLink\"\n                Padding=\"0\"\n                AbsoluteLayout.LayoutBounds=\"0.481, 0.34\"\n                AbsoluteLayout.LayoutFlags=\"PositionProportional\"\n                BackgroundColor=\"Red\"\n                BindingContext=\"{x:Reference root}\"\n                FontSize=\"8\"\n                HeightRequest=\"25\"\n                HorizontalTextAlignment=\"Center\"\n                Opacity=\"{x:Binding OpacityLevel,\n                                    Mode=OneWay}\"\n                Text=\"Caching\"\n                VerticalTextAlignment=\"Center\"\n                WidthRequest=\"43\">\n                <Label.GestureRecognizers>\n                    <TapGestureRecognizer Tapped=\"TapGestureRecognizer_Tapped\" />\n                </Label.GestureRecognizers>\n            </Label>\n        </AbsoluteLayout>\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/AbsoluteLayout/ContentViews/DotNetRoadMap.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class DotNetRoadMap : ContentView\n{\n    #region [ Fields ]\n\n    private readonly IAppNavigator appNavigator;\n    #endregion\n\n    #region [ CTor ]\n\n    public DotNetRoadMap()\n    {\n        InitializeComponent();\n\n        appNavigator = ServiceHelper.GetService<IAppNavigator>();\n    }\n\n    #endregion\n\n    #region [ Properties ]\n\n    private bool isLabelHidden;\n    public bool IsLabelHidden\n    {\n        get => isLabelHidden;\n        set\n        {\n            if (isLabelHidden != value)\n            {\n                isLabelHidden = value;\n                OnPropertyChanged();\n            }\n        }\n    }\n\n    private bool isToggleElementsVisible;\n    public bool IsToggleElementsVisible\n    {\n        get => isToggleElementsVisible;\n        set\n        {\n            if (isToggleElementsVisible != value)\n            {\n                isToggleElementsVisible = value;\n                OnPropertyChanged();\n                OpacityLevel = value ? 1 : 0;\n            }\n        }\n    }\n\n\n    private double opacityLevel;\n    public double OpacityLevel\n    {\n        get => opacityLevel;\n        set\n        {\n            if (opacityLevel != value)\n            {\n                opacityLevel = value;\n                OnPropertyChanged();\n            }\n        }\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void root_Loaded(object sender, EventArgs e)\n    {\n    }\n\n    private void TapGestureRecognizer_Tapped(System.Object sender, Microsoft.Maui.Controls.TappedEventArgs e)\n    {\n        if (sender is Label tappedLabel)\n        {\n            string labelName = tappedLabel.StyleId;\n            if (string.IsNullOrEmpty(labelName) || string.IsNullOrWhiteSpace(labelName))\n                return;\n\n            string link = LinkMatching(labelName);\n            if (string.IsNullOrEmpty(link) || string.IsNullOrWhiteSpace(link))\n                return;\n            appNavigator.OpenUrlAsync(link);\n        }\n        else return;\n    }\n    #endregion\n\n    #region [ Methods ]\n\n    string LinkMatching(string labelName)\n        => labelName switch\n        {\n            nameof(CSharpFundamentalLink) => \"https://learn.microsoft.com/en-us/shows/csharp-fundamentals-for-absolute-beginners/\",\n            nameof(CSharpLink) => \"https://learn.microsoft.com/en-us/shows/csharp-fundamentals-for-absolute-beginners/\",\n            nameof(SQLFundamentalsLink) => \"https://learn.microsoft.com/en-us/sql/sql-server/educational-sql-resources?view=sql-server-ver16\",\n            nameof(ASPNETCoreBasicsLink) => \"https://learn.microsoft.com/en-us/aspnet/core/introduction-to-aspnet-core?view=aspnetcore-8.0\",\n            nameof(SOLIDLink) => \"https://learn.microsoft.com/en-us/archive/msdn-magazine/2014/may/csharp-best-practices-dangers-of-violating-solid-principles-in-csharp\",\n            nameof(ORMLink) => \"\",\n            nameof(DILink) => \"https://learn.microsoft.com/en-us/dotnet/core/extensions/dependency-injection\",\n            nameof(DatabasesLink) => \"\",\n            nameof(CachingLink) => \"https://learn.microsoft.com/en-us/dotnet/core/extensions/caching\"\n        };\n\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/Grid/GridPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.GridPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"Grid\"\n    Padding=\"20\"\n    x:DataType=\"core:GridPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <core:DoubleToIntConverter x:Key=\"doubleToInt\" />\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            The Grid class defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader1\">\n            Child views in a Grid can be positioned within their cells by the HorizontalOptions and VerticalOptions properties. These properties can be set to the following fields from the LayoutOptions struct:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter1\">\n            The following XAML creates a Grid with nine equal-size cells, and places a Label in each cell with a different alignment:\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Column</strong>, of type <strong style=\"color:blue\">int</strong>,which is an attached property that indicates the column alignment of a view within a parent Grid. The default value of this property is 0. A validation callback ensures that when the property is set, its value is greater than or equal to 0.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ColumnDefinitions</strong>, of type <strong style=\"color:blue\">ColumnDefinitionCollection</strong>, is a list of ColumnDefinition objects that define the width of the grid columns.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ColumnSpacing</strong>, of type <strong style=\"color:blue\">double</strong>, indicates the distance between grid columns. The default value of this property is 0.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ColumnSpan</strong>, of type <strong style=\"color:blue\">int</strong>, which is an attached property that indicates the total number of columns that a view spans within a parent Grid. The default value of this property is 1. A validation callback ensures that when the property is set, its value is greater than or equal to 1.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Row</strong>, of type <strong style=\"color:blue\">int</strong>, which is an attached property that indicates the row alignment of a view within a parent Grid. The default value of this property is 0. A validation callback ensures that when the property is set, its value is greater than or equal to 0.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">RowDefinitions</strong>, of type <strong style=\"color:blue\">RowDefinitionCollection</strong>, is a list of RowDefinition objects that define the height of the grid rows.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">RowSpacing</strong>, of type <strong style=\"color:blue\">double</strong>, indicates the distance between grid rows. The default value of this property is 0.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">RowSpan</strong>, of type <strong style=\"color:blue\">int</strong>, which is an attached property that indicates the total number of rows that a view spans within a parent Grid. The default value of this property is 1. A validation callback ensures that when the property is set, its value is greater than or equal to 1.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSource1\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Start</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Center</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">End</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Fill</strong>.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Rows and Columns  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Rows and columns\" />\n                                <Label Text=\"By default, a Grid contains one row and one column:\" VerticalTextAlignment=\"Start\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding GridWithOneRowOneColumnXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"The following XAML shows how to create a Grid with three rows and two columns:\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding GridWithThreeRowsTwoColumsXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"The following XAML shows the same Grid definition, and also positions child views in specific Grid cells:\" />\n                                <Grid ColumnDefinitions=\"*, *\" RowDefinitions=\"2*, *, 300\">\n                                    <BoxView HeightRequest=\"400\" Color=\"Green\" />\n                                    <Label\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Row 0, Column 0\"\n                                        VerticalOptions=\"Center\" />\n                                    <BoxView\n                                        Grid.Column=\"1\"\n                                        HeightRequest=\"400\"\n                                        Color=\"Blue\" />\n                                    <Label\n                                        Grid.Column=\"1\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Row 0, Column 1\"\n                                        VerticalOptions=\"Center\" />\n                                    <BoxView\n                                        Grid.Row=\"1\"\n                                        HeightRequest=\"200\"\n                                        Color=\"Teal\" />\n                                    <Label\n                                        Grid.Row=\"1\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Row 1, Column 0\"\n                                        VerticalOptions=\"Center\" />\n                                    <BoxView\n                                        Grid.Row=\"1\"\n                                        Grid.Column=\"1\"\n                                        HeightRequest=\"200\"\n                                        Color=\"Purple\" />\n                                    <Label\n                                        Grid.Row=\"1\"\n                                        Grid.Column=\"1\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Row1, Column 1\"\n                                        VerticalOptions=\"Center\" />\n                                    <BoxView\n                                        Grid.Row=\"2\"\n                                        Grid.ColumnSpan=\"2\"\n                                        Color=\"Red\" />\n                                    <Label\n                                        Grid.Row=\"2\"\n                                        Grid.ColumnSpan=\"2\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Row 2, Columns 0 and 1\"\n                                        VerticalOptions=\"Center\" />\n                                </Grid>\n                                <core:SourceCodeExpander Code=\"{x:Binding GridCellsXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"The equivalent C# code is:\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding GridCellsCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Simplify row and column definitions\" />\n                        <!--  Simplify row and column definitions  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <core:SourceCodeExpander Code=\"{x:Binding GridCellsXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Space between rows and columns  -->\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Space between rows and columns\" />\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Grid ColumnSpacing=\"8\" RowSpacing=\"8\">\n                                    <Grid.RowDefinitions>\n                                        <RowDefinition Height=\"2*\" />\n                                        <RowDefinition />\n                                        <RowDefinition Height=\"300\" />\n                                    </Grid.RowDefinitions>\n                                    <Grid.ColumnDefinitions>\n                                        <ColumnDefinition />\n                                        <ColumnDefinition />\n                                    </Grid.ColumnDefinitions>\n                                    <BoxView HeightRequest=\"400\" Color=\"Green\" />\n                                    <Label\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Row 0, Column 0\"\n                                        VerticalOptions=\"Center\" />\n                                    <BoxView\n                                        Grid.Column=\"1\"\n                                        HeightRequest=\"400\"\n                                        Color=\"Blue\" />\n                                    <Label\n                                        Grid.Column=\"1\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Row 0, Column 1\"\n                                        VerticalOptions=\"Center\" />\n                                    <BoxView\n                                        Grid.Row=\"1\"\n                                        HeightRequest=\"200\"\n                                        Color=\"Teal\" />\n                                    <Label\n                                        Grid.Row=\"1\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Row 1, Column 0\"\n                                        VerticalOptions=\"Center\" />\n                                    <BoxView\n                                        Grid.Row=\"1\"\n                                        Grid.Column=\"1\"\n                                        HeightRequest=\"200\"\n                                        Color=\"Purple\" />\n                                    <Label\n                                        Grid.Row=\"1\"\n                                        Grid.Column=\"1\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Row1, Column 1\"\n                                        VerticalOptions=\"Center\" />\n                                    <BoxView\n                                        Grid.Row=\"2\"\n                                        Grid.ColumnSpan=\"2\"\n                                        Color=\"Red\" />\n                                    <Label\n                                        Grid.Row=\"2\"\n                                        Grid.ColumnSpan=\"2\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Row 2, Columns 0 and 1\"\n                                        VerticalOptions=\"Center\" />\n                                </Grid>\n                                <core:SourceCodeExpander Code=\"{x:Binding GridSpaceBetweenRowColumnXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"The equivalent C# code is:\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding GridSpaceBetweenRowColumnXamlCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Alignment  -->\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Alignment\" />\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter1}\"\n                                    Header=\"{x:StaticResource PropertiesListHeader1}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSource1}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Grid>\n                                    <Grid.RowDefinitions>\n                                        <RowDefinition />\n                                        <RowDefinition />\n                                        <RowDefinition />\n                                    </Grid.RowDefinitions>\n                                    <Grid.ColumnDefinitions>\n                                        <ColumnDefinition />\n                                        <ColumnDefinition />\n                                        <ColumnDefinition />\n                                    </Grid.ColumnDefinitions>\n\n                                    <BoxView HeightRequest=\"300\" Color=\"AliceBlue\" />\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Text=\"Upper left\"\n                                        TextColor=\"Black\"\n                                        VerticalOptions=\"Start\" />\n                                    <BoxView\n                                        Grid.Column=\"1\"\n                                        HeightRequest=\"300\"\n                                        Color=\"LightSkyBlue\" />\n                                    <Label\n                                        Grid.Column=\"1\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Upper center\"\n                                        TextColor=\"Black\"\n                                        VerticalOptions=\"Start\" />\n                                    <BoxView\n                                        Grid.Column=\"2\"\n                                        HeightRequest=\"300\"\n                                        Color=\"CadetBlue\" />\n                                    <Label\n                                        Grid.Column=\"2\"\n                                        HorizontalOptions=\"End\"\n                                        Text=\"Upper right\"\n                                        TextColor=\"Black\"\n                                        VerticalOptions=\"Start\" />\n                                    <BoxView\n                                        Grid.Row=\"1\"\n                                        HeightRequest=\"300\"\n                                        Color=\"CornflowerBlue\" />\n                                    <Label\n                                        Grid.Row=\"1\"\n                                        HorizontalOptions=\"Start\"\n                                        Text=\"Center left\"\n                                        TextColor=\"Black\"\n                                        VerticalOptions=\"Center\" />\n                                    <BoxView\n                                        Grid.Row=\"1\"\n                                        Grid.Column=\"1\"\n                                        HeightRequest=\"300\"\n                                        Color=\"DodgerBlue\" />\n                                    <Label\n                                        Grid.Row=\"1\"\n                                        Grid.Column=\"1\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Center center\"\n                                        TextColor=\"Black\"\n                                        VerticalOptions=\"Center\" />\n                                    <BoxView\n                                        Grid.Row=\"1\"\n                                        Grid.Column=\"2\"\n                                        HeightRequest=\"300\"\n                                        Color=\"DarkSlateBlue\" />\n                                    <Label\n                                        Grid.Row=\"1\"\n                                        Grid.Column=\"2\"\n                                        HorizontalOptions=\"End\"\n                                        Text=\"Center right\"\n                                        TextColor=\"Black\"\n                                        VerticalOptions=\"Center\" />\n                                    <BoxView\n                                        Grid.Row=\"2\"\n                                        HeightRequest=\"300\"\n                                        Color=\"SteelBlue\" />\n                                    <Label\n                                        Grid.Row=\"2\"\n                                        HorizontalOptions=\"Start\"\n                                        Text=\"Lower left\"\n                                        TextColor=\"Black\"\n                                        VerticalOptions=\"End\" />\n                                    <BoxView\n                                        Grid.Row=\"2\"\n                                        Grid.Column=\"1\"\n                                        HeightRequest=\"300\"\n                                        Color=\"LightBlue\" />\n                                    <Label\n                                        Grid.Row=\"2\"\n                                        Grid.Column=\"1\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Lower center\"\n                                        TextColor=\"Black\"\n                                        VerticalOptions=\"End\" />\n                                    <BoxView\n                                        Grid.Row=\"2\"\n                                        Grid.Column=\"2\"\n                                        HeightRequest=\"300\"\n                                        Color=\"BlueViolet\" />\n                                    <Label\n                                        Grid.Row=\"2\"\n                                        Grid.Column=\"2\"\n                                        HorizontalOptions=\"End\"\n                                        Text=\"Lower right\"\n                                        TextColor=\"Black\"\n                                        VerticalOptions=\"End\" />\n                                </Grid>\n                                <core:SourceCodeExpander Code=\"{x:Binding GridWithNineCellsXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"The equivalent C# code is:\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding GridWithNineCellsCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Nested Grid objects  -->\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Nested Grid objects \" />\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Text=\"The following XAML shows an example of nesting Grid objects:\" />\n                                <Grid>\n                                    <Grid.RowDefinitions>\n                                        <RowDefinition Height=\"500\" />\n                                        <RowDefinition Height=\"Auto\" />\n                                    </Grid.RowDefinitions>\n\n                                    <BoxView x:Name=\"boxView\" Color=\"Black\" />\n                                    <Grid Grid.Row=\"1\" Margin=\"20\">\n                                        <Grid.RowDefinitions>\n                                            <RowDefinition />\n                                            <RowDefinition />\n                                            <RowDefinition />\n                                            <RowDefinition />\n                                            <RowDefinition />\n                                            <RowDefinition />\n                                        </Grid.RowDefinitions>\n                                        <Slider x:Name=\"redSlider\" ValueChanged=\"OnSliderValueChanged\" />\n                                        <Label Grid.Row=\"1\" Text=\"{Binding Source={x:Reference redSlider}, Path=Value, Converter={StaticResource doubleToInt}, ConverterParameter=255, StringFormat='Red = {0}'}\" />\n                                        <Slider\n                                            x:Name=\"greenSlider\"\n                                            Grid.Row=\"2\"\n                                            ValueChanged=\"OnSliderValueChanged\" />\n                                        <Label Grid.Row=\"3\" Text=\"{Binding Source={x:Reference greenSlider}, Path=Value, Converter={StaticResource doubleToInt}, ConverterParameter=255, StringFormat='Green = {0}'}\" />\n                                        <Slider\n                                            x:Name=\"blueSlider\"\n                                            Grid.Row=\"4\"\n                                            ValueChanged=\"OnSliderValueChanged\" />\n                                        <Label Grid.Row=\"5\" Text=\"{Binding Source={x:Reference blueSlider}, Path=Value, Converter={StaticResource doubleToInt}, ConverterParameter=255, StringFormat='Blue = {0}'}\" />\n                                    </Grid>\n                                </Grid>\n                                <core:SourceCodeExpander Code=\"{x:Binding GridObjectXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"The equivalent C# code is:\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding GridObjectCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/Grid/GridPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class GridPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly GridPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public GridPage(GridPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n\n        Slider redSlider = new();\n        redSlider.ValueChanged += OnSliderValueChanged;\n\n        Slider blueSlider = new();\n        blueSlider.ValueChanged += OnSliderValueChanged;\n\n        Slider greenSlider = new();\n        greenSlider.ValueChanged += OnSliderValueChanged;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    void OnSliderValueChanged(object sender, ValueChangedEventArgs e)\n    {\n        boxView.Color = new Color((float)redSlider.Value, (float)greenSlider.Value, (float)blueSlider.Value);\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/HorizontalStackLayout/HorizontalStackLayoutPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.HorizontalStackLayoutPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"HorizontalStackLayout\"\n    Padding=\"20\"\n    x:DataType=\"core:HorizontalStackLayoutPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            HorizontalStackLayout defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeaderPositionAndSizeChildViews\">\n            A HorizontalStackLayout only respects the alignment preferences on child views that are in the opposite direction to the orientation of the layout. Therefore, the Label child views within the HorizontalStackLayout set their VerticalOptions properties to one of the alignment fields:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Spacing</strong>, of type <strong style=\"color:blue\">double </strong>, indicates the amount of space between each child view. The default value of this property is 0.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n        <x:Array x:Key=\"PropertiesItemsSourcePositionAndSizeChildViews\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Start</strong>, which positions the Label at the start of the HorizontalStackLayout.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Center</strong>, which vertically centers the Label in the HorizontalStackLayout.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">End</strong>, which positions the Label at the end of the HorizontalStackLayout.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Fill</strong>, which ensures that the Label fills the height of the HorizontalStackLayout.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <HorizontalStackLayout Margin=\"20\">\n                                    <Rectangle\n                                        Fill=\"Red\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"30\" />\n                                    <Label\n                                        FontSize=\"18\"\n                                        Text=\"Red\"\n                                        TextColor=\"Blue\" />\n                                </HorizontalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding HorizontalStackLayoutRectangleLabelXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Space between child views  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Space between child views\" />\n                                <HorizontalStackLayout Margin=\"20\" Spacing=\"10\">\n                                    <Rectangle\n                                        Fill=\"Red\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"30\" />\n                                    <Label\n                                        FontSize=\"18\"\n                                        Text=\"Red\"\n                                        TextColor=\"Blue\" />\n                                </HorizontalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding SpaceBetweenChildViewsXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Position and size child views  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Position and size child views\" />\n                                <HorizontalStackLayout Margin=\"20\" HeightRequest=\"200\">\n                                    <Label\n                                        BackgroundColor=\"Gray\"\n                                        Text=\"Start\"\n                                        TextColor=\"Blue\"\n                                        VerticalOptions=\"Start\" />\n                                    <Label\n                                        BackgroundColor=\"Gray\"\n                                        Text=\"Center\"\n                                        TextColor=\"Blue\"\n                                        VerticalOptions=\"Center\" />\n                                    <Label\n                                        BackgroundColor=\"Gray\"\n                                        Text=\"End\"\n                                        TextColor=\"Blue\"\n                                        VerticalOptions=\"End\" />\n                                    <Label\n                                        BackgroundColor=\"Gray\"\n                                        Text=\"Fill\"\n                                        TextColor=\"Blue\"\n                                        VerticalOptions=\"Fill\" />\n                                </HorizontalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding PositionAndSizeChildViewsXamlCode}\" CodeType=\"Xaml\" />\n                                <CollectionView\n                                    Header=\"{x:StaticResource PropertiesListHeaderPositionAndSizeChildViews}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSourcePositionAndSizeChildViews}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Nest HorizontalStackLayout objects  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Nest HorizontalStackLayout objects\" />\n                                <HorizontalStackLayout Margin=\"20\" Spacing=\"6\">\n                                    <Label Text=\"Primary colors:\" TextColor=\"Blue\" />\n                                    <VerticalStackLayout Spacing=\"6\">\n                                        <Rectangle\n                                            Fill=\"Red\"\n                                            HeightRequest=\"30\"\n                                            WidthRequest=\"30\" />\n                                        <Rectangle\n                                            Fill=\"Yellow\"\n                                            HeightRequest=\"30\"\n                                            WidthRequest=\"30\" />\n                                        <Rectangle\n                                            Fill=\"Blue\"\n                                            HeightRequest=\"30\"\n                                            WidthRequest=\"30\" />\n                                    </VerticalStackLayout>\n                                    <Label Text=\"Secondary colors:\" TextColor=\"Blue\" />\n                                    <VerticalStackLayout Spacing=\"6\">\n                                        <Rectangle\n                                            Fill=\"Green\"\n                                            HeightRequest=\"30\"\n                                            WidthRequest=\"30\" />\n                                        <Rectangle\n                                            Fill=\"Orange\"\n                                            HeightRequest=\"30\"\n                                            WidthRequest=\"30\" />\n                                        <Rectangle\n                                            Fill=\"Purple\"\n                                            HeightRequest=\"30\"\n                                            WidthRequest=\"30\" />\n                                    </VerticalStackLayout>\n                                </HorizontalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding NestHorizontalStackLayoutObjectXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/HorizontalStackLayout/HorizontalStackLayoutPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class HorizontalStackLayoutPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly HorizontalStackLayoutPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public HorizontalStackLayoutPage(HorizontalStackLayoutPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/StackLayout/StackLayoutPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.StackLayoutPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"StackLayout\"\n    Padding=\"20\"\n    x:DataType=\"core:StackLayoutPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            The StackLayout class defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeaderPositionAndSizeOfChildViews\">\n            A StackLayout only respects the alignment preferences on child views that are in the opposite direction to the StackLayout orientation. Therefore, the Label child views within the vertically oriented StackLayout set their HorizontalOptions properties to one of the alignment fields:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooterPositionAndSizeOfChildViews\">\n            The equivalent C# code is:\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Orientation</strong>, of type <strong style=\"color:blue\">StackOrientation </strong>, represents the direction in which child views are positioned. The default value of this property is <strong style=\"color:blue\">Vertical</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Spacing</strong>, of type <strong style=\"color:blue\">double</strong>, indicates the amount of space between each child view. The default value of this property is 0.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSourcePositionAndSizeOfChildViews\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Start</strong>, which positions the Label on the left-hand side of the StackLayout.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Center</strong>, which centers the Label in the StackLayout.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">End</strong>, which positions the Label on the right-hand side of the StackLayout.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Fill</strong>, which ensures that the Label fills the width of the StackLayout.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <CollectionView\n                                Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                Header=\"{x:StaticResource PropertiesListHeader}\"\n                                ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                                Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        </Border>\n                        <!--  Vertical orientation  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Vertical orientation\" />\n                                <StackLayout Margin=\"20\">\n                                    <Label Text=\"Primary colors\" />\n                                    <BoxView HeightRequest=\"40\" Color=\"Red\" />\n                                    <BoxView HeightRequest=\"40\" Color=\"Yellow\" />\n                                    <BoxView HeightRequest=\"40\" Color=\"Blue\" />\n                                    <Label Text=\"Secondary colors\" />\n                                    <BoxView HeightRequest=\"40\" Color=\"Green\" />\n                                    <BoxView HeightRequest=\"40\" Color=\"Orange\" />\n                                    <BoxView HeightRequest=\"40\" Color=\"Purple\" />\n                                </StackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding VerticalOrientationXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"The equivalent C# code is:\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding VerticalOrientationCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Horizontal orientation  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Horizontal orientation\" />\n                                <StackLayout\n                                    Margin=\"20\"\n                                    HorizontalOptions=\"Center\"\n                                    Orientation=\"Horizontal\">\n                                    <BoxView\n                                        HeightRequest=\"120\"\n                                        WidthRequest=\"120\"\n                                        Color=\"Red\" />\n                                    <BoxView\n                                        HeightRequest=\"120\"\n                                        WidthRequest=\"120\"\n                                        Color=\"Yellow\" />\n                                    <BoxView\n                                        HeightRequest=\"120\"\n                                        WidthRequest=\"120\"\n                                        Color=\"Blue\" />\n                                    <BoxView\n                                        HeightRequest=\"120\"\n                                        WidthRequest=\"120\"\n                                        Color=\"Green\" />\n                                    <BoxView\n                                        HeightRequest=\"120\"\n                                        WidthRequest=\"120\"\n                                        Color=\"Orange\" />\n                                    <BoxView\n                                        HeightRequest=\"120\"\n                                        WidthRequest=\"120\"\n                                        Color=\"Purple\" />\n                                </StackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding HorizontalOrientationXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"The equivalent C# code is:\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding HorizontalOrientationCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Space between child views  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Space between child views\" />\n                                <StackLayout Margin=\"20\" Spacing=\"8\">\n                                    <Label Text=\"Primary colors\" />\n                                    <BoxView HeightRequest=\"40\" Color=\"Red\" />\n                                    <BoxView HeightRequest=\"40\" Color=\"Yellow\" />\n                                    <BoxView HeightRequest=\"40\" Color=\"Blue\" />\n                                    <Label Text=\"Secondary colors\" />\n                                    <BoxView HeightRequest=\"40\" Color=\"Green\" />\n                                    <BoxView HeightRequest=\"40\" Color=\"Orange\" />\n                                    <BoxView HeightRequest=\"40\" Color=\"Purple\" />\n                                </StackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding SpaceBetweenChildViewsXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"The equivalent C# code is:\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding SpaceBetweenChildViewsXamlCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Position and size of child views  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Position and size of child views\" />\n                                <StackLayout Margin=\"20\" Spacing=\"6\">\n                                    <Label\n                                        BackgroundColor=\"Gray\"\n                                        HorizontalOptions=\"Start\"\n                                        Text=\"Start\" />\n                                    <Label\n                                        BackgroundColor=\"Gray\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Center\" />\n                                    <Label\n                                        BackgroundColor=\"Gray\"\n                                        HorizontalOptions=\"End\"\n                                        Text=\"End\" />\n                                    <Label\n                                        BackgroundColor=\"Gray\"\n                                        HorizontalOptions=\"Fill\"\n                                        Text=\"Fill\" />\n                                </StackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding PositionAndSizeOfChildViewsXamlCode}\" CodeType=\"Xaml\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooterPositionAndSizeOfChildViews}\"\n                                    Header=\"{x:StaticResource PropertiesListHeaderPositionAndSizeOfChildViews}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSourcePositionAndSizeOfChildViews}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding PositionAndSizeOfChildViewsCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Nested StackLayout objects  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Nested StackLayout objects\" />\n                                <StackLayout Margin=\"20\" Spacing=\"8\">\n                                    <Label Text=\"Primary colors\" />\n                                    <Frame Padding=\"8\" BorderColor=\"white\">\n                                        <StackLayout Orientation=\"Horizontal\" Spacing=\"15\">\n                                            <BoxView WidthRequest=\"40\" Color=\"Red\" />\n                                            <Label\n                                                FontSize=\"18\"\n                                                Text=\"Red\"\n                                                VerticalOptions=\"Center\" />\n                                        </StackLayout>\n                                    </Frame>\n                                    <Frame Padding=\"8\" BorderColor=\"white\">\n                                        <StackLayout Orientation=\"Horizontal\" Spacing=\"15\">\n                                            <BoxView WidthRequest=\"40\" Color=\"Yellow\" />\n                                            <Label\n                                                FontSize=\"18\"\n                                                Text=\"Yellow\"\n                                                VerticalOptions=\"Center\" />\n                                        </StackLayout>\n                                    </Frame>\n                                    <Frame Padding=\"8\" BorderColor=\"white\">\n                                        <StackLayout Orientation=\"Horizontal\" Spacing=\"15\">\n                                            <BoxView WidthRequest=\"40\" Color=\"Blue\" />\n                                            <Label\n                                                FontSize=\"18\"\n                                                Text=\"Blue\"\n                                                VerticalOptions=\"Center\" />\n                                        </StackLayout>\n                                    </Frame>\n                                </StackLayout>\n                                <StackLayout Margin=\"20\" Spacing=\"8\">\n                                    <Label Text=\"Secondary colors\" />\n                                    <Frame Padding=\"8\" BorderColor=\"white\">\n                                        <StackLayout Orientation=\"Horizontal\" Spacing=\"15\">\n                                            <BoxView WidthRequest=\"40\" Color=\"Green\" />\n                                            <Label\n                                                FontSize=\"18\"\n                                                Text=\"Green\"\n                                                VerticalOptions=\"Center\" />\n                                        </StackLayout>\n                                    </Frame>\n                                    <Frame Padding=\"8\" BorderColor=\"white\">\n                                        <StackLayout Orientation=\"Horizontal\" Spacing=\"15\">\n                                            <BoxView WidthRequest=\"40\" Color=\"Orange\" />\n                                            <Label\n                                                FontSize=\"18\"\n                                                Text=\"Orange\"\n                                                VerticalOptions=\"Center\" />\n                                        </StackLayout>\n                                    </Frame>\n                                    <Frame Padding=\"8\" BorderColor=\"white\">\n                                        <StackLayout Orientation=\"Horizontal\" Spacing=\"15\">\n                                            <BoxView WidthRequest=\"40\" Color=\"Purple\" />\n                                            <Label\n                                                FontSize=\"18\"\n                                                Text=\"Purple\"\n                                                VerticalOptions=\"Center\" />\n                                        </StackLayout>\n                                    </Frame>\n                                </StackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding NestedStackLayoutObjectsXamlCode}\" CodeType=\"Xaml\" />\n                                <Label Text=\"The equivalent C# code is:\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding NestedStackLayoutObjectCSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/StackLayout/StackLayoutPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class StackLayoutPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly StackLayoutPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public StackLayoutPage(StackLayoutPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/VerticalStackLayout/VerticalStackLayoutPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.VerticalStackLayoutPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"VerticalStackLayout\"\n    Padding=\"20\"\n    x:DataType=\"core:VerticalStackLayoutPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            The VerticalStackLayout defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"ReportIssueToMauiTeamLink\">\n            https://github.com/dotnet/maui/issues/new/choose\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeaderPositionAndSizeChildViews\">\n            A VerticalStackLayout only respects the alignment preferences on child views that are in the opposite direction to the orientation of the layout. Therefore, the Label child views within the VerticalStackLayout set their HorizontalOptions properties to one of the alignment fields:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            This property is backed by a BindableProperty object, which means that it can be the target of data bindings and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Spacing</strong>, of type <strong style=\"color:blue\">double </strong>, indicates the amount of space between each child view. The default value of this property is 0.\n                            ]]>\n            </x:String>\n\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSourcePositionAndSizeChildViews\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Start</strong>, which positions the Label on the left-hand side of the VerticalStackLayout.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Center</strong>, which centers the Label in the VerticalStackLayout.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">End</strong>, which positions the Label on the right-hand side of the VerticalStackLayout.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Fill</strong>, which ensures that the Label fills the width of the VerticalStackLayout.\n                            ]]>\n            </x:String>\n\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlIssueItemTemplate\" x:DataType=\"core:ControlIssueModel\">\n            <Border\n                Padding=\"20\"\n                BackgroundColor=\"#0a0c10\"\n                StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Micro\"\n                        LineBreakMode=\"CharacterWrap\"\n                        MaxLines=\"2\"\n                        Text=\"{x:Binding Title,\n                                         Mode=OneWay}\"\n                        TextDecorations=\"Underline\"\n                        ToolTipProperties.Text=\"{x:Binding Title,\n                                                           Mode=OneWay}\" />\n                    <HorizontalStackLayout Spacing=\"8\">\n                        <ImageButton\n                            CornerRadius=\"25\"\n                            HeightRequest=\"10\"\n                            Source=\"{x:Binding AvatarUrl,\n                                               Mode=OneWay}\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"10\" />\n                        <Label Text=\"{x:Binding OwnerName, Mode=OneWay}\" VerticalOptions=\"Center\" />\n                    </HorizontalStackLayout>\n                    <Label HorizontalOptions=\"End\" Text=\"{x:Binding CreatedDate, Mode=OneWay}\" />\n                </VerticalStackLayout>\n            </Border>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"ControlIssueLayout\"\n            ItemSpacing=\"5\"\n            Orientation=\"Vertical\" />\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <RefreshView Command=\"{x:Binding RefreshCommand}\" IsRefreshing=\"{x:Binding IsBusy, Mode=OneWay}\">\n            <ScrollView>\n                <Grid ColumnDefinitions=\"310, *\" ColumnSpacing=\"20\">\n                    <Grid RowDefinitions=\"90, 540, 120\" RowSpacing=\"10\">\n                        <Border\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Grid>\n                                <HorizontalStackLayout Spacing=\"10\">\n                                    <Image\n                                        HeightRequest=\"25\"\n                                        Source=\"github_logo.png\"\n                                        VerticalOptions=\"Center\"\n                                        WidthRequest=\"25\" />\n\n                                    <Label\n                                        HorizontalOptions=\"Start\"\n                                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                        Text=\"Issues\"\n                                        VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <Border\n                                    BackgroundColor=\"OrangeRed\"\n                                    HeightRequest=\"40\"\n                                    HorizontalOptions=\"End\"\n                                    StrokeShape=\"RoundRectangle 20\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"40\">\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"{x:Binding ControlIssues.Count,\n                                                         Mode=OneWay}\"\n                                        VerticalOptions=\"Center\" />\n                                </Border>\n                            </Grid>\n                        </Border>\n                        <CollectionView\n                            Grid.Row=\"1\"\n                            Margin=\"0,0,0,0\"\n                            EmptyView=\"{x:Binding EmptyViewText,\n                                                  Mode=OneWay}\"\n                            ItemTemplate=\"{x:StaticResource ControlIssueItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ControlIssueLayout}\"\n                            ItemsSource=\"{x:Binding ControlIssues,\n                                                    Mode=OneWay}\"\n                            SelectedItem=\"{x:Binding SelectedControlIssue,\n                                                     Mode=TwoWay}\"\n                            SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                            SelectionChangedCommandParameter=\"{x:Binding SelectedControlIssue.IssueLinkUrl,\n                                                                         Mode=OneWay}\"\n                            SelectionMode=\"Single\"\n                            VerticalOptions=\"Start\" />\n                        <Border\n                            Grid.Row=\"2\"\n                            Margin=\"0,0,0,10\"\n                            Padding=\"20\"\n                            BackgroundColor=\"#272b33\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"5\">\n                                <Label\n                                    HorizontalOptions=\"Center\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"Found a new bug?\"\n                                    TextColor=\"White\"\n                                    TextDecorations=\"Underline\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:StaticResource ReportIssueToMauiTeamLink}\"\n                                    Text=\"Report to the MAUI team\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </Grid>\n                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"20\">\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Subtitle\"\n                                    Text=\"{x:StaticResource PropertiesListHeader}\"\n                                    TextDecorations=\"Underline\" />\n                                <CollectionView\n                                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <VerticalStackLayout Margin=\"20\">\n                                    <Label Text=\"Primary colors\" TextColor=\"Blue\" />\n                                    <Rectangle\n                                        Fill=\"Red\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"300\" />\n                                    <Rectangle\n                                        Fill=\"Yellow\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"300\" />\n                                    <Rectangle\n                                        Fill=\"Blue\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"300\" />\n                                    <Label Text=\"Secondary colors\" TextColor=\"Blue\" />\n                                    <Rectangle\n                                        Fill=\"Green\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"300\" />\n                                    <Rectangle\n                                        Fill=\"Orange\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"300\" />\n                                    <Rectangle\n                                        Fill=\"Purple\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"300\" />\n                                </VerticalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding VerticalStackLayoutLabelRectangleXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Space between child views  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Space between child views\" />\n                                <VerticalStackLayout Margin=\"20\" Spacing=\"8\">\n                                    <Label Text=\"Primary colors\" TextColor=\"Blue\" />\n                                    <Rectangle\n                                        Fill=\"Red\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"300\" />\n                                    <Rectangle\n                                        Fill=\"Yellow\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"300\" />\n                                    <Rectangle\n                                        Fill=\"Blue\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"300\" />\n                                    <Label Text=\"Secondary colors\" TextColor=\"Blue\" />\n                                    <Rectangle\n                                        Fill=\"Green\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"300\" />\n                                    <Rectangle\n                                        Fill=\"Orange\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"300\" />\n                                    <Rectangle\n                                        Fill=\"Purple\"\n                                        HeightRequest=\"30\"\n                                        WidthRequest=\"300\" />\n                                </VerticalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding SpaceBetweenChildViewsXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Position and size child views  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Position and size child views\" />\n                                <VerticalStackLayout Margin=\"20\" Spacing=\"6\">\n                                    <Label\n                                        BackgroundColor=\"Gray\"\n                                        HorizontalOptions=\"Start\"\n                                        Text=\"Start\"\n                                        TextColor=\"blue\" />\n                                    <Label\n                                        BackgroundColor=\"Gray\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Center\"\n                                        TextColor=\"blue\" />\n                                    <Label\n                                        BackgroundColor=\"Gray\"\n                                        HorizontalOptions=\"End\"\n                                        Text=\"End\"\n                                        TextColor=\"blue\" />\n                                    <Label\n                                        BackgroundColor=\"Gray\"\n                                        HorizontalOptions=\"Fill\"\n                                        Text=\"Fill\"\n                                        TextColor=\"blue\" />\n                                </VerticalStackLayout>\n                                <CollectionView\n                                    Header=\"{x:StaticResource PropertiesListHeaderPositionAndSizeChildViews}\"\n                                    ItemsSource=\"{x:StaticResource PropertiesItemsSourcePositionAndSizeChildViews}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding SpaceBetweenChildViewsXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <!--  Nest VerticalStackLayout objects  -->\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"20\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Nest VerticalStackLayout objects\" />\n                                <VerticalStackLayout Margin=\"20\" Spacing=\"8\">\n                                    <Label Text=\"Primary colors\" TextColor=\"Blue\" />\n                                    <Frame Padding=\"8\" BorderColor=\"white\">\n                                        <HorizontalStackLayout Spacing=\"15\">\n                                            <Rectangle\n                                                Fill=\"Red\"\n                                                HeightRequest=\"30\"\n                                                WidthRequest=\"30\" />\n                                            <Label\n                                                FontSize=\"18\"\n                                                Text=\"Red\"\n                                                TextColor=\"Blue\" />\n                                        </HorizontalStackLayout>\n                                    </Frame>\n                                    <Frame Padding=\"8\" BorderColor=\"white\">\n                                        <HorizontalStackLayout Spacing=\"15\">\n                                            <Rectangle\n                                                Fill=\"Yellow\"\n                                                HeightRequest=\"30\"\n                                                WidthRequest=\"30\" />\n                                            <Label\n                                                FontSize=\"18\"\n                                                Text=\"Yellow\"\n                                                TextColor=\"Blue\" />\n                                        </HorizontalStackLayout>\n                                    </Frame>\n                                    <Frame Padding=\"8\" BorderColor=\"white\">\n                                        <HorizontalStackLayout Spacing=\"15\">\n                                            <Rectangle\n                                                Fill=\"Blue\"\n                                                HeightRequest=\"30\"\n                                                WidthRequest=\"30\" />\n                                            <Label\n                                                FontSize=\"18\"\n                                                Text=\"Blue\"\n                                                TextColor=\"Blue\" />\n                                        </HorizontalStackLayout>\n                                    </Frame>\n                                </VerticalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding SpaceBetweenChildViewsXamlCode}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n        </RefreshView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/BuiltIn/Layouts/VerticalStackLayout/VerticalStackLayoutPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class VerticalStackLayoutPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly VerticalStackLayoutPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public VerticalStackLayoutPage(VerticalStackLayoutPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/CardsByGroupPage.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.CardsByGroupPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:acrylic=\"clr-namespace:Xe.AcrylicView;assembly=Xe.AcrylicView\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    xmlns:skia=\"clr-namespace:SkiaSharp.Extended.UI.Controls;assembly=SkiaSharp.Extended.UI\"\n    xmlns:skiaConverters=\"clr-namespace:SkiaSharp.Extended.UI.Controls.Converters;assembly=SkiaSharp.Extended.UI\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"{x:Binding ControlGroup.Title}\"\n    Padding=\"10\"\n    x:DataType=\"app:CardsByGroupPageViewModel\"\n    BackgroundColor=\"#272727\"\n    Shell.TabBarIsVisible=\"False\"\n    SizeChanged=\"BasePage_SizeChanged\">\n    <Shell.SearchHandler>\n        <app:CardsSearchHandler\n            Cards=\"{x:Binding ControlGroupList,\n                              Mode=TwoWay}\"\n            ClearIcon=\"{x:StaticResource SearchBarDismissIcon}\"\n            Placeholder=\"Search Controls\"\n            QueryIcon=\"{x:StaticResource SearchBarSearchIcon}\"\n            SelectCard=\"CardsSearchHandler_SelectCard\"\n            ShowsResults=\"True\">\n            <app:CardsSearchHandler.ItemTemplate>\n                <DataTemplate x:DataType=\"core:IGalleryCardInfo\">\n                    <Grid\n                        Margin=\"5\"\n                        ColumnDefinitions=\"40,Auto\"\n                        RowDefinitions=\"Auto\">\n                        <Image\n                            HeightRequest=\"15\"\n                            Source=\"{x:Binding ControlIcon}\"\n                            WidthRequest=\"15\" />\n                        <Label\n                            Grid.Column=\"1\"\n                            FontSize=\"18\"\n                            HorizontalTextAlignment=\"Center\"\n                            Text=\"{x:Binding ControlName}\"\n                            VerticalTextAlignment=\"Center\" />\n                    </Grid>\n                </DataTemplate>\n            </app:CardsSearchHandler.ItemTemplate>\n        </app:CardsSearchHandler>\n    </Shell.SearchHandler>\n    <core:BasePage.Resources>\n        <core:ImageSourceToBoolConverter x:Key=\"ImageSourceToBoolConverter\" />\n\n        <app:CardByGroupPageTypePickerConverter x:Key=\"CardByGroupPageTypePickerConverter\" />\n\n        <DataTemplate x:Key=\"BuiltInCardItemTemplate\" x:DataType=\"core:IGalleryCardInfo\">\n            <app:ControlCardContentView\n                ComponentData=\"{x:Binding}\"\n                DetailClicked=\"ControlCardContentView_DetailClicked\"\n                DetailInNewWindowClicked=\"ControlCardContentView_DetailInNewWindowClicked\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"GithubCardItemTemplate\" x:DataType=\"core:IGithubGalleryCardInfo\">\n            <app:GithubCardContentView\n                ComponentData=\"{x:Binding}\"\n                DetailClicked=\"ControlCardContentView_DetailClicked\"\n                DetailInNewWindowClicked=\"ControlCardContentView_DetailInNewWindowClicked\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"MaterialUICardItemTemplate\" x:DataType=\"core:IMaterialUIGalleryCardInfo\">\n            <app:MaterialUICardContentView\n                ComponentData=\"{x:Binding}\"\n                DetailClicked=\"ControlCardContentView_DetailClicked\"\n                DetailInNewWindowClicked=\"ControlCardContentView_DetailInNewWindowClicked\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"SyncfusionCardItemTemplate\" x:DataType=\"core:IGalleryCardInfo\">\n            <app:SyncfusionCardContentView\n                ComponentData=\"{x:Binding}\"\n                DetailClicked=\"ControlCardContentView_DetailClicked\"\n                DetailInNewWindowClicked=\"ControlCardContentView_DetailInNewWindowClicked\" />\n        </DataTemplate>\n\n        <app:BrandCardTemplateSelector\n            x:Key=\"BrandCardTemplateSelector\"\n            BuiltInCardTemplate=\"{x:StaticResource BuiltInCardItemTemplate}\"\n            GithubCardTemplate=\"{x:StaticResource GithubCardItemTemplate}\"\n            MaterialUICardTemplate=\"{x:StaticResource MaterialUICardItemTemplate}\"\n            SyncfustionCardTemplate=\"{x:StaticResource SyncfusionCardItemTemplate}\" />\n\n        <toolkit:IsStringNotNullOrEmptyConverter x:Key=\"IsStringNotNullOrEmptyConverter\" />\n    </core:BasePage.Resources>\n    <core:BasePage.ToolbarItems>\n        <!--<ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlGroup.MicrosoftStoreLink}\"\n            IconImageSource=\"{x:StaticResource MicrosoftStoreIcon}\"\n            IsEnabled=\"{x:Binding ControlGroup.MicrosoftStoreLink,\n                                  Mode=OneWay,\n                                  Converter={x:StaticResource IsStringNotNullOrEmptyConverter}}\"\n            Text=\"Source code\" />-->\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlGroup.ProviderUrl}\"\n            IconImageSource=\"{x:StaticResource InfoIcon}\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <Grid ColumnDefinitions=\"*, auto\">\n            <ScrollView VerticalScrollBarVisibility=\"Always\">\n                <Grid>\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid Grid.ColumnSpan=\"2\">\n                            <Frame\n                                Padding=\"0\"\n                                CornerRadius=\"4\"\n                                VerticalOptions=\"Start\">\n                                <Image\n                                    Aspect=\"AspectFill\"\n                                    HeightRequest=\"300\"\n                                    HorizontalOptions=\"Fill\"\n                                    Source=\"{x:Binding ControlGroup.Banner}\"\n                                    VerticalOptions=\"Fill\" />\n                            </Frame>\n                            <acrylic:AcrylicView\n                                Margin=\"0,100,0,0\"\n                                BorderColor=\"{x:Binding ControlGroup.BrandColor}\"\n                                BorderThickness=\"5\"\n                                CornerRadius=\"8\"\n                                EffectStyle=\"ExtraDark\"\n                                HeightRequest=\"250\"\n                                HorizontalOptions=\"Center\"\n                                IsVisible=\"{x:OnIdiom Desktop=True,\n                                                      Tablet=True,\n                                                      Phone=False}\"\n                                VerticalOptions=\"End\">\n                                <Grid\n                                    Padding=\"15\"\n                                    ColumnDefinitions=\"100, 400, 200\"\n                                    ColumnSpacing=\"10\">\n                                    <VerticalStackLayout VerticalOptions=\"Start\">\n                                        <ImageButton\n                                            Padding=\"4\"\n                                            BackgroundColor=\"Black\"\n                                            CornerRadius=\"4\"\n                                            HeightRequest=\"90\"\n                                            IsVisible=\"{x:Binding ControlGroup.IconUrl,\n                                                                  Converter={x:StaticResource ImageSourceToBoolConverter}}\"\n                                            Source=\"{x:Binding ControlGroup.IconUrl,\n                                                               Mode=OneWay}\"\n                                            WidthRequest=\"90\" />\n                                        <skia:SKLottieView\n                                            HeightRequest=\"90\"\n                                            HorizontalOptions=\"Center\"\n                                            IsVisible=\"{x:Binding ControlGroup.LottieUrl,\n                                                                  Converter={toolkit:IsStringNotNullOrEmptyConverter}}\"\n                                            RepeatCount=\"-1\"\n                                            SemanticProperties.Description=\"Cute dot net bot waving hi to you!\"\n                                            Source=\"dotnetbot.json\"\n                                            WidthRequest=\"90\" />\n                                        <Label HorizontalOptions=\"Center\" TextColor=\"{x:Static core:AppColors.White}\">\n                                            <Label.FormattedText>\n                                                <FormattedString>\n                                                    <Span Text=\"Version: \" />\n                                                    <Span Text=\"{x:Binding ControlGroup.Version}\" />\n                                                </FormattedString>\n                                            </Label.FormattedText>\n                                        </Label>\n                                    </VerticalStackLayout>\n                                    <VerticalStackLayout Grid.Column=\"1\" Spacing=\"5\">\n                                        <Label\n                                            FontAttributes=\"Bold\"\n                                            FontSize=\"18\"\n                                            Text=\"{x:Binding ControlGroup.Title}\"\n                                            TextColor=\"{x:Static core:AppColors.White}\" />\n                                        <Label TextColor=\"{x:Static core:AppColors.White}\">\n                                            <Label.FormattedText>\n                                                <FormattedString>\n                                                    <Span Text=\"Author: \" />\n                                                    <Span Text=\"{x:Binding ControlGroup.Author}\" />\n                                                </FormattedString>\n                                            </Label.FormattedText>\n                                        </Label>\n                                        <Label\n                                            HeightRequest=\"170\"\n                                            LineBreakMode=\"CharacterWrap\"\n                                            LineHeight=\"1.55\"\n                                            MaxLines=\"10\"\n                                            Text=\"{x:Binding ControlGroup.Description}\"\n                                            TextColor=\"{x:Static core:AppColors.White}\" />\n                                    </VerticalStackLayout>\n                                    <VerticalStackLayout Grid.Column=\"2\" Spacing=\"5\">\n                                        <Label Text=\"Free\" TextColor=\"{x:Static core:AppColors.White}\" />\n                                        <Button\n                                            BackgroundColor=\"{x:Binding ControlGroup.BrandColor}\"\n                                            Text=\"Get started\"\n                                            TextColor=\"{x:Binding ControlGroup.ButtonTextColor}\" />\n                                    </VerticalStackLayout>\n                                </Grid>\n                            </acrylic:AcrylicView>\n                        </Grid>\n                        <Border\n                            Padding=\"10\"\n                            BackgroundColor=\"#004173\"\n                            IsVisible=\"{x:Binding ControlGroup.Important,\n                                                  Mode=OneWay,\n                                                  Converter={toolkit:IsNotNullConverter}}\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout>\n                                <Label\n                                    Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                    Text=\"Important\"\n                                    TextColor=\"White\" />\n                                <Label\n                                    MaxLines=\"4\"\n                                    Text=\"{x:Binding ControlGroup.Important.Content}\"\n                                    TextColor=\"White\" />\n                                <BoxView\n                                    BackgroundColor=\"Transparent\"\n                                    HeightRequest=\"10\"\n                                    Color=\"Transparent\" />\n                                <Image\n                                    Aspect=\"AspectFill\"\n                                    HeightRequest=\"370\"\n                                    HorizontalOptions=\"Start\"\n                                    Source=\"{x:Binding ControlGroup.Important.AttachImage,\n                                                       Mode=OneWay}\"\n                                    VerticalOptions=\"Start\"\n                                    WidthRequest=\"500\" />\n                                <BoxView\n                                    BackgroundColor=\"Transparent\"\n                                    HeightRequest=\"10\"\n                                    Color=\"Transparent\" />\n                                <Button\n                                    Command=\"{x:Binding OpenUrlCommand}\"\n                                    CommandParameter=\"{x:Binding ControlGroup.Important.AdditionalLink}\"\n                                    HeightRequest=\"30\"\n                                    HorizontalOptions=\"Start\"\n                                    Text=\"Link\" />\n                            </VerticalStackLayout>\n                        </Border>\n                        <Grid>\n                            <Label\n                                FontSize=\"32\"\n                                TextColor=\"White\"\n                                TextDecorations=\"Underline\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"{x:Binding SelectedItem, Source={x:Reference CardByGroupPageTypePicker}, Mode=OneWay}\" />\n                                        <Span Text=\": \" />\n                                        <Span Text=\"{x:Binding FilteredControlGroupList.Count, Mode=OneWay}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <HorizontalStackLayout\n                                HorizontalOptions=\"Center\"\n                                Spacing=\"5\"\n                                VerticalOptions=\"Center\">\n                                <SearchBar\n                                    HorizontalOptions=\"Center\"\n                                    MinimumWidthRequest=\"250\"\n                                    Placeholder=\"Search controls, converters and many more\"\n                                    Text=\"{x:Binding SearchText,\n                                                     Mode=TwoWay}\"\n                                    VerticalOptions=\"Center\" />\n                                <ActivityIndicator IsRunning=\"{x:Binding IsBusy}\" Color=\"{x:Binding ControlGroup.BrandColor}\" />\n                            </HorizontalStackLayout>\n                            <Picker\n                                x:Name=\"CardByGroupPageTypePicker\"\n                                Title=\"Types\"\n                                HorizontalOptions=\"End\"\n                                ItemsSource=\"{x:Binding ControlGroupList,\n                                                        Mode=OneWay,\n                                                        Converter={x:StaticResource CardByGroupPageTypePickerConverter}}\"\n                                SelectedItem=\"{x:Binding SelectedItem,\n                                                         Mode=TwoWay}\"\n                                TextColor=\"White\"\n                                TitleColor=\"White\"\n                                VerticalOptions=\"Center\" />\n                        </Grid>\n                        <Label\n                            x:Name=\"EmptyLabel\"\n                            Grid.Row=\"1\"\n                            Grid.ColumnSpan=\"2\"\n                            IsVisible=\"False\"\n                            Text=\"No items available\"\n                            TextColor=\"White\">\n                            <Label.Triggers>\n                                <DataTrigger\n                                    Binding=\"{x:Binding FilteredControlGroupList.Count}\"\n                                    TargetType=\"Label\"\n                                    Value=\"0\">\n                                    <Setter Property=\"IsVisible\" Value=\"True\" />\n                                </DataTrigger>\n                            </Label.Triggers>\n                        </Label>\n                        <mdc:WrapLayout\n                            x:Name=\"WrapLayout\"\n                            Grid.Row=\"1\"\n                            Grid.ColumnSpan=\"2\"\n                            BindableLayout.ItemTemplateSelector=\"{x:StaticResource BrandCardTemplateSelector}\"\n                            BindableLayout.ItemsSource=\"{x:Binding FilteredControlGroupList,\n                                                                   Mode=OneWay}\"\n                            HorizontalOptions=\"Center\"\n                            HorizontalSpacing=\"10\"\n                            VerticalSpacing=\"10\">\n                            <mdc:WrapLayout.Triggers>\n                                <DataTrigger\n                                    Binding=\"{x:Binding FilteredControlGroupList.Count}\"\n                                    TargetType=\"mdc:WrapLayout\"\n                                    Value=\"0\">\n                                    <Setter Property=\"IsVisible\" Value=\"False\" />\n                                </DataTrigger>\n                            </mdc:WrapLayout.Triggers>\n                        </mdc:WrapLayout>\n                    </VerticalStackLayout>\n                </Grid>\n            </ScrollView>\n            <Grid\n                x:Name=\"GalleryDetail\"\n                Grid.Column=\"1\"\n                IsVisible=\"{x:Binding IsGalleryDetailVisible,\n                                      Mode=OneWay}\">\n                <Border />\n            </Grid>\n        </Grid>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/CardsByGroupPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npartial class CardsByGroupPage\n{\n    #region [ Fields ]\n    private CardsByGroupPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public CardsByGroupPage(CardsByGroupPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n    private void BasePage_SizeChanged(object sender, EventArgs e)\n    {\n        if (viewModel is not null)\n        {\n            if (Window.Width < 500)\n            {\n                viewModel.IsGalleryDetailVisible = false;\n                return;\n            }\n            else if (Window.Width < 900)\n            {\n                viewModel.IsGalleryDetailVisible = false;\n                return;\n            }\n            else if (Window.Width < 2000)\n            {\n                viewModel.IsGalleryDetailVisible = true;\n                return;\n            }\n\n            if (Window is not null)\n            {\n                System.Diagnostics.Debug.WriteLine(this.Window.Width);\n                System.Diagnostics.Debug.WriteLine(this.Window.Height);\n            }\n        }\n    }\n\n    private void ControlCardContentView_DetailClicked(IGalleryCardInfo control)\n        => viewModel.NavigateToDetailCommand.Execute(control);\n\n    private void ControlCardContentView_DetailInNewWindowClicked(IGalleryCardInfo control)\n        => viewModel.NavigateToDetailInNewWindowCommand.Execute(control);\n\n    private void CardsSearchHandler_SelectCard(IGalleryCardInfo control)\n        => viewModel.NavigateToDetailCommand.Execute(control);\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/CardsByGroupPageViewModel.cs",
    "content": "﻿using CommunityToolkit.Maui.Core.Extensions;\n\nnamespace MAUIsland;\n\npublic partial class CardsByGroupPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ Fields ]\n\n    private readonly IControlsService mauiControlsService;\n\n\n    private Timer? _debounceTimer;\n    private const int DebouncePeriodInMilliseconds = 500;\n    #endregion\n\n    #region [ CTor ]\n    public CardsByGroupPageViewModel(IAppNavigator appNavigator,\n                                     IControlsService mauiControlsService)\n        : base(appNavigator)\n    {\n        this.mauiControlsService = mauiControlsService;\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string searchText = string.Empty;\n\n    [ObservableProperty]\n    int span = 4;\n\n    [ObservableProperty]\n    bool isBusy;\n\n    [ObservableProperty]\n    bool isGalleryDetailVisible;\n\n    [ObservableProperty]\n    string selectedItem;\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> controlGroupList;\n\n    [ObservableProperty]\n    ObservableCollection<IGalleryCardInfo> filteredControlGroupList;\n\n    [ObservableProperty]\n    ControlGroupInfo controlGroup;\n\n    #endregion\n\n    #region [ RelayCommand ]\n\n    [RelayCommand]\n    Task NavigateToDetailAsync(IGalleryCardInfo control)\n        => AppNavigator.NavigateAsync(control.ControlRoute, args: control);\n\n    [RelayCommand]\n    Task NavigateToDetailInNewWindowAsync(IGalleryCardInfo control)\n        => AppNavigator.NavigateAsync(control.ControlRoute, inNewWindow: true, args: control);\n\n    [RelayCommand]\n    async Task OpenUrlAsync(string url)\n    {\n        IsBusy = true;\n        await AppNavigator.OpenUrlAsync(url);\n        IsBusy = false;\n    }\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        ControlGroup = query.GetData<ControlGroupInfo>();\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        CommunityToolkit.Diagnostics.Guard.IsNotNull(ControlGroup);\n        await RefreshAsync();\n    }\n    #endregion\n\n    #region [ Data ]\n    private async Task LoadDataAsync(bool forced)\n    {\n        if (IsBusy) return;\n        IsBusy = true;\n\n        var items = await mauiControlsService.GetControlsAsync(ControlGroup.Name);\n\n        IsBusy = false;\n\n        if (ControlGroupList is null)\n        {\n            ControlGroupList = new ObservableCollection<IGalleryCardInfo>(items);\n            FilteredControlGroupList = new ObservableCollection<IGalleryCardInfo>(items);\n            SelectedItem = \"All\";\n            return;\n        }\n\n        if (forced)\n        {\n            ControlGroupList.Clear();\n        }\n    }\n    #endregion\n\n    #region [ Methods ]\n\n    partial void OnSelectedItemChanged(string value)\n        => FilterControls(value, SearchText);\n\n    partial void OnSearchTextChanged(string value)\n    {\n        _debounceTimer?.Dispose(); // Cancel any existing timer\n        _debounceTimer = new Timer(_ =>\n        {\n            // This code runs after the debounce period elapses\n            // Ensure you're on the UI thread if necessary, especially if modifying UI elements directly\n            Device.BeginInvokeOnMainThread(() =>\n            {\n                FilterControls(SelectedItem, value);\n            });\n        }, null, DebouncePeriodInMilliseconds, Timeout.Infinite); // Timeout.Infinite ensures the timer runs only once\n    }\n    void FilterControls(string pickerValue, string searchValue)\n    {\n        IsBusy = true;\n        var trimmedValue = pickerValue.TrimEnd('s');\n\n        if (trimmedValue == \"All\")\n        {\n            FilteredControlGroupList = ControlGroupList\n                                            .Where(x => x.ControlName.Contains(searchValue))\n                                            .ToObservableCollection();\n            IsBusy = false;\n        }\n        else\n        {\n            var controlItems = ControlGroupList.Where(x => x.CardType.ToString() == trimmedValue\n                                                        && x.ControlName.Contains(searchValue))\n                                                        .ToObservableCollection();\n            if (controlItems.Count() == 0)\n            {\n                FilteredControlGroupList = new ObservableCollection<IGalleryCardInfo>();\n            }\n            else\n            {\n                FilteredControlGroupList = controlItems;\n            }\n            IsBusy = false;\n        }\n    }\n\n    async Task RefreshAsync()\n    {\n        await LoadDataAsync(true);\n    }\n    async Task OnControlCardNavigation(IGalleryCardInfo control)\n    {\n        try\n        {\n            var source = control.ControlIcon;\n        }\n        catch (Exception ex)\n        {\n            throw ex;\n        }\n\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Controls/AcrylicView/AcrylicViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.AcrylicViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:skia=\"clr-namespace:SkiaSharp.Extended.UI.Controls;assembly=SkiaSharp.Extended.UI\"\n    xmlns:skiaConverters=\"clr-namespace:SkiaSharp.Extended.UI.Controls.Converters;assembly=SkiaSharp.Extended.UI\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    xmlns:ui=\"clr-namespace:Xe.AcrylicView;assembly=Xe.AcrylicView\"\n    Title=\"Acrylic View\"\n    Padding=\"10\"\n    x:DataType=\"core:AcrylicViewPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.Resources>\n        <x:String x:Key=\"NugetUrl\">\n            NuGet\\Install-Package AcrylicView.Maui -Version 2.1.3\n        </x:String>\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Get Started\" />\n                        <Label Text=\"1. Install the nuget\" />\n                        <Label\n                            Padding=\"7\"\n                            BackgroundColor=\"Yellow\"\n                            HorizontalOptions=\"Start\"\n                            Text=\"{x:StaticResource NugetUrl}\"\n                            TextColor=\"Black\">\n                            <Label.GestureRecognizers>\n                                <TapGestureRecognizer Command=\"{x:Binding CopyToClipboardCommand}\" CommandParameter=\"{x:StaticResource NugetUrl}\" />\n                            </Label.GestureRecognizers>\n                            <Label.Behaviors>\n                                <toolkit:AnimationBehavior>\n                                    <toolkit:AnimationBehavior.AnimationType>\n                                        <toolkit:FadeAnimation Opacity=\"0.2\" />\n                                    </toolkit:AnimationBehavior.AnimationType>\n                                </toolkit:AnimationBehavior>\n                            </Label.Behaviors>\n                        </Label>\n                        <Label Text=\"2. Register in MauiProgram.cs\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding GetStartedCode}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Basic Usage\" />\n                        <Grid>\n                            <skia:SKLottieView\n                                HeightRequest=\"100\"\n                                HorizontalOptions=\"Center\"\n                                RepeatCount=\"-1\"\n                                SemanticProperties.Description=\"Cute dot net bot waving hi to you!\"\n                                Source=\"dotnetbot.json\"\n                                VerticalOptions=\"Center\"\n                                WidthRequest=\"100\" />\n                            <ui:AcrylicView\n                                Margin=\"10\"\n                                BorderColor=\"OrangeRed\"\n                                BorderThickness=\"1,2\"\n                                CornerRadius=\"50,10,30,20\"\n                                EffectStyle=\"Custom\"\n                                HeightRequest=\"100\"\n                                TintColor=\"OrangeRed\"\n                                TintOpacity=\".15 \"\n                                VerticalOptions=\"Center\">\n                                <Grid>\n                                    <Label\n                                        FontSize=\"25\"\n                                        HorizontalOptions=\"Center\"\n                                        Text=\"Hello Word\"\n                                        TextColor=\"OrangeRed\"\n                                        VerticalOptions=\"Center\" />\n                                </Grid>\n                            </ui:AcrylicView>\n                        </Grid>\n                        <core:SourceCodeExpander Code=\"{x:Binding AcrylicViewXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Bug\" />\n                        <Grid>\n                            <toolkit:MediaElement\n                                Aspect=\"AspectFill\"\n                                HorizontalOptions=\"Fill\"\n                                ShouldAutoPlay=\"True\"\n                                ShouldLoopPlayback=\"True\"\n                                ShouldShowPlaybackControls=\"False\"\n                                Source=\"embed://digital_grabe.mp4\"\n                                VerticalOptions=\"Fill\" />\n\n                            <ui:AcrylicView\n                                EffectStyle=\"Dark\"\n                                HeightRequest=\"200\"\n                                HorizontalOptions=\"Center\"\n                                VerticalOptions=\"Center\"\n                                WidthRequest=\"200\" />\n                            <Label\n                                Margin=\"0,50,0,0\"\n                                HorizontalOptions=\"Center\"\n                                HorizontalTextAlignment=\"Center\"\n                                MaximumWidthRequest=\"300\"\n                                Text=\"Seem like the acrylic or the media toolkit having some issue while usign together\"\n                                VerticalOptions=\"Start\" />\n                            <Label\n                                HorizontalOptions=\"Center\"\n                                HorizontalTextAlignment=\"Center\"\n                                Text=\"This is an acrylic view element\"\n                                VerticalOptions=\"Center\"\n                                VerticalTextAlignment=\"Center\"\n                                WidthRequest=\"130\" />\n                        </Grid>\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Controls/AcrylicView/AcrylicViewPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class AcrylicViewPage : IGalleryPage\n{\n    #region [ CTor ]\n    public AcrylicViewPage(AcrylicViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Controls/DataGrid/DataGridPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.DataGridPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:datagrid=\"clr-namespace:Maui.DataGrid;assembly=Maui.DataGrid\"\n    Title=\"DataGrid\"\n    Padding=\"10\"\n    x:DataType=\"core:DataGridPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            DataGrid defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\" />\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ItemsSource</strong>, of type <strong style=\"color:blue\">IEnumerable</strong>, used to bind a data source to the DataGrid. Default value is <strong style=\"color:blue\">null</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SelectionEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, enables or disables row selection. Default value is <strong style=\"color:blue\">false</strong>.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SelectedItem</strong>, of type <strong style=\"color:blue\">object</strong>, binds to the selected item in the DataGrid. Default value is <strong style=\"color:blue\">null</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">RowHeight</strong>, of type <strong style=\"color:blue\">double</strong>, sets the height of the rows. Default value is <strong style=\"color:blue\">44.0</strong>.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">HeaderHeight</strong>, of type <strong style=\"color:blue\">double</strong>, sets the height of the header. Default value is <strong style=\"color:blue\">44.0</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">BorderColor</strong>, of type <strong style=\"color:blue\">Color</strong>, sets the color of the grid border. Default value is <strong style=\"color:blue\">Color.Default</strong>.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">HeaderBackground</strong>, of type <strong style=\"color:blue\">Brush</strong>, sets the background color of the header. Default value is <strong style=\"color:blue\">Brush.Default</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">HeaderBordersVisible</strong>, of type <strong style=\"color:blue\">bool</strong>, determines whether the borders of the header are visible. Default value is <strong style=\"color:blue\">true</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">PullToRefreshCommand</strong>, of type <strong style=\"color:blue\">ICommand</strong>, command that is executed when the user pulls to refresh. Default value is <strong style=\"color:blue\">null</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">IsRefreshing</strong>, of type <strong style=\"color:blue\">bool</strong>, indicates whether the grid is refreshing. Default value is <strong style=\"color:blue\">false</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">PaginationEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, enables or disables pagination. Default value is <strong style=\"color:blue\">false</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">PageSize</strong>, of type <strong style=\"color:blue\">int</strong>, sets the number of items per page. Default value is <strong style=\"color:blue\">10</strong>.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ActiveRowColor</strong>, of type <strong style=\"color:blue\">Color</strong>, sets the color of the active row. Default value is <strong style=\"color:blue\">Color.Default</strong>.    ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"DataGridItemColumnStringTemplate\" x:DataType=\"{x:Type x:String}\">\n            <Label\n                HorizontalOptions=\"Center\"\n                Text=\"{x:Binding}\"\n                TextColor=\"Black\"\n                VerticalOptions=\"Center\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"DataGridItemColumnIntegerTypeTemplate\" x:DataType=\"{x:Type x:Int32}\">\n            <Label\n                HorizontalOptions=\"Center\"\n                Text=\"{x:Binding}\"\n                TextColor=\"Black\"\n                VerticalOptions=\"Center\" />\n        </DataTemplate>\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <CollectionView\n                        Footer=\"{x:StaticResource PropertiesListFooter}\"\n                        Header=\"{x:StaticResource PropertiesListHeader}\"\n                        ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Normal DataGrid\" />\n                        <Label Text=\"{x:Binding NormalDataGridTip}\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#35abc3\"\n                            HeaderHeight=\"50\"\n                            IsRefreshing=\"{x:Binding IsRefreshing}\"\n                            ItemsSource=\"{x:Binding ControlGroupList}\"\n                            RowHeight=\"80\"\n                            SelectedItem=\"{x:Binding SelectedControl}\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn\n                                    Title=\"Control\"\n                                    Width=\"80\"\n                                    PropertyName=\"ControlIcon\"\n                                    SortingEnabled=\"True\">\n                                    <datagrid:DataGridColumn.CellTemplate>\n                                        <DataTemplate x:DataType=\"{x:Type ImageSource}\">\n                                            <Frame\n                                                BackgroundColor=\"#35abc3\"\n                                                BorderColor=\"Transparent\"\n                                                HeightRequest=\"60\"\n                                                HorizontalOptions=\"Center\"\n                                                VerticalOptions=\"Center\"\n                                                WidthRequest=\"60\">\n                                                <Image\n                                                    HorizontalOptions=\"CenterAndExpand\"\n                                                    Source=\"{x:Binding}\"\n                                                    VerticalOptions=\"CenterAndExpand\" />\n                                            </Frame>\n                                        </DataTemplate>\n                                    </datagrid:DataGridColumn.CellTemplate>\n                                </datagrid:DataGridColumn>\n                                <datagrid:DataGridColumn\n                                    Title=\"Name\"\n                                    Width=\"140\"\n                                    CellTemplate=\"{x:StaticResource DataGridItemColumnStringTemplate}\"\n                                    PropertyName=\"ControlName\"\n                                    SortingEnabled=\"True\" />\n                                <datagrid:DataGridColumn\n                                    Title=\"Type\"\n                                    Width=\"120\"\n                                    PropertyName=\"CardType\"\n                                    SortingEnabled=\"True\">\n                                    <datagrid:DataGridColumn.CellTemplate>\n                                        <DataTemplate x:DataType=\"core:GalleryCardType\">\n                                            <Frame\n                                                BackgroundColor=\"ForestGreen\"\n                                                BorderColor=\"LightGreen\"\n                                                HorizontalOptions=\"Center\"\n                                                VerticalOptions=\"Center\">\n                                                <Label\n                                                    HorizontalOptions=\"Center\"\n                                                    Text=\"{x:Binding}\"\n                                                    VerticalOptions=\"Center\" />\n                                            </Frame>\n                                        </DataTemplate>\n                                    </datagrid:DataGridColumn.CellTemplate>\n                                </datagrid:DataGridColumn>\n                                <datagrid:DataGridColumn\n                                    Title=\"Detail\"\n                                    Width=\"650\"\n                                    CellTemplate=\"{x:StaticResource DataGridItemColumnStringTemplate}\"\n                                    PropertyName=\"ControlDetail\"\n                                    SortingEnabled=\"True\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                        <Label Text=\"Here DataGrid Template Xaml\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlNormalDataGridTemplate}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Here DataGrid xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlNormalDataGrid}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This is the ViewModel\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpNormalDataGrid}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"DataGrid With Rows Background Color\" />\n                        <Label Text=\"DataGrid Row Color can be adjusted too\" />\n                        <datagrid:DataGrid\n                            HeaderBackground=\"#e0e6f7\"\n                            HeaderHeight=\"50\"\n                            IsRefreshing=\"{x:Binding IsRefreshing}\"\n                            ItemsSource=\"{x:Binding GithubControlGroupList}\"\n                            RowHeight=\"80\"\n                            SelectedItem=\"{x:Binding SelectedGithubControl}\">\n                            <datagrid:DataGrid.RowsBackgroundColorPalette>\n                                <datagrid:PaletteCollection>\n                                    <Color>#F2F2F2</Color>\n                                    <Color>#FFFFFF</Color>\n                                </datagrid:PaletteCollection>\n                            </datagrid:DataGrid.RowsBackgroundColorPalette>\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn\n                                    Title=\"Avatar\"\n                                    Width=\"80\"\n                                    PropertyName=\"OwnerAvatarUrl\"\n                                    SortingEnabled=\"True\">\n                                    <datagrid:DataGridColumn.CellTemplate>\n                                        <DataTemplate x:DataType=\"{x:Type x:String}\">\n                                            <Image\n                                                HorizontalOptions=\"Center\"\n                                                Source=\"{x:Binding}\"\n                                                VerticalOptions=\"Center\" />\n                                        </DataTemplate>\n                                    </datagrid:DataGridColumn.CellTemplate>\n                                </datagrid:DataGridColumn>\n                                <datagrid:DataGridColumn\n                                    Title=\"Name\"\n                                    Width=\"140\"\n                                    CellTemplate=\"{x:StaticResource DataGridItemColumnStringTemplate}\"\n                                    PropertyName=\"Name\"\n                                    SortingEnabled=\"True\" />\n                                <datagrid:DataGridColumn\n                                    Title=\"Forks Count\"\n                                    Width=\"100\"\n                                    CellTemplate=\"{x:StaticResource DataGridItemColumnIntegerTypeTemplate}\"\n                                    PropertyName=\"ForksCount\"\n                                    SortingEnabled=\"True\" />\n                                <datagrid:DataGridColumn\n                                    Title=\"Stargazers Count\"\n                                    Width=\"120\"\n                                    CellTemplate=\"{x:StaticResource DataGridItemColumnIntegerTypeTemplate}\"\n                                    PropertyName=\"StargazersCount\"\n                                    SortingEnabled=\"True\" />\n                                <datagrid:DataGridColumn\n                                    Title=\"Issues Count\"\n                                    Width=\"100\"\n                                    CellTemplate=\"{x:StaticResource DataGridItemColumnIntegerTypeTemplate}\"\n                                    PropertyName=\"OpenIssuesCount\"\n                                    SortingEnabled=\"True\" />\n                                <datagrid:DataGridColumn\n                                    Title=\"License\"\n                                    Width=\"100\"\n                                    CellTemplate=\"{x:StaticResource DataGridItemColumnStringTemplate}\"\n                                    PropertyName=\"LicenseName\"\n                                    SortingEnabled=\"True\" />\n                                <datagrid:DataGridColumn\n                                    Title=\"Link\"\n                                    Width=\"350\"\n                                    CellTemplate=\"{x:StaticResource DataGridItemColumnStringTemplate}\"\n                                    PropertyName=\"SvnUrl\"\n                                    SortingEnabled=\"True\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n\n                        <Label Text=\"This is how xaml DataGord code look like\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlRowsColorDataGrid}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This is ViewModel code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpRowsColorDataGrid}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"DataGrid With Emty Item\" />\n                        <datagrid:DataGrid\n                            HeaderBackground=\"#e0e6f7\"\n                            HeaderHeight=\"50\"\n                            IsRefreshing=\"{x:Binding IsRefreshing}\"\n                            ItemsSource=\"{x:Binding ControlGroupListEmtyList}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.NoDataView>\n                                <ContentView>\n                                    <Label\n                                        HorizontalOptions=\"Center\"\n                                        SemanticProperties.HeadingLevel=\"Level1\"\n                                        Text=\"Nothing to see here!\"\n                                        VerticalOptions=\"Center\" />\n                                </ContentView>\n                            </datagrid:DataGrid.NoDataView>\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn\n                                    Title=\"Control Name\"\n                                    Width=\"140\"\n                                    CellTemplate=\"{x:StaticResource DataGridItemColumnStringTemplate}\"\n                                    PropertyName=\"ControlName\"\n                                    SortingEnabled=\"True\" />\n                                <datagrid:DataGridColumn\n                                    Title=\"Type\"\n                                    Width=\"120\"\n                                    CellTemplate=\"{x:StaticResource DataGridItemColumnStringTemplate}\"\n                                    PropertyName=\"CardType\"\n                                    SortingEnabled=\"True\" />\n                                <datagrid:DataGridColumn\n                                    Title=\"Group Name\"\n                                    Width=\"140\"\n                                    CellTemplate=\"{x:StaticResource DataGridItemColumnStringTemplate}\"\n                                    PropertyName=\"GroupName\"\n                                    SortingEnabled=\"True\" />\n                                <datagrid:DataGridColumn\n                                    Title=\"Control Detail\"\n                                    Width=\"600\"\n                                    CellTemplate=\"{x:StaticResource DataGridItemColumnStringTemplate}\"\n                                    PropertyName=\"ControlDetail\"\n                                    SortingEnabled=\"True\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n\n                        <Label Text=\"This is how xaml DataGord code look like\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlEmptyListDataGrid}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This is ViewModel code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpEmptyListDataGrid}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Controls/DataGrid/DataGridPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class DataGridPage : IGalleryPage\n{\n    #region [CTor]\n    public DataGridPage(DataGridPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Controls/LiveCharts2/LiveCharts2Page.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.LiveCharts2Page\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:lvc=\"clr-namespace:LiveChartsCore.SkiaSharpView.Maui;assembly=LiveChartsCore.SkiaSharpView.Maui\"\n    Title=\"Live Charts 2\"\n    Padding=\"10\"\n    x:DataType=\"core:LiveCharts2PageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.Resources>\n\n        <FontImageSource\n            x:Key=\"LiveCharts2PageChartMultiple20\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_chart_multiple_20_regular}\"\n            Color=\"White\" />\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"{x:StaticResource LiveCharts2PageChartMultiple20}\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding BasicBarsTitle}\" />\n                        <lvc:CartesianChart\n                            HeightRequest=\"300\"\n                            LegendBackgroundPaint=\"{Binding LegendBackgroundPaint}\"\n                            LegendPosition=\"Right\"\n                            LegendTextPaint=\"{Binding LegendTextPaint}\"\n                            Series=\"{Binding BasicBarsSeries}\"\n                            XAxes=\"{Binding BasicBarsXAxes}\"\n                            YAxes=\"{Binding BasicBarsYAxes}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BasicBarsCSharpCode}\" CodeType=\"CSharp\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BasicBarsXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding BarsWithBackgroundTitle}\" />\n                        <lvc:CartesianChart\n                            HeightRequest=\"300\"\n                            Series=\"{Binding BarsWithBackgroundSeries}\"\n                            XAxes=\"{Binding BarsWithBackgroundXAxes}\"\n                            YAxes=\"{Binding BarsWithBackgroundYAxes}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BarsWithBackgroundCSharpCode}\" CodeType=\"CSharp\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BarsWithBackgroundXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding RacingBarsTitle}\" />\n                        <lvc:CartesianChart\n                            HeightRequest=\"300\"\n                            Series=\"{Binding RacingSeries}\"\n                            TooltipPosition=\"Hidden\"\n                            XAxes=\"{Binding XRacingAxes}\"\n                            YAxes=\"{Binding YRacingAxes}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding RacingBarsCSharpCode}\" CodeType=\"CSharp\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding RacingBarsXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <!--  Line Series  -->\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding LineSeriesTitle}\" />\n                        <lvc:CartesianChart\n                            Title=\"{Binding LineSeriesVisualTitle}\"\n                            HeightRequest=\"300\"\n                            Series=\"{Binding LineSeries}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding LineSeriesCSharpCode}\" CodeType=\"CSharp\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding LineSeriesXamlCode}\" CodeType=\"Xaml\" />\n                        <lvc:CartesianChart\n                            HeightRequest=\"300\"\n                            Series=\"{x:Binding LineSeries2}\"\n                            XAxes=\"{x:Binding LineSeries2XAxis}\"\n                            YAxes=\"{x:Binding LineSeries2YAxis}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding StackedBarsTitle}\" />\n                        <lvc:CartesianChart HeightRequest=\"300\" Series=\"{Binding StackedSeries}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding StackBarsCSharpCode}\" CodeType=\"CSharp\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding StackBarsXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding PieChartTitle}\" />\n                        <Grid ColumnDefinitions=\"*,*,*\">\n                            <lvc:PieChart\n                                Title=\"{x:Binding PieChartVisualTitle}\"\n                                HeightRequest=\"300\"\n                                HorizontalOptions=\"Center\"\n                                Series=\"{Binding PieSeries}\"\n                                WidthRequest=\"300\" />\n                            <lvc:PieChart\n                                Title=\"{x:Binding DoughnutPieChartVisualTitle}\"\n                                Grid.Column=\"1\"\n                                HeightRequest=\"300\"\n                                Series=\"{Binding PieSeries2}\"\n                                WidthRequest=\"300\" />\n                            <lvc:PieChart\n                                Title=\"{x:Binding PushoutPieChartVisualTitle}\"\n                                Grid.Column=\"2\"\n                                HeightRequest=\"300\"\n                                Series=\"{Binding PieSeries3}\"\n                                WidthRequest=\"300\" />\n                        </Grid>\n                        <core:SourceCodeExpander Code=\"{x:Binding PieChartXamlCode}\" CodeType=\"Xaml\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding PieChartCSharpCode}\" CodeType=\"CSharp\" />\n                        <Grid ColumnDefinitions=\"*,*\">\n                            <lvc:PieChart\n                                Title=\"{x:Binding PieChartWithLegendVisualTitle}\"\n                                HeightRequest=\"400\"\n                                LegendPosition=\"Right\"\n                                LegendTextPaint=\"{x:Binding LegendTextPaint}\"\n                                Series=\"{x:Binding PieSeries4}\"\n                                WidthRequest=\"400\" />\n                            <VerticalStackLayout\n                                Grid.Column=\"1\"\n                                Spacing=\"5\"\n                                VerticalOptions=\"Center\">\n                                <core:SourceCodeExpander Code=\"{x:Binding PieChart4XamlCode}\" CodeType=\"Xaml\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding PieChart4CSharpCode}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Grid>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding RadialAreaTitle}\" />\n                        <lvc:PolarChart\n                            AngleAxes=\"{Binding AngleAxes}\"\n                            HeightRequest=\"400\"\n                            InitialRotation=\"-45\"\n                            Series=\"{Binding Series}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding RadialAreaXamlCode}\" CodeType=\"Xaml\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding RadialAreaCSharpCode}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Controls/LiveCharts2/LiveCharts2Page.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class LiveCharts2Page : IGalleryPage\n{\n    #region [ CTor ]\n    public LiveCharts2Page(LiveCharts2PageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Controls/OverFlower/OverFlowerPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.OverFlowerPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:over=\"clr-namespace:OverFlower;assembly=OverFlower\"\n    Title=\"OverFlower\"\n    Padding=\"10\"\n    x:DataType=\"core:OverFlowerPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            OverFlower defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ImageWidth</strong>, of type <strong style=\"color:blue\">double</strong>, value that defines the width of the image inside the container.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ImageHeight</strong>, of type <strong style=\"color:blue\">double</strong>, value that defines the height of the image inside the container.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ScrollDuration</strong>, of type <strong style=\"color:blue\">double</strong>, value that defines the duration of scrolling animation inside the container.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Reverse</strong>, of type <strong style=\"color:blue\">bool</strong>, enable reverse scrolling at the end of the animation.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ScrollDirection</strong>, of type <strong style=\"color:blue\">ScrollDirection</strong>, the direction of the flow LEFT, RIGHT, DOWN and UP.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ImageSource</strong>, of type <strong style=\"color:blue\">ImageSource</strong>, image source of the image inside the container.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <CollectionView\n                        Footer=\"{x:StaticResource PropertiesListFooter}\"\n                        Header=\"{x:StaticResource PropertiesListHeader}\"\n                        ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <over:OverFlower\n                        ImageHeight=\"1000\"\n                        ImageSource=\"pattern_background_image.png\"\n                        ImageWidth=\"2500\"\n                        ScrollDirection=\"Left\"\n                        ScrollDuration=\"20000\" />\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Controls/OverFlower/OverFlowerPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class OverFlowerPage : IGalleryPage\n{\n    #region [CTor]\n    public OverFlowerPage(OverFlowerPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Helpers/OCR/OCRPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.OCRPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"OCR\"\n    Padding=\"20\"\n    x:DataType=\"core:OCRPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Original Source\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                            Text=\"{x:Binding HeaderFeatures}\"\n                            TextDecorations=\"Underline\" />\n                        <CollectionView ItemsSource=\"{x:Binding Features}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:Binding UploadAnImageHeader}\" />\n                        <Grid ColumnDefinitions=\"*, *\" ColumnSpacing=\"15\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Image Source=\"{x:Binding ImageSourceSample, Mode=OneWay}\" />\n                                <Button Command=\"{x:Binding OpenFileCommand}\" Text=\"Image load an image\" />\n                            </VerticalStackLayout>\n                            <VerticalStackLayout Grid.Column=\"1\" Spacing=\"5\">\n                                <HorizontalStackLayout Spacing=\"5\">\n                                    <Label Text=\"Try hard?\" VerticalOptions=\"Center\" />\n                                    <Switch IsToggled=\"{x:Binding IsTryHard, Mode=TwoWay}\" VerticalOptions=\"Center\" />\n                                </HorizontalStackLayout>\n                                <core:DocumentAlert AlertType=\"Tip\" Text=\"{x:Binding TryHardTip}\" />\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    Text=\"Extracted text:\"\n                                    TextDecorations=\"Underline\" />\n                                <Border\n                                    Padding=\"20\"\n                                    BackgroundColor=\"#252526\"\n                                    StrokeShape=\"RoundRectangle 4\">\n                                    <Label>\n                                        <Label.FormattedText>\n                                            <FormattedString>\n                                                <Span Text=\"&quot;\" />\n                                                <Span Text=\"{x:Binding ExtractedText, Mode=OneWay}\" />\n                                                <Span Text=\"&quot;\" />\n                                            </FormattedString>\n                                        </Label.FormattedText>\n                                    </Label>\n                                </Border>\n                                <Button\n                                    Command=\"{x:Binding CopyToClipboardCommand}\"\n                                    CommandParameter=\"{x:Binding ExtractedText}\"\n                                    Text=\"Copy value\" />\n                                <Label Text=\"{x:Binding ExtractStatus, Mode=OneWay}\" />\n                            </VerticalStackLayout>\n                        </Grid>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                            Text=\"{x:Binding InstallPluginHeader}\"\n                            TextDecorations=\"Underline\" />\n\n                        <HorizontalStackLayout Spacing=\"10\">\n                            <Button\n                                BackgroundColor=\"#512bd4\"\n                                Command=\"{x:Binding OpenUrlCommand}\"\n                                CommandParameter=\"{x:Binding MauiNugetLink}\"\n                                Text=\"MAUI\"\n                                TextColor=\"White\" />\n                            <Button\n                                BackgroundColor=\"#31c1e7\"\n                                Command=\"{x:Binding OpenUrlCommand}\"\n                                CommandParameter=\"{x:Binding XamarinNugetLink}\"\n                                Text=\"Xamarin\" />\n                        </HorizontalStackLayout>\n                        <Label\n                            Padding=\"7\"\n                            BackgroundColor=\"Yellow\"\n                            HorizontalOptions=\"Start\"\n                            Text=\"{x:Binding DotNetMauiInstallNugetCLICommand}\"\n                            TextColor=\"Black\">\n                            <Label.GestureRecognizers>\n                                <TapGestureRecognizer Command=\"{x:Binding CopyToClipboardCommand}\" CommandParameter=\"{x:Binding DotNetMauiInstallNugetCLICommand}\" />\n                            </Label.GestureRecognizers>\n                            <Label.Behaviors>\n                                <toolkit:AnimationBehavior>\n                                    <toolkit:AnimationBehavior.AnimationType>\n                                        <toolkit:FadeAnimation Opacity=\"0.2\" />\n                                    </toolkit:AnimationBehavior.AnimationType>\n                                </toolkit:AnimationBehavior>\n                            </Label.Behaviors>\n                        </Label>\n                        <Label\n                            Padding=\"7\"\n                            BackgroundColor=\"Yellow\"\n                            HorizontalOptions=\"Start\"\n                            Text=\"{x:Binding XamarinInstallNugetCLICommand}\"\n                            TextColor=\"Black\">\n                            <Label.GestureRecognizers>\n                                <TapGestureRecognizer Command=\"{x:Binding CopyToClipboardCommand}\" CommandParameter=\"{x:Binding XamarinInstallNugetCLICommand}\" />\n                            </Label.GestureRecognizers>\n                            <Label.Behaviors>\n                                <toolkit:AnimationBehavior>\n                                    <toolkit:AnimationBehavior.AnimationType>\n                                        <toolkit:FadeAnimation Opacity=\"0.2\" />\n                                    </toolkit:AnimationBehavior.AnimationType>\n                                </toolkit:AnimationBehavior>\n                            </Label.Behaviors>\n                        </Label>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                            Text=\"{x:Binding MauiSetupAndUsageHeader}\"\n                            TextDecorations=\"Underline\" />\n                        <Label Text=\"{x:Binding MauiSetupAndUsage}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding MauiProgramSetupCSharpCode}\" CodeType=\"CSharp\" />\n                        <Label Text=\"{x:Binding MauiSetupAndUsage1}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding MauiSetupAndUsageCSharpCode}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                            Text=\"{x:Binding PermissionsHeader}\"\n                            TextDecorations=\"Underline\" />\n                        <Label Text=\"{x:Binding Permissions}\" />\n                        <Label\n                            FontAttributes=\"Bold\"\n                            Text=\"{x:Binding Permissions1}\"\n                            TextDecorations=\"Underline\" />\n                        <Label Text=\"{x:Binding Permissions2}\" />\n                        <Label\n                            FontAttributes=\"Bold\"\n                            Text=\"{x:Binding Permissions3}\"\n                            TextDecorations=\"Underline\" />\n                        <Label Text=\"{x:Binding Permissions4}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding PermissionsXMLCode}\" CodeType=\"Xaml\" />\n                        <Label Text=\"{x:Binding Permissions4}\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                            Text=\"{x:Binding PatternMatchingHeader}\"\n                            TextDecorations=\"Underline\" />\n                        <Label Text=\"{x:Binding PatternMatching}\" />\n                        <Label Text=\"{x:Binding PatternMatching1}\" />\n                        <CollectionView ItemsSource=\"{x:Binding PatternMatchingList}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <Label Text=\"{x:Binding PatternMatching2}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding PatternMatchinCSharpCode}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Helpers/OCR/OCRPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class OCRPage : IGalleryPage\n{\n\n    #region [ CTor ]\n\n    public OCRPage(OCRPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Helpers/SQLite-net/SQLiteNETPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SQLiteNETPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"sqlite-net\"\n    Padding=\"20\"\n    x:DataType=\"core:SQLiteNETPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Original Source\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding Intro}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontSize=\"Medium\"\n                            Text=\"{x:Binding HeaderFeatures}\"\n                            TextDecorations=\"Underline\" />\n                        <CollectionView ItemsSource=\"{x:Binding Features}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Medium\"\n                            Text=\"{x:Binding HeaderNuget}\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <Label\n                            Padding=\"5\"\n                            BackgroundColor=\"Yellow\"\n                            HorizontalOptions=\"Start\"\n                            Text=\"{x:Binding Nuget}\"\n                            TextColor=\"Black\">\n                            <Label.GestureRecognizers>\n                                <TapGestureRecognizer Command=\"{x:Binding CopyToClipboardCommand}\" CommandParameter=\"{x:Binding Nuget}\" />\n                            </Label.GestureRecognizers>\n                            <Label.Behaviors>\n                                <toolkit:AnimationBehavior>\n                                    <toolkit:AnimationBehavior.AnimationType>\n                                        <toolkit:FadeAnimation Opacity=\"0.2\" />\n                                    </toolkit:AnimationBehavior.AnimationType>\n                                </toolkit:AnimationBehavior>\n                            </Label.Behaviors>\n                        </Label>\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span\n                                        FontAttributes=\"Bold\"\n                                        Text=\"Important: \"\n                                        TextDecorations=\"Underline\" />\n                                    <Span Text=\"{x:Binding NugetImportant}\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Medium\"\n                            Text=\"{x:Binding HeaderExample}\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <Label Text=\"{x:Binding Example}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding Code}\" CodeType=\"CSharp\" />\n                        <Label Text=\"{x:Binding Example2}\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Medium\"\n                            Text=\"{x:Binding HeaderSynchronous}\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <Label Text=\"{x:Binding Synchronous}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeSynchronous}\" CodeType=\"CSharp\" />\n                        <Label Text=\"{x:Binding SynchronousUpdateAndDelete}\" />\n                        <Label Text=\"{x:Binding SynchronousQuery}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeSynchronousQuery}\" CodeType=\"CSharp\" />\n                        <Label Text=\"{x:Binding SynchronousLowLevelQuery}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeSynchronousLowLevelQuery}\" CodeType=\"CSharp\" />\n                        <Label Text=\"{x:Binding GenericParameterQuery}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeGenericParameterQuery}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Medium\"\n                            Text=\"{x:Binding HeaderAsynchronous}\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <Label Text=\"{x:Binding Asynchronous}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeAsynchronous}\" CodeType=\"CSharp\" />\n                        <Label Text=\"{x:Binding Asynchronous1}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeAsynchronous1}\" CodeType=\"CSharp\" />\n                        <Label Text=\"{x:Binding Asynchronous2}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeAsynchronous2}\" CodeType=\"CSharp\" />\n                        <Label Text=\"{x:Binding Asynchronous3}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeAsynchronous3}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Medium\"\n                            Text=\"{x:Binding HeaderManualSQL}\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <Label Text=\"{x:Binding ManualSQL}\" />\n                        <Label Text=\"{x:Binding ManualSQL1}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeManualSQL}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Medium\"\n                            Text=\"{x:Binding HeaderSQLCipher}\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"{x:Binding SqlCipher}\" />\n                                    <Span Text=\" \" />\n                                    <Span\n                                        BackgroundColor=\"Yellow\"\n                                        Text=\"sqlite-net-sqlcipher NuGet package.\"\n                                        TextColor=\"Black\">\n                                        <Span.GestureRecognizers>\n                                            <TapGestureRecognizer Command=\"{x:Binding OpenUrlCommand}\" CommandParameter=\"{x:Binding SqlCipherLink}\" />\n                                        </Span.GestureRecognizers>\n                                    </Span>\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <Label Text=\"{x:Binding OptionSQLCipher}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CodeSQLCipher}\" CodeType=\"CSharp\" />\n                        <Label Text=\"{x:Binding Option2SQLCipher}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding Code2SQLCipher}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Helpers/SQLite-net/SQLiteNETPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class SQLiteNETPage : IGalleryPage\n{\n\n    #region [ CTor ]\n\n    public SQLiteNETPage(SQLiteNETPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Helpers/ZXingNetMaui/ZXingNetMauiPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ZXingNetMauiPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:zxing=\"clr-namespace:ZXing.Net.Maui.Controls;assembly=ZXing.Net.MAUI.Controls\"\n    Title=\"ZXingNetMaui\"\n    Padding=\"10\"\n    x:DataType=\"core:ZXingNetMauiPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Original Source\" />\n    </core:BasePage.ToolbarItems>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Installation\" />\n                        <Label\n                            FontAttributes=\"Bold\"\n                            Text=\"1. Install ZXing.Net.Maui.Controls NuGet package on your .NET MAUI application\"\n                            TextDecorations=\"Underline\" />\n                        <Label Text=\"Install through package reference\" />\n                        <Label\n                            BackgroundColor=\"#07223f\"\n                            Text=\"{x:Binding PackageReference}\"\n                            TextColor=\"White\" />\n                        <Label Text=\"Or install it through dotnet CLI\" />\n                        <Label\n                            BackgroundColor=\"#07223f\"\n                            Text=\"{x:Binding DotnetCLI}\"\n                            TextColor=\"White\" />\n                        <Label FontAttributes=\"Bold\" TextDecorations=\"Underline\">\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"2. Make sure to initialize the plugin first in your \" />\n                                    <Span BackgroundColor=\"#464a51\" Text=\"MauiProgram.cs\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <core:SourceCodeExpander Code=\"{x:Binding ServiceRegisterCode}\" CodeType=\"CSharp\" />\n                        <HorizontalStackLayout>\n                            <Image\n                                HeightRequest=\"60\"\n                                Source=\"android_logo.png\"\n                                WidthRequest=\"60\" />\n                            <Label Text=\"Android\" TextColor=\"#207245\" />\n                        </HorizontalStackLayout>\n                        <Label Text=\"For Android go to your AndroidManifest.xml file (under the Platforms\\Android folder) and add the following permissions inside of the manifest node:\" />\n                        <Label\n                            BackgroundColor=\"#07223f\"\n                            Text=\"{x:Binding AndroidManifest}\"\n                            TextColor=\"White\" />\n                        <HorizontalStackLayout>\n                            <Image\n                                HeightRequest=\"60\"\n                                Source=\"ios_logo.png\"\n                                WidthRequest=\"60\" />\n                            <Label Text=\"IOS\" TextColor=\"#f2584f\" />\n                        </HorizontalStackLayout>\n                        <Label Text=\"For iOS go to your info.plist file (under the Platforms\\iOS folder) and add the following permissions inside of the dict node:\" />\n                        <Label\n                            BackgroundColor=\"#07223f\"\n                            Text=\"{x:Binding IosInfoPlist}\"\n                            TextColor=\"White\" />\n                        <Label Text=\"Make sure that you enter a clear and valid reason for your app to access the camera. This description will be shown to the user.\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Usage\" />\n                        <Label Text=\"If you're using the controls from XAML, make sure to add the right XML namespace in the root of your file, e.g:\" />\n                        <Label\n                            BackgroundColor=\"#07223f\"\n                            Text=\"{x:Binding XamlNameSpace}\"\n                            TextColor=\"White\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding DeclareControlCode}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Configure reader options\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ConfigReaderOptions}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Toggle Torch\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToggleTorch}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Flip between Rear/Front cameras\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FlipBetweenRearFrontCamera}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Handle detected barcode(s)\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding DetectBarCode}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <zxing:CameraBarcodeReaderView x:Name=\"cameraBarcodeReaderView\" BarcodesDetected=\"BarcodesDetected\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"5\">\n                        <zxing:BarcodeGeneratorView\n                            Margin=\"3\"\n                            ForegroundColor=\"DarkBlue\"\n                            Format=\"QrCode\"\n                            HeightRequest=\"50\"\n                            WidthRequest=\"50\"\n                            Value=\"https://dotnet.microsoft.com\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BarCodeGeneratorView}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Community/Helpers/ZXingNetMaui/ZXingNetMauiPage.xaml.cs",
    "content": "using ZXing.Net.Maui;\n\nnamespace MAUIsland;\npublic partial class ZXingNetMauiPage : IGalleryPage\n{\n    #region [CTor]\n    public ZXingNetMauiPage(ZXingNetMauiPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n\n        cameraBarcodeReaderView.Options = new BarcodeReaderOptions\n        {\n            Formats = BarcodeFormats.OneDimensional,\n            AutoRotate = true,\n            Multiple = true\n        };\n    }\n    #endregion\n\n    protected void BarcodesDetected(object sender, BarcodeDetectionEventArgs e)\n    {\n        foreach (var barcode in e.Results)\n            Console.WriteLine($\"Barcodes: {barcode.Format} -> {barcode.Value}\");\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Converters/CardByGroupPageTypePickerConverter.cs",
    "content": "﻿namespace MAUIsland;\n\npublic class CardByGroupPageTypePickerConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        if (value is null)\n            return new List<string>();\n\n        var valueType = value.GetType();\n        var items = value as ObservableCollection<IGalleryCardInfo>;\n        if (items != null)\n        {\n            var enumValues = Enum.GetNames(typeof(GalleryCardType))\n                                 .Select(name => name.EndsWith(\"s\") ? name : name + \"s\")\n                                 .ToList();\n            enumValues.Insert(0, \"All\");\n            return enumValues;\n        }\n        else\n            return new List<string>();\n\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/GalleryPage.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.GalleryPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:acrylic=\"clr-namespace:Xe.AcrylicView;assembly=Xe.AcrylicView\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\"\n    Title=\"Gallery\"\n    x:DataType=\"app:GalleryPageViewModel\"\n    Shell.NavBarIsVisible=\"False\"\n    Shell.TabBarIsVisible=\"True\">\n    <core:BasePage.Resources>\n        <DataTemplate x:Key=\"HorizontalWrapLayoutItemTemplate\" x:DataType=\"core:ControlGroupInfo\">\n            <app:BrandIconContentView\n                ComponentData=\"{x:Binding}\"\n                DetailClicked=\"BrandIconContentView_DetailClicked\"\n                DetailInNewWindowClicked=\"BrandIconContentView_DetailInNewWindowClicked\"\n                HorizontalOptions=\"Center\"\n                VerticalOptions=\"Center\" />\n        </DataTemplate>\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem IconImageSource=\"{x:StaticResource InfoIcon}\" Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <Grid>\n        <Image\n            Aspect=\"AspectFill\"\n            HorizontalOptions=\"Fill\"\n            Opacity=\"0.7\"\n            Source=\"fluent_ui_background.jpg\"\n            VerticalOptions=\"Fill\" />\n\n        <!--<acrylic:AcrylicView\n            Padding=\"0,30,0,0\"\n            BorderColor=\"Black\"\n            BorderThickness=\"5\"\n            CornerRadius=\"8\"\n            EffectStyle=\"Dark\"\n            HeightRequest=\"350\"\n            HorizontalOptions=\"Center\"\n            TintOpacity=\".15 \"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"550\">-->\n        <Border\n            BackgroundColor=\"#252526\"\n            HeightRequest=\"330\"\n            HorizontalOptions=\"Center\"\n            Stroke=\"Black\"\n            StrokeShape=\"RoundRectangle 6\"\n            StrokeThickness=\"5\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"500\">\n            <CollectionView\n                HorizontalOptions=\"Center\"\n                ItemTemplate=\"{x:StaticResource HorizontalWrapLayoutItemTemplate}\"\n                ItemsSource=\"{x:Binding ControlGroups,\n                                        Mode=OneWay}\"\n                VerticalOptions=\"Center\">\n                <CollectionView.ItemsLayout>\n                    <GridItemsLayout\n                        HorizontalItemSpacing=\"5\"\n                        Orientation=\"Vertical\"\n                        Span=\"3\"\n                        VerticalItemSpacing=\"15\" />\n                </CollectionView.ItemsLayout>\n            </CollectionView>\n        </Border>\n        <!--</acrylic:AcrylicView>-->\n\n        <Button\n            Clicked=\"NavigateToBuiltIn_Clicked\"\n            HorizontalOptions=\"Center\"\n            IsVisible=\"{x:OnPlatform Android=false,\n                                     iOS=true,\n                                     WinUI=false,\n                                     MacCatalyst=false}\"\n            Text=\"Navigate to Built-in\"\n            VerticalOptions=\"End\" />\n    </Grid>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/GalleryPage.xaml.cs",
    "content": "namespace MAUIsland;\npartial class GalleryPage\n{\n    #region [ Fields ]\n    private readonly GalleryPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public GalleryPage(GalleryPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [Event Handlers]\n    private void BrandIconContentView_DetailClicked(ControlGroupInfo control)\n    {\n        this.viewModel.ViewControlsCommand.Execute(control);\n    }\n    private void BrandIconContentView_DetailInNewWindowClicked(ControlGroupInfo control)\n    {\n        this.viewModel.ViewControlsInNewWindowCommand.Execute(control);\n    }\n    private void NavigateToBuiltIn_Clicked(object sender, EventArgs e)\n    {\n        var controlInfo = this.viewModel.ControlGroups.FirstOrDefault(x => x.Title == \"Built-in\");\n        this.viewModel.ViewControlsCommand.Execute(controlInfo);\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/GalleryPageViewModel.cs",
    "content": "﻿namespace MAUIsland;\n\npublic partial class GalleryPageViewModel : NavigationAwareBaseViewModel\n{\n\n    #region [ Fields ]\n    private readonly IControlsService controlsService;\n    #endregion\n\n    #region [ CTor ]\n    public GalleryPageViewModel(IControlsService controlsService,\n                                IAppNavigator appNavigator)\n        : base(appNavigator)\n    {\n        this.controlsService = controlsService;\n    }\n    #endregion\n\n    #region [ Properties ]\n    [ObservableProperty]\n    ObservableCollection<ControlGroupInfo> controlGroups;\n    #endregion\n\n    #region [ Overrides ]\n    protected override async void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        LoadControlsAsync().FireAndForget();\n    }\n    #endregion\n\n    #region [ Methods ]\n    async Task LoadControlsAsync()\n    {\n        var controlGroups = await controlsService.GetControlGroupsAsync();\n\n        ControlGroups = new ObservableCollection<ControlGroupInfo>(controlGroups.Where(x => x.IsVisibile == true));\n    }\n    #endregion\n\n    #region [ RelayCommands ]\n    [RelayCommand]\n    Task ViewControlsAsync(ControlGroupInfo controlGroupInfo)\n        => AppNavigator.NavigateAsync(\n            AppRoutes.CardsByGroupPage,\n            args: controlGroupInfo\n        );\n\n    [RelayCommand]\n    Task ViewControlsInNewWindowAsync(ControlGroupInfo controlGroupInfo)\n        => AppNavigator.NavigateAsync(\n            AppRoutes.CardsByGroupPage,\n            inNewWindow: true,\n            args: controlGroupInfo);\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialButton/MaterialButtonPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.MaterialButtonPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:datagrid=\"clr-namespace:Maui.DataGrid;assembly=Maui.DataGrid\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    Title=\"MaterialButton\"\n    Padding=\"20\"\n    x:DataType=\"core:MaterialButtonPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"materialuilogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            MaterialButton defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                Can contain an optional leading icon.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                Five styles: <strong style=\"color:blue\">FilledButtonStyle</strong>, <strong style=\"color:blue\">ElevatedButtonStyle</strong>, <strong style=\"color:blue\">FilledTonalButtonStyle</strong>, <strong style=\"color:blue\">OutlinedButtonStyle</strong>, and <strong style=\"color:blue\">TextButtonStyle</strong>.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                Keep labels concise and in sentence-case.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                Containers have fully rounded corners and are wide enough to fit label text.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Common buttons prompt most actions in a UI.\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Styles\" />\n                        <core:HorizontalWrapLayout Spacing=\"5\">\n                            <mdc:Button Style=\"{DynamicResource ElevatedButtonStyle}\" Text=\"Elevated\" />\n                            <mdc:Button Style=\"{DynamicResource FilledButtonStyle}\" Text=\"Filled\" />\n                            <mdc:Button Style=\"{DynamicResource FilledTonalButtonStyle}\" Text=\"FilledTonal\" />\n                            <mdc:Button Style=\"{DynamicResource OutlinedButtonStyle}\" Text=\"Outlined\" />\n                            <mdc:Button Style=\"{StaticResource TextButtonStyle}\" Text=\"Text\" />\n                        </core:HorizontalWrapLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding ButtonXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Properties\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Properties}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                                <datagrid:DataGridColumn Title=\"Default Value\" PropertyName=\"DefaultValue\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Events\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Events}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialButton/MaterialButtonPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class MaterialButtonPage : IGalleryPage\n{\n    #region [ CTor ]\n    public MaterialButtonPage(MaterialButtonPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialChip/MaterialChipPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.MaterialChipPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    Title=\"MaterialChip\"\n    Padding=\"20\"\n    x:DataType=\"core:MaterialChipPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            MaterialChip defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">IsChecked</strong>, of type <strong style=\"color:blue\">bool</strong>, Switch's selected state.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">HasIcon</strong>, of type <strong style=\"color:blue\">bool</strong>, enable check-mark icon of the Switch.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">TrackColor</strong>, of type <strong style=\"color:blue\">Color</strong>, Switch's track color.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">ThumbColor</strong>, of type <strong style=\"color:blue\">Color</strong>, Switch's thumb color.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">Shape</strong>, of type <strong style=\"color:blue\">Shape</strong>, corner radius of the Switch's border.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">OutlineColor</strong>, of type <strong style=\"color:blue\">Color</strong>, Switch's border color.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">RippleColor</strong>, of type <strong style=\"color:blue\">Color</strong>, Switch's ripple color.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">Command</strong>, of type <strong style=\"color:blue\">ICommand</strong>, executed when the Switch is CheckedChanged.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">CommandParameter</strong>, of type <strong style=\"color:blue\">object</strong>, Command's parameter.\n    ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <CollectionView\n                        Footer=\"{x:StaticResource PropertiesListFooter}\"\n                        Header=\"{x:StaticResource PropertiesListHeader}\"\n                        ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Styles\" />\n                        <Label Text=\"There are 7 styles of chips: 1. Assist, 2. AssistElevated, 3. Filter, 4. FilterElevated 5. Input, 6. Suggestion, 7. SuggestionElevated.\" />\n                        <core:HorizontalWrapLayout Spacing=\"5\">\n                            <mdc:Chip Style=\"{DynamicResource AssistChipStyle}\" Text=\"chip\" />\n                            <mdc:Chip Style=\"{DynamicResource AssistElevatedChipStyle}\" Text=\"chip\" />\n                            <mdc:Chip Style=\"{DynamicResource FilterChipStyle}\" Text=\"chip\" />\n                            <mdc:Chip Style=\"{DynamicResource FilterElevatedChipStyle}\" Text=\"chip\" />\n                            <mdc:Chip Style=\"{DynamicResource InputChipStyle}\" Text=\"chip\" />\n                            <mdc:Chip Style=\"{DynamicResource SuggestionChipStyle}\" Text=\"chip\" />\n                            <mdc:Chip Style=\"{DynamicResource SuggestionElevatedChipStyle}\" Text=\"chip\" />\n                        </core:HorizontalWrapLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding ChipXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialChip/MaterialChipPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class MaterialChipPage : IGalleryPage\n{\n    #region [CTor]\n    public MaterialChipPage(MaterialChipPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialComboBox/MaterialComboBoxPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.MaterialComboBoxPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:datagrid=\"clr-namespace:Maui.DataGrid;assembly=Maui.DataGrid\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    Title=\"MaterialComboBox\"\n    Padding=\"20\"\n    x:DataType=\"core:MaterialComboBoxPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"materialuilogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            MaterialComboBox defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">Items</strong>, of type <strong style=\"color:blue\">ItemCollection&lt;ComboBoxItem&gt;</strong>, comboBox's items.\n    ]]>\n            </x:String>\n\n\n            <x:String>\n                <![CDATA[\n                    <strong style=\"color:blue\">ItemsSource</strong>, of type <strong style=\"color:blue\">IList</strong>, comboBox's items.\n                ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    <strong style=\"color:blue\">SelectedIndex</strong>, of type <strong style=\"color:blue\">int</strong>, comboBox's items selected index.\n                ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    <strong style=\"color:blue\">LabelText</strong>, of type <strong style=\"color:blue\">string</strong>, comboBox's label text.\n                ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    <strong style=\"color:blue\">LabelTextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, comboBox's label text color.\n                ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    <strong style=\"color:blue\">ActiveIndicatorHeight</strong>, of type <strong style=\"color:blue\">int</strong>, comboBox's active indicator height.\n                ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    <strong style=\"color:blue\">ActiveIndicatorColor</strong>, of type <strong style=\"color:blue\">Color</strong>, comboBox's active indicator color.\n                ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    <strong style=\"color:blue\">BackgroundColour</strong>, of type <strong style=\"color:blue\">Color</strong>, comboBox's background color.\n                ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    <strong style=\"color:blue\">ForegroundColor</strong>, of type <strong style=\"color:blue\">Color</strong>, comboBox's foreground color.\n                ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">FontFamily</strong>, of type <strong style=\"color:blue\">string</strong>, font family of the comboBox's text.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">float</strong>, font size of the comboBox's text.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">FontWeight</strong>, of type <strong style=\"color:blue\">int</strong>, font weight of the comboBox's text.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">FontItalic</strong>, of type <strong style=\"color:blue\">bool</strong>, enable font italic of the comboBox's text.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">Shape</strong>, of type <strong style=\"color:blue\">Shape</strong>, corner radius of the comboBox's border.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">OutlineWidth</strong>, of type <strong style=\"color:blue\">int</strong>, comboBox's border width.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">OutlineColor</strong>, of type <strong style=\"color:blue\">Color</strong>, comboBox's border color.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">RippleColor</strong>, of type <strong style=\"color:blue\">Color</strong>, comboBox's ripple color.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">Style</strong>, of type <strong style=\"color:blue\">Style</strong>, comboBox's style.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">Command</strong>, of type <strong style=\"color:blue\">ICommand</strong>, executed when the comboBox's is SelectedindexChanged.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">CommandParameter</strong>, of type <strong style=\"color:blue\">object</strong>, Command's parameter.\n    ]]>\n            </x:String>\n\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Styles\" />\n                        <Label Text=\"There are 2 styles of comboBoxs: 1. Filled. 2. Outlined.\" />\n                        <mdc:ComboBox Style=\"{DynamicResource FilledComboBoxStyle}\">\n                            <mdc:MenuItem Text=\"item 1\" />\n                            <mdc:MenuItem Text=\"item 2\" />\n                        </mdc:ComboBox>\n                        <mdc:ComboBox Style=\"{DynamicResource OutlinedComboBoxStyle}\">\n                            <mdc:MenuItem Text=\"item 1\" />\n                            <mdc:MenuItem Text=\"item 2\" />\n                        </mdc:ComboBox>\n                        <core:SourceCodeExpander Code=\"{x:Binding ComboBoxXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Properties\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Properties}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                                <datagrid:DataGridColumn Title=\"Default Value\" PropertyName=\"DefaultValue\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Events\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Events}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialComboBox/MaterialComboBoxPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class MaterialComboBoxPage : IGalleryPage\n{\n    #region [CTor]\n    public MaterialComboBoxPage(MaterialComboBoxPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialContextMenu/MaterialContextMenuPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.MaterialContextMenuPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:datagrid=\"clr-namespace:Maui.DataGrid;assembly=Maui.DataGrid\"\n    xmlns:icon=\"clr-namespace:IconPacks.IconKind;assembly=IconPacks.Material\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    Title=\"MaterialContextMenu\"\n    Padding=\"20\"\n    x:DataType=\"core:MaterialContextMenuPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"materialuilogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            MaterialContextMenu defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">Items</strong>, of type <strong style=\"color:blue\">ItemCollection&lt;MenuItem&gt;</strong>, ContextMenu's items.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">Result</strong>, of type <strong style=\"color:blue\">object</strong>, ContextMenu's result.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">BackgroundColour</strong>, of type <strong style=\"color:blue\">Color</strong>, ContextMenu's background color.\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n        <strong style=\"color:blue\">RippleColor</strong>, of type <strong style=\"color:blue\">Color</strong>, ContextMenu's items ripple color.\n    ]]>\n            </x:String>\n\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <CollectionView\n                        Footer=\"{x:StaticResource PropertiesListFooter}\"\n                        Header=\"{x:StaticResource PropertiesListHeader}\"\n                        ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Examples\" />\n                        <mdc:FAB IconData=\"{Static icon:Material.Settings}\">\n                            <mdc:FAB.ContextMenu>\n                                <mdc:ContextMenu>\n                                    <mdc:MenuItem IconData=\"Menu\" Text=\"item 1\" />\n                                    <mdc:MenuItem IconData=\"Menu\" Text=\"item 2\" />\n                                    <mdc:MenuItem IconData=\"Menu\" Text=\"item 3\" />\n                                </mdc:ContextMenu>\n                            </mdc:FAB.ContextMenu>\n                        </mdc:FAB>\n                        <core:SourceCodeExpander Code=\"{x:Binding ContextMenuXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Properties\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Properties}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                                <datagrid:DataGridColumn Title=\"Default Value\" PropertyName=\"DefaultValue\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Events\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Events}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialContextMenu/MaterialContextMenuPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class MaterialContextMenuPage : IGalleryPage\n{\n    #region [CTor]\n    public MaterialContextMenuPage(MaterialContextMenuPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialFAB/MaterialFABPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.MaterialFABPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:datagrid=\"clr-namespace:Maui.DataGrid;assembly=Maui.DataGrid\"\n    xmlns:icon=\"clr-namespace:IconPacks.IconKind;assembly=IconPacks.Material\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    Title=\"MaterialFAB\"\n    Padding=\"20\"\n    x:DataType=\"core:MaterialFABPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"materialuilogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                    Use a FAB for the most common or important action on a screen.\n            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    Make sure the icon in a FAB is clear and understandable.\n            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    FABs persist on the screen when content is scrolling.\n            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    Three styles: SecondaryFABStyle, SurfaceFABStyle and TertiaryFABStyle.\n            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ButtonStyles\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                    Elevated.\n            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    Filled.\n            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    FilledTonal.\n            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    Outlined.\n            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                    Text.\n            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Styles\" />\n                        <Label Text=\"There are 5 Styles of buttons:\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource ButtonStyles}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <core:HorizontalWrapLayout Spacing=\"5\">\n                            <mdc:Button Style=\"{DynamicResource ElevatedButtonStyle}\" Text=\"Elevated\" />\n                            <mdc:Button Style=\"{DynamicResource FilledButtonStyle}\" Text=\"Filled\" />\n                            <mdc:Button Style=\"{DynamicResource FilledTonalButtonStyle}\" Text=\"FilledTonal\" />\n                            <mdc:Button Style=\"{DynamicResource OutlinedButtonStyle}\" Text=\"Outlined\" />\n                            <mdc:Button Style=\"{StaticResource TextButtonStyle}\" Text=\"Text\" />\n\n                        </core:HorizontalWrapLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding FabXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Properties\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Properties}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                                <datagrid:DataGridColumn Title=\"Default Value\" PropertyName=\"DefaultValue\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Events\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Events}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialFAB/MaterialFABPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class MaterialFABPage : IGalleryPage\n{\n    #region [CTor]\n    public MaterialFABPage(MaterialFABPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialProgressIndicator/MaterialProgressIndicatorPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.MaterialProgressIndicatorPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:datagrid=\"clr-namespace:Maui.DataGrid;assembly=Maui.DataGrid\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    Title=\"MaterialButton\"\n    Padding=\"20\"\n    x:DataType=\"core:MaterialProgressIndicatorPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"materialuilogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            MaterialButton defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                               Use the same progress indicator for all instances of a process (like loading).\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                               Two styles: CircularProgressIndicatorStyle and LinearProgressIndicatorStyle.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                               Never use them as decoration.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                               They capture attention through motion.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <CollectionView\n                        Footer=\"{x:StaticResource PropertiesListFooter}\"\n                        Header=\"{x:StaticResource PropertiesListHeader}\"\n                        ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Examples\" />\n                        <core:HorizontalWrapLayout Spacing=\"5\">\n                            <mdc:ProgressIndicator Style=\"{DynamicResource CircularProgressIndicatorStyle}\" />\n                            <mdc:ProgressIndicator Style=\"{DynamicResource LinearProgressIndicatorStyle}\" />\n                        </core:HorizontalWrapLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding ProgressIndicatorXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Properties\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Properties}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                                <datagrid:DataGridColumn Title=\"Default Value\" PropertyName=\"DefaultValue\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Events\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Events}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialProgressIndicator/MaterialProgressIndicatorPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class MaterialProgressIndicatorPage : IGalleryPage\n{\n    #region [CTor]\n    public MaterialProgressIndicatorPage(MaterialProgressIndicatorPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialRadioButton/MaterialRadioButtonPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.MaterialRadioButtonPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:datagrid=\"clr-namespace:Maui.DataGrid;assembly=Maui.DataGrid\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    Title=\"MaterialButton\"\n    Padding=\"20\"\n    x:DataType=\"core:MaterialRadioButtonPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"materialuilogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"ControlInfo\">\n            Radio buttons let people select one option from a set of options.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                Use radio buttons (not switches) when only one item can be selected from a list.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                Label should be scannable.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                Selected items are more prominent than unselected items.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"{x:StaticResource ControlInfo}\" />\n                        <Label Text=\"Horizontal mode\" />\n                        <mdc:RadioButton Orientation=\"Horizontal\">\n                            <mdc:RadioItem Text=\"item 1\" />\n                            <mdc:RadioItem Text=\"item 2\" />\n                            <mdc:RadioItem Text=\"item 3\" />\n                        </mdc:RadioButton>\n                        <Label Text=\"Vertical Mode\" />\n                        <mdc:RadioButton Orientation=\"Vertical\">\n                            <mdc:RadioItem Text=\"item 1\" />\n                            <mdc:RadioItem Text=\"item 2\" />\n                            <mdc:RadioItem Text=\"item 3\" />\n                        </mdc:RadioButton>\n                        <core:SourceCodeExpander Code=\"{x:Binding RadioButtonXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Properties\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Properties}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                                <datagrid:DataGridColumn Title=\"Default Value\" PropertyName=\"DefaultValue\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Events\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Events}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"RadioItem Properties\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding RadioItemProperties}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                                <datagrid:DataGridColumn Title=\"Default Value\" PropertyName=\"DefaultValue\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"RadioItem Events\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding RadioItemEvents}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialRadioButton/MaterialRadioButtonPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class MaterialRadioButtonPage : IGalleryPage\n{\n    #region [CTor]\n    public MaterialRadioButtonPage(MaterialRadioButtonPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialSwitch/MaterialSwitchPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.MaterialSwitchPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:datagrid=\"clr-namespace:Maui.DataGrid;assembly=Maui.DataGrid\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    Title=\"MaterialSwitch\"\n    Padding=\"20\"\n    x:DataType=\"core:MaterialSwitchPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"materialuilogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            MaterialSwitch defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                            Use switches (not radio buttons) if the items in a list can be independently controlled.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                            Switches are the best way to let users adjust settings.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                            Make sure the switch’s selection (on or off) is visible at a glance.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                            Two styles: DefaultSwitchStyle and MarkSwitchStyle.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Examples\" />\n                        <core:HorizontalWrapLayout Spacing=\"5\">\n                            <mdc:Switch />\n                            <mdc:Switch />\n                            <mdc:Switch IsSelected=\"True\" />\n                        </core:HorizontalWrapLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding SwitchXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Properties\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Properties}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                                <datagrid:DataGridColumn Title=\"Default Value\" PropertyName=\"DefaultValue\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Events\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Events}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialSwitch/MaterialSwitchPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class MaterialSwitchPage : IGalleryPage\n{\n    #region [CTor]\n    public MaterialSwitchPage(MaterialSwitchPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialTextField/MaterialTextFieldPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.MaterialTextFieldPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:datagrid=\"clr-namespace:Maui.DataGrid;assembly=Maui.DataGrid\"\n    xmlns:icon=\"clr-namespace:IconPacks.IconKind;assembly=IconPacks.Material\"\n    xmlns:mdc=\"clr-namespace:Material.Components.Maui;assembly=Material.Components.Maui\"\n    Title=\"MaterialTextField\"\n    Padding=\"20\"\n    x:DataType=\"core:MaterialTextFieldPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"materialuilogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            MaterialTextField defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                            Make sure text fields look interactive\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                            Two types: filled and outlined\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                            The text field’s state (blank, with input, error, etc) should be visible at a glance\n                        ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                            Keep labels and error messages brief and easy to act on\n    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                            Text fields commonly appear in forms and dialogs\n    ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Styles\" />\n                        <Label Text=\"There are 2 Styles of text fields: 1. Filled, 2. Outlined.\" />\n                        <core:HorizontalWrapLayout Spacing=\"5\">\n                            <mdc:TextField\n                                IconData=\"{Static icon:Material.Search}\"\n                                Style=\"{DynamicResource FilledTextFieldStyle}\"\n                                WidthRequest=\"250\" />\n                            <mdc:TextField\n                                IconData=\"{Static icon:Material.Password}\"\n                                IsError=\"True\"\n                                Style=\"{DynamicResource OutlinedTextFieldStyle}\"\n                                SupportingText=\"Incorrect password\"\n                                TrailingIconData=\"Close\"\n                                WidthRequest=\"300\" />\n                        </core:HorizontalWrapLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding TextFieldXamlCode}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Properties\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Properties}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                                <datagrid:DataGridColumn Title=\"Default Value\" PropertyName=\"DefaultValue\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"Subtitle\"\n                            Text=\"Events\" />\n                        <Grid BackgroundColor=\"White\" HeightRequest=\"1\" />\n                        <datagrid:DataGrid\n                            BorderColor=\"Gray\"\n                            HeaderBackground=\"#d0bcff\"\n                            HeaderHeight=\"50\"\n                            ItemsSource=\"{x:Binding Events}\"\n                            RowHeight=\"80\">\n                            <datagrid:DataGrid.Columns>\n                                <datagrid:DataGridColumn Title=\"Name\" PropertyName=\"Name\" />\n                                <datagrid:DataGridColumn Title=\"Data Type\" PropertyName=\"DataType\" />\n                            </datagrid:DataGrid.Columns>\n                        </datagrid:DataGrid>\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Material/Controls/MaterialTextField/MaterialTextFieldPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class MaterialTextFieldPage : IGalleryPage\n{\n    #region [CTor]\n    public MaterialTextFieldPage(MaterialTextFieldPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfAvatarView/SfAvatarViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SfAvatarViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:badge=\"clr-namespace:Syncfusion.Maui.Core;assembly=Syncfusion.Maui.Core\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:inputs=\"clr-namespace:Syncfusion.Maui.Inputs;assembly=Syncfusion.Maui.Inputs\"\n    xmlns:sfavatar=\"clr-namespace:Syncfusion.Maui.Core;assembly=Syncfusion.Maui.Core\"\n    Title=\"SfAvatarView\"\n    Padding=\"20\"\n    x:DataType=\"core:SfAvatarViewPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET MAUI Avatar View control provides a graphical representation of user image that allows you to customize the view by adding image, background color, icon, text, etc.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Key features:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader1\">\n            You can directly set value to the circle in the SfAvatarView using the following styles:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader2\">\n            You can directly set value to the square in the SfAvatarView using the following styles:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter1\">\n            The following code sample demonstrates how to define visual style of circle AvatarView.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter2\">\n            The following code sample demonstrates how to define visual style of square AvatarView.\n        </x:String>\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                Supports for adding image and initials.\n                ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                Customizes the height, width, Stroke, BackgroundColor, and CornerRadius of the view.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">GroupView</strong>: Supports to add maximum three custom images or initials in a single view.\n                ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                Supports different types of visual styles.\n                ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                Supports <strong style=\"color:blue\">BadgeView</strong>.\n                ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSource1\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                ExtraLargeCircle\n                ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                LargeCircle\n                ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                MediumCircle\n                ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                SmallCircle\n                ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                ExtraSmallCircle\n                ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSource2\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                ExtraLargeSquare\n                ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                LargeSquare\n                ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                MediumSquare\n                ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                SmallSquare\n                ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                ExtraSmallSquare\n                ]]>\n            </x:String>\n        </x:Array>\n\n        <Style x:Key=\"AvatarViewStyle\" TargetType=\"sfavatar:SfAvatarView\">\n            <Setter Property=\"VerticalOptions\" Value=\"Center\" />\n            <Setter Property=\"HorizontalOptions\" Value=\"Center\" />\n            <Setter Property=\"ContentType\" Value=\"Custom\" />\n            <Setter Property=\"ImageSource\" Value=\"ellanaa.png\" />\n        </Style>\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"syncfusionlogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"20\">\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Label Text=\"{x:StaticResource ControlInfo}\" />\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <CollectionView\n                        Header=\"{x:StaticResource PropertiesListHeader}\"\n                        ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Adding the .NET MAUI Avatar View control\" />\n                    <Grid>\n                        <sfavatar:SfAvatarView\n                            ContentType=\"Custom\"\n                            CornerRadius=\"30\"\n                            HeightRequest=\"60\"\n                            HorizontalOptions=\"Center\"\n                            ImageSource=\"https://i.imgur.com/fixi8ti.jpg\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"60\" />\n                    </Grid>\n                </VerticalStackLayout>\n\n            </Border>\n\n            <!--  Content Types in SfAvatarView  -->\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"5\">\n                    <inputs:SfComboBox\n                        x:Name=\"comboBox\"\n                        DisplayMemberPath=\"Name\"\n                        ItemsSource=\"{x:Binding TotechsMembers}\"\n                        SelectedItem=\"{x:Binding SelectedTotechsMember,\n                                                 Mode=TwoWay}\" />\n                    <sfavatar:SfAvatarView\n                        ContentType=\"Default\"\n                        HeightRequest=\"60\"\n                        ImageSource=\"{x:Binding SelectedTotechsMember.AvatarUrl,\n                                                Mode=OneWay}\"\n                        WidthRequest=\"60\" />\n                    <Label HorizontalOptions=\"Center\" Text=\"{x:Binding SelectedTotechsMember.Name}\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Label\n                FontAttributes=\"Bold\"\n                FontSize=\"Title\"\n                Text=\"Content Types in SfAvatarView\" />\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Default\" />\n                    <Label Text=\"Default type avatar view is used for displaying the default vector image when initializing without the initials, custom, or group view types.\" />\n                    <sfavatar:SfAvatarView\n                        BackgroundColor=\"OrangeRed\"\n                        ContentType=\"Default\"\n                        CornerRadius=\"30\"\n                        HeightRequest=\"60\"\n                        HorizontalOptions=\"Center\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"60\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"SingleCharacter\" />\n                    <Label Text=\"The SingleCharacter is used for displaying the first character in the string you have set in the InitialsType property.\" />\n                    <sfavatar:SfAvatarView\n                        AvatarName=\"Alex\"\n                        BackgroundColor=\"Bisque\"\n                        ContentType=\"Initials\"\n                        CornerRadius=\"30\"\n                        FontAttributes=\"Bold\"\n                        HeightRequest=\"60\"\n                        HorizontalOptions=\"Center\"\n                        InitialsColor=\"Black\"\n                        InitialsType=\"SingleCharacter\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"60\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"DoubleCharacter\" />\n                    <Label Text=\"The DoubleCharacter is used for displaying a two-characters text you have set in the InitialsType property. If the initials contain one word, it shows the first and last letters of the single string. If it contains two or more words, it displays the first letter of the first string and first letter of the last string.\" />\n                    <sfavatar:SfAvatarView\n                        AvatarName=\"Alex\"\n                        BackgroundColor=\"Bisque\"\n                        ContentType=\"Initials\"\n                        CornerRadius=\"30\"\n                        FontAttributes=\"Bold\"\n                        HeightRequest=\"60\"\n                        InitialsColor=\"Black\"\n                        InitialsType=\"DoubleCharacter\"\n                        WidthRequest=\"60\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Avatar characters\" />\n                    <Label Text=\"You can set the default vector images that already present in avatar view by setting the AvatarCharacter property.\" />\n                    <sfavatar:SfAvatarView\n                        AvatarCharacter=\"Avatar8\"\n                        BackgroundColor=\"DeepSkyBlue\"\n                        ContentType=\"AvatarCharacter\"\n                        CornerRadius=\"30\"\n                        HeightRequest=\"60\"\n                        HorizontalOptions=\"Center\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"60\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"GroupView\" />\n                    <Label Text=\"You can add maximum three images or initials in the same view using a GroupView type.  Set the InitialsMemberPath for displaying the initials in the group view. For image, set the ImageSourceMemberPath. The following code sample demonstrates how to add images using the GroupSource property.\" />\n                    <sfavatar:SfAvatarView\n                        BackgroundColorMemberPath=\"Colors\"\n                        ContentType=\"Group\"\n                        CornerRadius=\"30\"\n                        GroupSource=\"{Binding CollectionImages}\"\n                        HeightRequest=\"60\"\n                        HorizontalOptions=\"Center\"\n                        ImageSourceMemberPath=\"ImageSource\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"60\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Add initials only in GroupView\" />\n                    <Label Text=\"You can set the initials only in the group view by setting the InitialsMemberPath alone. It is demonstrated in the following code sample.\" />\n                    <sfavatar:SfAvatarView\n                        BackgroundColorMemberPath=\"Colors\"\n                        ContentType=\"Group\"\n                        CornerRadius=\"30\"\n                        GroupSource=\"{Binding CollectionImages}\"\n                        HeightRequest=\"60\"\n                        HorizontalOptions=\"Center\"\n                        InitialsMemberPath=\"Name\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"60\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <!--  Visual Style in .NET MAUI Avatar View(SfAvatarView)  -->\n            <Label\n                FontAttributes=\"Bold\"\n                FontSize=\"Title\"\n                Text=\"Visual Style in .NET MAUI Avatar View(SfAvatarView)\" />\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Circle\" />\n                    <CollectionView\n                        Footer=\"{x:StaticResource PropertiesListFooter1}\"\n                        Header=\"{x:StaticResource PropertiesListHeader1}\"\n                        ItemsSource=\"{x:StaticResource PropertiesItemsSource1}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Grid\n                    ColumnDefinitions=\"*,*,*,*,*\"\n                    ColumnSpacing=\"5\"\n                    RowDefinitions=\"*, *\"\n                    RowSpacing=\"5\">\n                    <sfavatar:SfAvatarView\n                        Grid.Row=\"0\"\n                        Grid.Column=\"4\"\n                        AvatarShape=\"Circle\"\n                        AvatarSize=\"ExtraLarge\"\n                        ImageSource=\"https://i.imgur.com/mauGXij.png\"\n                        Style=\"{StaticResource AvatarViewStyle}\" />\n                    <Label\n                        Grid.Row=\"1\"\n                        Grid.Column=\"4\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"10\"\n                        HorizontalOptions=\"Center\"\n                        HorizontalTextAlignment=\"Center\"\n                        Text=\"ExtraLargeCircle\"\n                        VerticalOptions=\"Center\"\n                        VerticalTextAlignment=\"Center\" />\n\n                    <sfavatar:SfAvatarView\n                        Grid.Row=\"0\"\n                        Grid.Column=\"3\"\n                        AvatarShape=\"Circle\"\n                        AvatarSize=\"Large\"\n                        ImageSource=\"https://i.imgur.com/mauGXij.png\"\n                        Style=\"{StaticResource AvatarViewStyle}\" />\n                    <Label\n                        Grid.Row=\"1\"\n                        Grid.Column=\"3\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"10\"\n                        HorizontalOptions=\"Center\"\n                        HorizontalTextAlignment=\"Center\"\n                        Text=\"LargeCircle\"\n                        VerticalOptions=\"Center\"\n                        VerticalTextAlignment=\"Center\" />\n\n                    <sfavatar:SfAvatarView\n                        Grid.Row=\"0\"\n                        Grid.Column=\"2\"\n                        AvatarShape=\"Circle\"\n                        AvatarSize=\"Medium\"\n                        ImageSource=\"https://i.imgur.com/mauGXij.png\"\n                        Style=\"{StaticResource AvatarViewStyle}\" />\n                    <Label\n                        Grid.Row=\"1\"\n                        Grid.Column=\"2\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"10\"\n                        HorizontalOptions=\"Center\"\n                        HorizontalTextAlignment=\"Center\"\n                        Text=\"MediumCircle\"\n                        VerticalOptions=\"Center\"\n                        VerticalTextAlignment=\"Center\" />\n\n                    <sfavatar:SfAvatarView\n                        Grid.Row=\"0\"\n                        Grid.Column=\"1\"\n                        AvatarShape=\"Circle\"\n                        AvatarSize=\"Small\"\n                        ImageSource=\"https://i.imgur.com/mauGXij.png\"\n                        Style=\"{StaticResource AvatarViewStyle}\" />\n                    <Label\n                        Grid.Row=\"1\"\n                        Grid.Column=\"1\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"10\"\n                        HorizontalOptions=\"Center\"\n                        HorizontalTextAlignment=\"Center\"\n                        Text=\"SmallCircle\"\n                        VerticalOptions=\"Center\"\n                        VerticalTextAlignment=\"Center\" />\n\n                    <sfavatar:SfAvatarView\n                        Grid.Row=\"0\"\n                        Grid.Column=\"0\"\n                        AvatarShape=\"Circle\"\n                        AvatarSize=\"ExtraSmall\"\n                        ImageSource=\"https://i.imgur.com/mauGXij.png\"\n                        Style=\"{StaticResource AvatarViewStyle}\" />\n                    <Label\n                        Grid.Row=\"1\"\n                        Grid.Column=\"0\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"10\"\n                        HorizontalOptions=\"Center\"\n                        HorizontalTextAlignment=\"Center\"\n                        Text=\"ExtraSmallCircle\"\n                        VerticalOptions=\"Center\"\n                        VerticalTextAlignment=\"Center\" />\n                </Grid>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Square\" />\n                    <CollectionView\n                        Footer=\"{x:StaticResource PropertiesListFooter2}\"\n                        Header=\"{x:StaticResource PropertiesListHeader2}\"\n                        ItemsSource=\"{x:StaticResource PropertiesItemsSource2}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Grid\n                    ColumnDefinitions=\"*,*,*,*,*\"\n                    ColumnSpacing=\"5\"\n                    RowDefinitions=\"*, *\"\n                    RowSpacing=\"5\">\n\n                    <sfavatar:SfAvatarView\n                        Grid.Row=\"0\"\n                        Grid.Column=\"4\"\n                        AvatarShape=\"Square\"\n                        AvatarSize=\"ExtraLarge\"\n                        ImageSource=\"https://i.imgur.com/mauGXij.png\"\n                        Style=\"{StaticResource AvatarViewStyle}\" />\n                    <Label\n                        Grid.Row=\"1\"\n                        Grid.Column=\"4\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"10\"\n                        HorizontalOptions=\"Center\"\n                        HorizontalTextAlignment=\"Center\"\n                        Text=\"ExtraLargeSquare\"\n                        VerticalOptions=\"Center\"\n                        VerticalTextAlignment=\"Center\" />\n\n                    <sfavatar:SfAvatarView\n                        Grid.Row=\"0\"\n                        Grid.Column=\"3\"\n                        AvatarShape=\"Square\"\n                        AvatarSize=\"Large\"\n                        ImageSource=\"https://i.imgur.com/mauGXij.png\"\n                        Style=\"{StaticResource AvatarViewStyle}\" />\n                    <Label\n                        Grid.Row=\"1\"\n                        Grid.Column=\"3\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"10\"\n                        HorizontalOptions=\"Center\"\n                        HorizontalTextAlignment=\"Center\"\n                        Text=\"LargeSquare\"\n                        VerticalOptions=\"Center\"\n                        VerticalTextAlignment=\"Center\" />\n\n                    <sfavatar:SfAvatarView\n                        Grid.Row=\"0\"\n                        Grid.Column=\"2\"\n                        AvatarShape=\"Square\"\n                        AvatarSize=\"Medium\"\n                        ImageSource=\"https://i.imgur.com/mauGXij.png\"\n                        Style=\"{StaticResource AvatarViewStyle}\" />\n                    <Label\n                        Grid.Row=\"1\"\n                        Grid.Column=\"2\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"10\"\n                        HorizontalOptions=\"Center\"\n                        HorizontalTextAlignment=\"Center\"\n                        Text=\"MediumSquare\"\n                        VerticalOptions=\"Center\"\n                        VerticalTextAlignment=\"Center\" />\n\n                    <sfavatar:SfAvatarView\n                        Grid.Row=\"0\"\n                        Grid.Column=\"1\"\n                        AvatarShape=\"Square\"\n                        AvatarSize=\"Small\"\n                        ImageSource=\"https://i.imgur.com/mauGXij.png\"\n                        Style=\"{StaticResource AvatarViewStyle}\" />\n                    <Label\n                        Grid.Row=\"1\"\n                        Grid.Column=\"1\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"10\"\n                        HorizontalOptions=\"Center\"\n                        HorizontalTextAlignment=\"Center\"\n                        Text=\"SmallSquare\"\n                        VerticalOptions=\"Center\"\n                        VerticalTextAlignment=\"Center\" />\n\n                    <sfavatar:SfAvatarView\n                        Grid.Row=\"0\"\n                        Grid.Column=\"0\"\n                        AvatarShape=\"Square\"\n                        AvatarSize=\"ExtraSmall\"\n                        ImageSource=\"https://i.imgur.com/mauGXij.png\"\n                        Style=\"{StaticResource AvatarViewStyle}\" />\n                    <Label\n                        Grid.Row=\"1\"\n                        Grid.Column=\"0\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"10\"\n                        HorizontalOptions=\"Center\"\n                        HorizontalTextAlignment=\"Center\"\n                        Text=\"ExtraSmallSquare\"\n                        VerticalOptions=\"Center\"\n                        VerticalTextAlignment=\"Center\" />\n\n                </Grid>\n            </Border>\n\n            <!--  Customization in SfAvatarView  -->\n            <Label\n                FontAttributes=\"Bold\"\n                FontSize=\"Title\"\n                Text=\"Customization in SfAvatarView\" />\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Stroke\" />\n                    <Label Text=\"The Stroke property is used for setting color to the stroke of SfAvatarView.\" />\n                    <Grid>\n                        <sfavatar:SfAvatarView\n                            AvatarShape=\"Circle\"\n                            AvatarSize=\"Large\"\n                            ContentType=\"Default\"\n                            HorizontalOptions=\"Center\"\n                            ImageSource=\"https://i.imgur.com/O9SgXez.jpg\"\n                            Stroke=\"Tomato\"\n                            VerticalOptions=\"Center\" />\n                    </Grid>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Default background color\" />\n                    <Label Text=\"The background color for the SfAvatarView control can be set using the AvatarColorMode property. When the AvatarColorMode property is set to default, it displays the background color set in the BackgroundColor property.\" />\n                    <Grid>\n                        <sfavatar:SfAvatarView\n                            AvatarColorMode=\"Default\"\n                            AvatarName=\"Alex\"\n                            AvatarShape=\"Circle\"\n                            AvatarSize=\"Large\"\n                            BackgroundColor=\"Bisque\"\n                            ContentType=\"Initials\"\n                            HorizontalOptions=\"Center\"\n                            Stroke=\"Black\"\n                            VerticalOptions=\"Center\" />\n                    </Grid>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Dark color\" />\n                    <Label Text=\"The dark background color can be set using DarkBackground in the AvatarColorMode property.\" />\n                    <Grid>\n                        <sfavatar:SfAvatarView\n                            AvatarColorMode=\"DarkBackground\"\n                            AvatarName=\"Alex\"\n                            AvatarShape=\"Circle\"\n                            AvatarSize=\"Large\"\n                            ContentType=\"Initials\"\n                            HorizontalOptions=\"Center\"\n                            InitialsType=\"DoubleCharacter\"\n                            Stroke=\"Black\"\n                            VerticalOptions=\"Center\" />\n                    </Grid>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Light color\" />\n                    <Label Text=\"The light background color can be set using LightBackground in the AvatarColorMode property.\" />\n                    <Grid>\n                        <sfavatar:SfAvatarView\n                            AvatarColorMode=\"LightBackground\"\n                            AvatarName=\"Alex\"\n                            AvatarShape=\"Circle\"\n                            AvatarSize=\"Large\"\n                            ContentType=\"Initials\"\n                            HorizontalOptions=\"Center\"\n                            InitialsType=\"DoubleCharacter\"\n                            Stroke=\"Black\"\n                            VerticalOptions=\"Center\" />\n                    </Grid>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Gradients\" />\n                    <Label Text=\"You can also specify a range of colors using LinearGradientBrush in Background Property as demonstrated in the following code example.\" />\n                    <sfavatar:SfAvatarView\n                        AvatarName=\"Alex\"\n                        AvatarShape=\"Circle\"\n                        AvatarSize=\"Large\"\n                        ContentType=\"Initials\"\n                        HorizontalOptions=\"Center\"\n                        InitialsType=\"DoubleCharacter\"\n                        VerticalOptions=\"Center\">\n                        <sfavatar:SfAvatarView.Background>\n                            <LinearGradientBrush StartPoint=\"0,0\" EndPoint=\"1,0\">\n                                <GradientStop Offset=\"0\" Color=\"#2F9BDF\" />\n                                <GradientStop Offset=\"1\" Color=\"#51F1F2\" />\n                            </LinearGradientBrush>\n                        </sfavatar:SfAvatarView.Background>\n                    </sfavatar:SfAvatarView>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Stroke Thickness\" />\n                    <Label Text=\"You can customize the thickness of the avatar view using the StrokeThickness property.\" />\n                    <Grid>\n                        <sfavatar:SfAvatarView\n                            AvatarShape=\"Circle\"\n                            AvatarSize=\"Large\"\n                            ContentType=\"Default\"\n                            HorizontalOptions=\"Center\"\n                            ImageSource=\"https://i.imgur.com/mauGXij.png\"\n                            Stroke=\"LightGreen\"\n                            StrokeThickness=\"4\"\n                            VerticalOptions=\"Center\" />\n                    </Grid>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Corner radius\" />\n                    <Label Text=\"You can customize the corner radius of the avatar view using the CornerRadius property.\" />\n                    <Grid>\n                        <sfavatar:SfAvatarView\n                            ContentType=\"Default\"\n                            CornerRadius=\"20\"\n                            HeightRequest=\"60\"\n                            HorizontalOptions=\"Center\"\n                            ImageSource=\"https://i.imgur.com/fixi8ti.jpg\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"60\" />\n                    </Grid>\n                </VerticalStackLayout>\n            </Border>\n\n            <!--  Set badge view to avatar  -->\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Set badge view to avatar\" />\n                    <Label Text=\"The SfAvatarView control provides support for BadgeView to notify users of new or unread messages, notifications, or the status of something.\" />\n                    <badge:SfBadgeView HorizontalOptions=\"Center\" VerticalOptions=\"Center\">\n                        <badge:SfBadgeView.Content>\n                            <sfavatar:SfAvatarView\n                                ContentType=\"Custom\"\n                                CornerRadius=\"30\"\n                                HeightRequest=\"60\"\n                                HorizontalOptions=\"Center\"\n                                ImageSource=\"https://i.imgur.com/O9SgXez.jpg\"\n                                VerticalOptions=\"Center\"\n                                WidthRequest=\"60\" />\n                        </badge:SfBadgeView.Content>\n                        <badge:SfBadgeView.BadgeSettings>\n                            <badge:BadgeSettings\n                                Animation=\"Scale\"\n                                Icon=\"Available\"\n                                Position=\"BottomRight\"\n                                Type=\"Success\"\n                                Offset=\"-2,-2\" />\n                        </badge:SfBadgeView.BadgeSettings>\n                    </badge:SfBadgeView>\n                </VerticalStackLayout>\n            </Border>\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfAvatarView/SfAvatarViewPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class SfAvatarViewPage : IGalleryPage\n{\n    #region [ CTor ]\n    public SfAvatarViewPage(SfAvatarViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfBadgeView/SfBadgeViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SfBadgeViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:badge=\"clr-namespace:Syncfusion.Maui.Core;assembly=Syncfusion.Maui.Core\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:inputs=\"clr-namespace:Syncfusion.Maui.Inputs;assembly=Syncfusion.Maui.Inputs\"\n    xmlns:sfavatar=\"clr-namespace:Syncfusion.Maui.Core;assembly=Syncfusion.Maui.Core\"\n    xmlns:syncfusion=\"clr-namespace:Syncfusion.Maui.ListView;assembly=Syncfusion.Maui.ListView\"\n    Title=\"SfBadgeView\"\n    Padding=\"20\"\n    x:DataType=\"core:SfBadgeViewPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"syncfusionlogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Key features:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader1\">\n            The colors of the badge can be customized using the BadgeType property. The badge supports the following eight different essential colors for various situations:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader2\">\n            The badge icon has been changed using the Icon property. Badge icons will be visible when you do not set the badge text. The badge supports the following types of Icon.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Position</strong> : Position the badge text around the badge content.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Predefinded styles</strong> : Customize the badge background with predefined colors.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Animation</strong> : Use animations for badge text.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSource1\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Dark</strong>    \n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Error</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Info</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Light</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Primary</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Secondary</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Success</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Warning</strong>\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSource2\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Add</strong>    \n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Available</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Away</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Busy</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Delete</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Dot</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">None</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Prohibit1</strong>\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Prohibit2</strong>\n                            ]]>\n            </x:String>\n        </x:Array>\n\n    </core:BasePage.Resources>\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"10\">\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <CollectionView\n                        Header=\"{x:StaticResource PropertiesListHeader}\"\n                        ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </VerticalStackLayout>\n            </Border>\n            <Label\n                FontAttributes=\"Bold\"\n                FontSize=\"Title\"\n                Text=\"Getting Started\" />\n            <!--  Adding a content  -->\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Adding a content\" />\n                    <Label Text=\"An Image, button, or label or any view can be added to the Badge View using the Content property.\" />\n                    <badge:SfBadgeView HorizontalOptions=\"Center\" VerticalOptions=\"Center\">\n                        <badge:SfBadgeView.Content>\n                            <Button\n                                HeightRequest=\"60\"\n                                Text=\"Primary\"\n                                WidthRequest=\"120\" />\n                        </badge:SfBadgeView.Content>\n                    </badge:SfBadgeView>\n                    <core:SourceCodeExpander Code=\"{x:Binding AddingAContentXamlCode}\" CodeType=\"Xaml\" />\n                    <Label Text=\"The following screenshot illustrates the result of the above code.\" />\n                    <badge:SfBadgeView\n                        BadgeText=\"20\"\n                        HeightRequest=\"85\"\n                        HorizontalOptions=\"Center\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"150\">\n                        <badge:SfBadgeView.Content>\n                            <Button\n                                HeightRequest=\"60\"\n                                Text=\"Primary\"\n                                WidthRequest=\"120\" />\n                        </badge:SfBadgeView.Content>\n                    </badge:SfBadgeView>\n                    <core:SourceCodeExpander Code=\"{x:Binding AddingAContentSecondXamlCode}\" CodeType=\"Xaml\" />\n                </VerticalStackLayout>\n            </Border>\n            <Label\n                FontAttributes=\"Bold\"\n                FontSize=\"Title\"\n                Text=\"Badge Customization\" />\n            <!--  Font customization  -->\n\n            <!--  Error: BREAK!!!  -->\n\n            <!--  Stroke customization  -->\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Stroke customization\" />\n                    <Label Text=\"The stroke and stroke thickness of the badge view can be customized using the Stroke and StrokeThickness properties, respectively.\" />\n                    <badge:SfBadgeView\n                        BadgeText=\"30\"\n                        HeightRequest=\"85\"\n                        HorizontalOptions=\"Center\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"150\">\n                        <badge:SfBadgeView.Content>\n                            <Button\n                                BackgroundColor=\"#d6d8d7\"\n                                HeightRequest=\"60\"\n                                Text=\"Primary\"\n                                TextColor=\"Black\"\n                                WidthRequest=\"120\" />\n                        </badge:SfBadgeView.Content>\n                        <badge:SfBadgeView.BadgeSettings>\n                            <badge:BadgeSettings Stroke=\"Orange\" StrokeThickness=\"2\" />\n                        </badge:SfBadgeView.BadgeSettings>\n                    </badge:SfBadgeView>\n                    <core:SourceCodeExpander Code=\"{x:Binding StrokeCustomizationXamlCode}\" CodeType=\"Xaml\" />\n                </VerticalStackLayout>\n            </Border>\n            <!--  Text customization  -->\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Text customization\" />\n                    <Label Text=\"The text color and margin of badge view can be changed using the TextColor and TextPadding properties, respectively.\" />\n                    <badge:SfBadgeView\n                        BadgeText=\"45\"\n                        HeightRequest=\"100\"\n                        HorizontalOptions=\"Center\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"170\">\n                        <badge:SfBadgeView.Content>\n                            <Button\n                                BackgroundColor=\"#d6d8d7\"\n                                HeightRequest=\"60\"\n                                Text=\"Primary\"\n                                TextColor=\"Black\"\n                                WidthRequest=\"120\" />\n                        </badge:SfBadgeView.Content>\n                        <badge:SfBadgeView.BadgeSettings>\n                            <badge:BadgeSettings TextColor=\"LightYellow\" TextPadding=\"10\" />\n                        </badge:SfBadgeView.BadgeSettings>\n                    </badge:SfBadgeView>\n                    <core:SourceCodeExpander Code=\"{x:Binding TextCustomizationXamlCode}\" CodeType=\"Xaml\" />\n                </VerticalStackLayout>\n            </Border>\n            <!--  Predefined styles  -->\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Predefined styles\" />\n                    <CollectionView\n                        Header=\"{x:StaticResource PropertiesListHeader1}\"\n                        ItemsSource=\"{x:StaticResource PropertiesItemsSource1}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    <badge:SfBadgeView\n                        BadgeText=\"8\"\n                        HeightRequest=\"65\"\n                        HorizontalOptions=\"Center\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"75\">\n                        <badge:SfBadgeView.Content>\n                            <Image\n                                HeightRequest=\"70\"\n                                Source=\"https://i.imgur.com/mdBNR5T.png\"\n                                WidthRequest=\"60\" />\n                        </badge:SfBadgeView.Content>\n                        <badge:SfBadgeView.BadgeSettings>\n                            <badge:BadgeSettings Type=\"Error\" />\n                        </badge:SfBadgeView.BadgeSettings>\n                    </badge:SfBadgeView>\n                    <core:SourceCodeExpander Code=\"{x:Binding PredefindedSymbolsXamlCode}\" CodeType=\"Xaml\" />\n                </VerticalStackLayout>\n            </Border>\n            <!--  Badge background customization  -->\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Badge background customization\" />\n                    <Label Text=\"Other than the predefined styles, the color of the badge can be customized using the BadgeType property which has to be set as None. Then the color of the badge view can be set using the Background property.\" />\n                    <badge:SfBadgeView\n                        BadgeText=\"48\"\n                        HeightRequest=\"85\"\n                        HorizontalOptions=\"Center\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"150\">\n                        <badge:SfBadgeView.Content>\n                            <Button\n                                BackgroundColor=\"#d6d8d7\"\n                                HeightRequest=\"60\"\n                                Text=\"Primary\"\n                                TextColor=\"Black\"\n                                WidthRequest=\"120\" />\n                        </badge:SfBadgeView.Content>\n                        <badge:SfBadgeView.BadgeSettings>\n                            <badge:BadgeSettings Background=\"Green\" Type=\"None\" />\n                        </badge:SfBadgeView.BadgeSettings>\n                    </badge:SfBadgeView>\n                    <core:SourceCodeExpander Code=\"{x:Binding BadgeBackgroundCustomizationXamlCode}\" CodeType=\"Xaml\" />\n                </VerticalStackLayout>\n            </Border>\n            <!--  Setting corner radius of the badge  -->\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setting corner radius of the badge\" />\n                    <Label Text=\"The CornerRadius property is used to reduce the radius of the corners.\" />\n                    <badge:SfBadgeView\n                        BadgeText=\"100\"\n                        HeightRequest=\"85\"\n                        HorizontalOptions=\"Center\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"160\">\n                        <badge:SfBadgeView.Content>\n                            <Button\n                                BackgroundColor=\"#d6d8d7\"\n                                HeightRequest=\"60\"\n                                Text=\"Primary\"\n                                TextColor=\"Black\"\n                                WidthRequest=\"120\" />\n                        </badge:SfBadgeView.Content>\n                        <badge:SfBadgeView.BadgeSettings>\n                            <badge:BadgeSettings CornerRadius=\"5,5,5,5\" />\n                        </badge:SfBadgeView.BadgeSettings>\n                    </badge:SfBadgeView>\n                    <core:SourceCodeExpander Code=\"{x:Binding CornerRadiusOfTheBadgeXamlCode}\" CodeType=\"Xaml\" />\n                </VerticalStackLayout>\n            </Border>\n            <!--  Alignment of badge  -->\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Alignment of badge\" />\n                    <Label Text=\"Align the badge view using the Center, Start, and End properties of BadgeAlignment property.\" />\n                    <!--  START  -->\n                    <Grid\n                        ColumnDefinitions=\"*,*,*\"\n                        ColumnSpacing=\"5\"\n                        RowDefinitions=\"*\"\n                        RowSpacing=\"5\">\n                        <badge:SfBadgeView\n                            Grid.Row=\"0\"\n                            Grid.Column=\"0\"\n                            BadgeText=\"20\"\n                            HeightRequest=\"113\"\n                            HorizontalOptions=\"Center\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"176\">\n                            <badge:SfBadgeView.Content>\n                                <Label\n                                    Grid.Row=\"1\"\n                                    Grid.Column=\"1\"\n                                    BackgroundColor=\"LightGray\"\n                                    HeightRequest=\"70\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"START\"\n                                    TextColor=\"Black\"\n                                    VerticalTextAlignment=\"Center\"\n                                    WidthRequest=\"120\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings BadgeAlignment=\"Center\" CornerRadius=\"0\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  CENTER  -->\n                        <badge:SfBadgeView\n                            Grid.Row=\"0\"\n                            Grid.Column=\"1\"\n                            BadgeText=\"20\"\n                            HeightRequest=\"80\"\n                            HorizontalOptions=\"Center\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"130\">\n                            <badge:SfBadgeView.Content>\n                                <Label\n                                    Grid.Row=\"1\"\n                                    Grid.Column=\"2\"\n                                    BackgroundColor=\"LightGray\"\n                                    HeightRequest=\"60\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"CENTER\"\n                                    TextColor=\"Black\"\n                                    VerticalTextAlignment=\"Center\"\n                                    WidthRequest=\"100\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings BadgeAlignment=\"Center\" CornerRadius=\"0\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  END  -->\n                        <badge:SfBadgeView\n                            Grid.Row=\"0\"\n                            Grid.Column=\"2\"\n                            BadgeText=\"20\"\n                            HeightRequest=\"60\"\n                            HorizontalOptions=\"Center\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"100\">\n                            <badge:SfBadgeView.Content>\n                                <Label\n                                    Grid.Row=\"1\"\n                                    Grid.Column=\"3\"\n                                    BackgroundColor=\"LightGray\"\n                                    HeightRequest=\"60\"\n                                    HorizontalTextAlignment=\"Center\"\n                                    Text=\"END\"\n                                    TextColor=\"Black\"\n                                    VerticalTextAlignment=\"Center\"\n                                    WidthRequest=\"100\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings BadgeAlignment=\"Center\" CornerRadius=\"0\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                    </Grid>\n                    <core:SourceCodeExpander Code=\"{x:Binding AlignmentOfBadgeXamlCode}\" CodeType=\"Xaml\" />\n                </VerticalStackLayout>\n            </Border>\n            <!--  Position customization  -->\n            <Label\n                FontAttributes=\"Bold\"\n                FontSize=\"Title\"\n                Text=\"Badge Customization\" />\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Text=\"The default position of notification is TopRight. The position can be customized as TopLeft, BottomLeft, BottomRight, Left,Top, Right, and Bottom using the Position property.\" />\n                    <HorizontalStackLayout Spacing=\"50\">\n                        <!--  Left  -->\n                        <badge:SfBadgeView\n                            BadgeText=\"5\"\n                            HeightRequest=\"60\"\n                            HorizontalOptions=\"Center\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"140\">\n                            <badge:SfBadgeView.Content>\n                                <Button\n                                    BackgroundColor=\"#d6d8d7\"\n                                    HeightRequest=\"60\"\n                                    Text=\"Left\"\n                                    TextColor=\"Black\"\n                                    WidthRequest=\"120\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings Position=\"Left\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Top  -->\n                        <badge:SfBadgeView\n                            BadgeText=\"5\"\n                            HeightRequest=\"75\"\n                            HorizontalOptions=\"Center\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"140\">\n                            <badge:SfBadgeView.Content>\n                                <Button\n                                    BackgroundColor=\"#d6d8d7\"\n                                    HeightRequest=\"60\"\n                                    Text=\"Top\"\n                                    TextColor=\"Black\"\n                                    WidthRequest=\"120\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings Position=\"Top\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Right  -->\n                        <badge:SfBadgeView\n                            BadgeText=\"5\"\n                            HorizontalOptions=\"Center\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"140\">\n                            <badge:SfBadgeView.Content>\n                                <Button\n                                    BackgroundColor=\"#d6d8d7\"\n                                    HeightRequest=\"60\"\n                                    Text=\"Right\"\n                                    TextColor=\"Black\"\n                                    WidthRequest=\"120\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings Position=\"Right\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Bottom  -->\n                        <badge:SfBadgeView\n                            BadgeText=\"5\"\n                            HeightRequest=\"80\"\n                            HorizontalOptions=\"Center\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"140\">\n                            <badge:SfBadgeView.Content>\n                                <Button\n                                    BackgroundColor=\"#d6d8d7\"\n                                    HeightRequest=\"60\"\n                                    Text=\"Bottom\"\n                                    TextColor=\"Black\"\n                                    WidthRequest=\"120\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings Position=\"Bottom\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Top right  -->\n                        <badge:SfBadgeView\n                            BadgeText=\"5\"\n                            HeightRequest=\"75\"\n                            HorizontalOptions=\"Center\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"140\">\n                            <badge:SfBadgeView.Content>\n                                <Button\n                                    BackgroundColor=\"#d6d8d7\"\n                                    HeightRequest=\"60\"\n                                    Text=\"Top right\"\n                                    TextColor=\"Black\"\n                                    WidthRequest=\"120\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings Position=\"TopRight\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Bottom left  -->\n                        <badge:SfBadgeView\n                            BadgeText=\"5\"\n                            HeightRequest=\"75\"\n                            HorizontalOptions=\"Center\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"140\">\n                            <badge:SfBadgeView.Content>\n                                <Button\n                                    BackgroundColor=\"#d6d8d7\"\n                                    HeightRequest=\"60\"\n                                    Text=\"Bottom left\"\n                                    TextColor=\"Black\"\n                                    WidthRequest=\"120\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings Position=\"BottomLeft\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Bottom right  -->\n                        <badge:SfBadgeView\n                            BadgeText=\"5\"\n                            HeightRequest=\"75\"\n                            HorizontalOptions=\"Center\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"140\">\n                            <badge:SfBadgeView.Content>\n                                <Button\n                                    BackgroundColor=\"#d6d8d7\"\n                                    HeightRequest=\"60\"\n                                    Text=\"Bottom right\"\n                                    TextColor=\"Black\"\n                                    WidthRequest=\"120\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings Position=\"BottomRight\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Top left  -->\n                        <badge:SfBadgeView\n                            BadgeText=\"5\"\n                            HeightRequest=\"75\"\n                            HorizontalOptions=\"Center\"\n                            VerticalOptions=\"Center\"\n                            WidthRequest=\"140\">\n                            <badge:SfBadgeView.Content>\n                                <Button\n                                    BackgroundColor=\"#d6d8d7\"\n                                    HeightRequest=\"60\"\n                                    Text=\"Top left\"\n                                    TextColor=\"Black\"\n                                    WidthRequest=\"120\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings Position=\"TopLeft\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                    </HorizontalStackLayout>\n                    <core:SourceCodeExpander Code=\"{x:Binding PositionCustomizationXamlCode}\" CodeType=\"Xaml\" />\n                </VerticalStackLayout>\n            </Border>\n            <!--  Setting a badge offset  -->\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setting a badge offset\" />\n                    <Label Text=\"The badge view x,y position can be adjusted using the Offset property.\" />\n                    <!--  Origin  -->\n                    <badge:SfBadgeView\n                        BadgeText=\"8\"\n                        HeightRequest=\"70\"\n                        HorizontalOptions=\"Center\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"60\">\n                        <badge:SfBadgeView.Content>\n                            <Image\n                                HeightRequest=\"70\"\n                                Source=\"https://i.imgur.com/mdBNR5T.png\"\n                                WidthRequest=\"60\" />\n                        </badge:SfBadgeView.Content>\n                        <badge:SfBadgeView.BadgeSettings>\n                            <badge:BadgeSettings\n                                Position=\"BottomRight\"\n                                Type=\"Success\"\n                                Offset=\"0,-1\" />\n                        </badge:SfBadgeView.BadgeSettings>\n                    </badge:SfBadgeView>\n                    <core:SourceCodeExpander Code=\"{x:Binding SettingAbadgeOffsetXamlCode}\" CodeType=\"Xaml\" />\n                </VerticalStackLayout>\n            </Border>\n            <!--  Change your avatarview  -->\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <badge:SfBadgeView\n                        BadgeText=\"8\"\n                        HeightRequest=\"112\"\n                        HorizontalOptions=\"Center\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"65\">\n                        <VerticalStackLayout Spacing=\"10\">\n                            <inputs:SfComboBox\n                                x:Name=\"comboBox\"\n                                DisplayMemberPath=\"Name\"\n                                ItemsSource=\"{x:Binding TotechsMembers}\"\n                                SelectedItem=\"{x:Binding SelectedTotechsMember,\n                                                         Mode=TwoWay}\" />\n                            <sfavatar:SfAvatarView\n                                ContentType=\"Default\"\n                                HeightRequest=\"60\"\n                                ImageSource=\"{x:Binding SelectedTotechsMember.AvatarUrl,\n                                                        Mode=OneWay}\"\n                                WidthRequest=\"60\" />\n                            <Label HorizontalOptions=\"Center\" Text=\"{x:Binding SelectedTotechsMember.Name}\" />\n                        </VerticalStackLayout>\n                        <badge:SfBadgeView.BadgeSettings>\n                            <badge:BadgeSettings\n                                Position=\"BottomRight\"\n                                Type=\"Success\"\n                                Offset=\"0,-1\" />\n                        </badge:SfBadgeView.BadgeSettings>\n                    </badge:SfBadgeView>\n                </VerticalStackLayout>\n            </Border>\n            <!--  Predefined symbols  -->\n            <Label\n                FontAttributes=\"Bold\"\n                FontSize=\"Title\"\n                Text=\"Predefined symbols\" />\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <CollectionView\n                        Header=\"{x:StaticResource PropertiesListHeader2}\"\n                        ItemsSource=\"{x:StaticResource PropertiesItemsSource2}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    <HorizontalStackLayout Spacing=\"140\">\n                        <!--  Away  -->\n                        <badge:SfBadgeView HorizontalOptions=\"Center\" VerticalOptions=\"Center\">\n                            <badge:SfBadgeView.Content>\n                                <Image\n                                    HeightRequest=\"70\"\n                                    Source=\"https://i.imgur.com/mdBNR5T.png\"\n                                    WidthRequest=\"60\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings\n                                    Icon=\"Away\"\n                                    Position=\"BottomRight\"\n                                    Type=\"Warning\"\n                                    Offset=\"-2, -2\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Available  -->\n                        <badge:SfBadgeView HorizontalOptions=\"Center\" VerticalOptions=\"Center\">\n                            <badge:SfBadgeView.Content>\n                                <Image\n                                    HeightRequest=\"70\"\n                                    Source=\"https://i.imgur.com/mdBNR5T.png\"\n                                    WidthRequest=\"60\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings\n                                    Icon=\"Available\"\n                                    Position=\"BottomRight\"\n                                    Type=\"Success\"\n                                    Offset=\"-2, -2\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Add  -->\n                        <badge:SfBadgeView HorizontalOptions=\"Center\" VerticalOptions=\"Center\">\n                            <badge:SfBadgeView.Content>\n                                <Image\n                                    HeightRequest=\"70\"\n                                    Source=\"https://i.imgur.com/mdBNR5T.png\"\n                                    WidthRequest=\"60\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings\n                                    Icon=\"Add\"\n                                    Position=\"BottomRight\"\n                                    Type=\"Success\"\n                                    Offset=\"-2, -2\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Busy  -->\n                        <badge:SfBadgeView HorizontalOptions=\"Center\" VerticalOptions=\"Center\">\n                            <badge:SfBadgeView.Content>\n                                <Image\n                                    HeightRequest=\"70\"\n                                    Source=\"https://i.imgur.com/mdBNR5T.png\"\n                                    WidthRequest=\"60\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings\n                                    Icon=\"Busy\"\n                                    Position=\"BottomRight\"\n                                    Type=\"Error\"\n                                    Offset=\"-2, -2\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Delete  -->\n                        <badge:SfBadgeView HorizontalOptions=\"Center\" VerticalOptions=\"Center\">\n                            <badge:SfBadgeView.Content>\n                                <Image\n                                    HeightRequest=\"70\"\n                                    Source=\"https://i.imgur.com/mdBNR5T.png\"\n                                    WidthRequest=\"60\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings\n                                    Icon=\"Delete\"\n                                    Position=\"BottomRight\"\n                                    Type=\"Error\"\n                                    Offset=\"-2, -2\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Dot  -->\n                        <badge:SfBadgeView HorizontalOptions=\"Center\" VerticalOptions=\"Center\">\n                            <badge:SfBadgeView.Content>\n                                <Image\n                                    HeightRequest=\"70\"\n                                    Source=\"https://i.imgur.com/mdBNR5T.png\"\n                                    WidthRequest=\"60\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings\n                                    Icon=\"Dot\"\n                                    Position=\"BottomRight\"\n                                    Type=\"Error\"\n                                    Offset=\"-5, -6\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Prohibit1  -->\n                        <badge:SfBadgeView HorizontalOptions=\"Center\" VerticalOptions=\"Center\">\n                            <badge:SfBadgeView.Content>\n                                <Image\n                                    HeightRequest=\"70\"\n                                    Source=\"https://i.imgur.com/mdBNR5T.png\"\n                                    WidthRequest=\"60\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings\n                                    Icon=\"Prohibit1\"\n                                    Position=\"BottomRight\"\n                                    Type=\"Warning\"\n                                    Offset=\"-2, -2\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                        <!--  Prohibit2  -->\n                        <badge:SfBadgeView HorizontalOptions=\"Center\" VerticalOptions=\"Center\">\n                            <badge:SfBadgeView.Content>\n                                <Image\n                                    HeightRequest=\"70\"\n                                    Source=\"https://i.imgur.com/mdBNR5T.png\"\n                                    WidthRequest=\"60\" />\n                            </badge:SfBadgeView.Content>\n                            <badge:SfBadgeView.BadgeSettings>\n                                <badge:BadgeSettings\n                                    Icon=\"Prohibit2\"\n                                    Position=\"BottomRight\"\n                                    Type=\"Warning\"\n                                    Offset=\"-2, -2\" />\n                            </badge:SfBadgeView.BadgeSettings>\n                        </badge:SfBadgeView>\n                    </HorizontalStackLayout>\n                    <core:SourceCodeExpander Code=\"{x:Binding PredefinedStylesXamlCode}\" CodeType=\"Xaml\" />\n                </VerticalStackLayout>\n            </Border>\n            <!--  Animation  -->\n            <Label\n                FontAttributes=\"Bold\"\n                FontSize=\"Title\"\n                Text=\"Animation\" />\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"20\">\n                    <Label Text=\"You can enable or disable the animation of the badge text using Scale or None enum values of the BadgeAnimation property. You can see the animation when you change the badge text.\" />\n                    <badge:SfBadgeView\n                        BadgeText=\"{x:Binding Source={x:Reference NotificationCountStepper},\n                                              Path=Value}\"\n                        HeightRequest=\"70\"\n                        HorizontalOptions=\"Center\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"65\">\n                        <badge:SfBadgeView.Content>\n                            <Image\n                                HeightRequest=\"70\"\n                                Source=\"https://i.imgur.com/mdBNR5T.png\"\n                                WidthRequest=\"60\" />\n                        </badge:SfBadgeView.Content>\n                        <badge:SfBadgeView.BadgeSettings>\n                            <badge:BadgeSettings\n                                Animation=\"Scale\"\n                                Position=\"TopRight\"\n                                Type=\"Error\"\n                                Offset=\"0,0\" />\n                        </badge:SfBadgeView.BadgeSettings>\n                    </badge:SfBadgeView>\n                    <Label\n                        FontAttributes=\"Bold\"\n                        HorizontalOptions=\"Center\"\n                        Text=\"{x:Binding Source={x:Reference NotificationCountStepper},\n                                         Path=Value}\" />\n                    <Stepper\n                        x:Name=\"NotificationCountStepper\"\n                        BackgroundColor=\"Black\"\n                        HorizontalOptions=\"Center\" />\n                    <core:SourceCodeExpander Code=\"{x:Binding AnimationBasicXamlCode}\" CodeType=\"Xaml\" />\n                </VerticalStackLayout>\n            </Border>\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfBadgeView/SfBadgeViewPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class SfBadgeViewPage : IGalleryPage\n{\n    #region [CTor]\n    public SfBadgeViewPage(SfBadgeViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfBarcodeGenerator/SfBarcodeGeneratorPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SfBarcodeGeneratorPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:barcode=\"clr-namespace:Syncfusion.Maui.Barcode;assembly=Syncfusion.Maui.Barcode\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"SfBarcodeGenerator\"\n    Padding=\"20\"\n    x:DataType=\"core:SfBarcodeGeneratorPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"syncfusionlogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            SfBarcodeGenerator defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">One-dimensional barcodes</strong> - Barcode Generator supports different one-dimensional barcode symbologies such as Code128, EAN8,EAN13, UPC-A, UPC-E, Code39, Code39 Extended, Code93, and Codabar.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Two-dimensional barcode</strong> - Barcode Generator supports popular QR code and Data Matrix.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Barcode customization</strong> - Customize the visual appearance of barcodes using the BackgroundColor and ForegroundColor properties, and adjust the size of the smallest line or dot of the code using the Module property.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Text customization</strong> - Configure to display the barcode value and customize the position and style of the barcode text.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"20\">\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <CollectionView\n                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                    Header=\"{x:StaticResource PropertiesListHeader}\"\n                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label FontSize=\"Medium\" Text=\"A simple SfBarCodeGenerator Control\" />\n                    <barcode:SfBarcodeGenerator\n                        BackgroundColor=\"White\"\n                        HeightRequest=\"100\"\n                        WidthRequest=\"300\"\n                        Value=\"Welcome to MAUIsland!\" />\n\n                    <core:SourceCodeExpander Code=\"{x:Binding BasicSfBarcodeGeneratorXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label FontSize=\"Medium\" Text=\"QR Code symbology\" />\n                    <barcode:SfBarcodeGenerator\n                        BackgroundColor=\"White\"\n                        HeightRequest=\"100\"\n                        WidthRequest=\"300\"\n                        Value=\"Welcome to MAUIsland!\">\n                        <barcode:SfBarcodeGenerator.Symbology>\n                            <barcode:QRCode />\n                        </barcode:SfBarcodeGenerator.Symbology>\n                    </barcode:SfBarcodeGenerator>\n\n                    <core:SourceCodeExpander Code=\"{x:Binding QrSfBarcodeGeneratorXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label FontSize=\"Medium\" Text=\"Customization\" />\n                    <barcode:SfBarcodeGenerator\n                        BackgroundColor=\"LightCyan\"\n                        ForegroundColor=\"Purple\"\n                        HeightRequest=\"100\"\n                        ShowText=\"True\"\n                        WidthRequest=\"300\"\n                        Value=\"Welcome to MAUIsland!\">\n                        <barcode:SfBarcodeGenerator.TextStyle>\n                            <barcode:BarcodeTextStyle\n                                FontAttributes=\"Italic\"\n                                FontSize=\"16\"\n                                TextColor=\"Red\" />\n                        </barcode:SfBarcodeGenerator.TextStyle>\n                    </barcode:SfBarcodeGenerator>\n\n                    <core:SourceCodeExpander Code=\"{x:Binding CustomSfBarcodeGeneratorXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfBarcodeGenerator/SfBarcodeGeneratorPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class SfBarcodeGeneratorPage : IGalleryPage\n{\n    #region [CTor]\n    public SfBarcodeGeneratorPage(SfBarcodeGeneratorPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfBusyIndicator/SfBusyIndicatorPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SfBusyIndicatorPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:syncfusion-core=\"clr-namespace:Syncfusion.Maui.Core;assembly=Syncfusion.Maui.Core\"\n    Title=\"SfBusyIndicator\"\n    Padding=\"20\"\n    x:DataType=\"core:SfBusyIndicatorPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"syncfusionlogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            SfBusyIndicator defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            These properties are backed by BindableProperty objects, which means that they can be targets of data bindings, and styled.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                Comes with three different animation types [Circular Material, Linear Material and Cupertino].\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                Supports customizing the indicator color, and overlay background.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                The animation duration can be customized.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                Size of the indicator can be customized.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                Supports displaying a title with font customizations.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"20\">\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <CollectionView\n                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                    Header=\"{x:StaticResource PropertiesListHeader}\"\n                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <HorizontalStackLayout Spacing=\"10\">\n                    <syncfusion-core:SfBusyIndicator\n                        AnimationType=\"CircularMaterial\"\n                        HeightRequest=\"30\"\n                        IsRunning=\"True\"\n                        WidthRequest=\"30\" />\n                    <syncfusion-core:SfBusyIndicator\n                        AnimationType=\"Cupertino\"\n                        HeightRequest=\"30\"\n                        IsRunning=\"True\"\n                        WidthRequest=\"30\" />\n                    <syncfusion-core:SfBusyIndicator\n                        AnimationType=\"SingleCircle\"\n                        HeightRequest=\"30\"\n                        IsRunning=\"True\"\n                        WidthRequest=\"30\" />\n                    <syncfusion-core:SfBusyIndicator\n                        AnimationType=\"DoubleCircle\"\n                        HeightRequest=\"30\"\n                        IsRunning=\"True\"\n                        WidthRequest=\"30\" />\n                    <syncfusion-core:SfBusyIndicator\n                        AnimationType=\"LinearMaterial\"\n                        HeightRequest=\"5\"\n                        IsRunning=\"True\"\n                        WidthRequest=\"100\" />\n                </HorizontalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <syncfusion-core:SfBusyIndicator\n                        Title=\"Spinning...\"\n                        FontSize=\"16\"\n                        HeightRequest=\"30\"\n                        IsRunning=\"True\"\n                        TitlePlacement=\"Bottom\"\n                        WidthRequest=\"30\" />\n                    <core:SourceCodeExpander Code=\"{x:Binding SimpleBusyIndicator}\" />\n                </VerticalStackLayout>\n            </Border>\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfBusyIndicator/SfBusyIndicatorPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class SfBusyIndicatorPage : IGalleryPage\n{\n    public SfBusyIndicatorPage(SfBusyIndicatorPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfCartesianChart/SfCartesianChartPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SfCartesianChartPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:inputs=\"clr-namespace:Syncfusion.Maui.Inputs;assembly=Syncfusion.Maui.Inputs\"\n    xmlns:sfavatar=\"clr-namespace:Syncfusion.Maui.Core;assembly=Syncfusion.Maui.Core\"\n    xmlns:syncfusion=\"clr-namespace:Syncfusion.Maui.ListView;assembly=Syncfusion.Maui.ListView\"\n    xmlns:toolkit=\"http://schemas.syncfusion.com/maui/toolkit\"\n    Title=\"SfCartesianChart\"\n    Padding=\"20\"\n    x:DataType=\"core:SfCartesianChartPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"syncfusionlogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET MAUI chart provides a perfect way to visualize data with a high level of user involvement that focuses on development, productivity, and simplicity of use. Chart also provides a wide variety of charting features that can be used to visualize large quantities of data, as well as flexibility in data binding and user customization.\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ Cartesian charts support different types of series and each type of chart represents a unique style of representing data with more user friendly and greater UI visualization. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Allows you to map data from a specified path by achieving the data binding concept. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Interactive zooming allows you to explore portions of large charts in more detail, with excellent performance. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The Cartesian chart provides support for rendering multiple series at the same time, with options to compare and visualize two different series simultaneously. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ User friendly customization support. Cartesian chart provides various options for you to customize chart features, axis, labels, legends, series, etc., and visualize them accordingly. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"SfCartesianChartKeyFeaturesHeader\">\n            Key features:\n        </x:String>\n\n        <x:Array x:Key=\"SfCartesianChartKeyFeatures\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Versatile Cartesian Charts</strong>: Supports multiple series types, each offering a unique way to represent data with an emphasis on user-friendly and visually appealing UI components. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Data Binding</strong>: Allows easy mapping of data through specified paths, enabling flexible data binding. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Interactive Zooming</strong>: Enables users to explore detailed portions of large charts with smooth performance. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Multiple Series Rendering</strong>: Supports rendering multiple series simultaneously, allowing for comparison and visualization of different data sets within the same chart. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Customizable UI</strong>: Offers extensive customization options for chart features, including axes, labels, legends, and series, allowing users to tailor the chart’s appearance and behavior. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"SetupToolkit\">\n            Setup Syncfusion Toolkit\n        </x:String>\n\n        <x:String x:Key=\"AnnotationsHeader\">\n            SfCartesianChart provides annotation support that allows you to mark specific areas of interest in the chart area. This feature enables you to add text, images, and custom views using the following annotations.\n        </x:String>\n\n        <x:Array x:Key=\"AxisProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ Axis can be inverted by using the <strong style=\"color:blue\">IsInversed</strong> property. The default value of this property is <strong style=\"color:blue\">False</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Axis visibility can be controlled using the <strong style=\"color:blue\">IsVisible</strong> property of axis. Default value of <strong style=\"color:blue\">IsVisible</strong> property is <strong style=\"color:blue\">True</strong>. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PaletteBrushesChart\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ By default, chart applies a set of predefined brushes to the series in a predefined order. <strong style=\"color:blue\">SfCartesianChart</strong> provides <strong style=\"color:blue\">PaletteBrushes</strong> property for applying various kinds of custom palettes brushes. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PaletteBrushesSeries\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ Cartesian chart provides support to set the palette to series for applying predefined brushes to the segment. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Gradient for the chart can be set by using the <strong style=\"color:blue\">PaletteBrushes</strong> property with the help of <strong style=\"color:blue\">LinearGradientBrush</strong> or <strong style=\"color:blue\">RadialGradientBrush</strong>.  ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PlottingCustomization\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">SfCartesianChart</strong> allows you to add any view to the chart plot area, which is useful for adding any relevant data, a watermark, or a color gradient to the background of the chart. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"DataLabels\">\n            The ShowDataLabels property of series is used to enable the data labels. Data labels can be customized by using the DataLabelSettings property of chart series. For customizing, need to create an instance of CartesianDataLabelSettings and set to the DataLabelSettings property. Following properties are used to customize the data labels which are available in CartesianDataLabelSettings.\n        </x:String>\n\n        <x:Array x:Key=\"DataLabelProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">BarAlignment</strong> - Gets or sets the data label alignment top, middle or bottom. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">LabelPlacement</strong> - Gets or sets the data label position inside, outside or default. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">LabelStyle</strong> - Gets or sets the options for customizing the data labels. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">UseSeriesPalette</strong> - Gets or sets a value indicating whether the data label should reflect the series interior. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"DataLabelContext\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Percentage</strong> - This will show the percentage value of corresponding data point Y value. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">YValue</strong> - This will show the corresponding Y value. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"SelectionHeader\">\n            The following properties are used to customize the ChartSelectionBehavior:\n        </x:String>\n\n        <x:Array x:Key=\"SelectionBehaviorProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Type</strong> - Gets or sets the <strong style=\"color:blue\">ChartSelectionType</strong> for the selection behavior. There are <strong style=\"color:blue\">Single</strong>, <strong style=\"color:blue\">SingleDeselect</strong>, <strong style=\"color:blue\">Multiple</strong> and <strong style=\"color:blue\">None</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">SelectionBrush</strong> - Gets or sets the brush color for the selection. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">SelectedIndex</strong> - Gets or sets the value of the index to be selected. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">SelectedIndexes</strong> - Gets or sets the list of indexes to be selected. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">ClearSelection</strong> - Used to reset all the selection customizations to default. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"TooltipBehaviorHeader\">\n            The following properties are used to customize the tooltip behavior:\n        </x:String>\n\n        <x:Array x:Key=\"TooltipBehaviorProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Background</strong> - Gets or sets the background color to the tooltip label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontAttributes</strong> - Gets or sets the font style for the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontFamily</strong> - Gets or sets the font family name for the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">FontSize</strong> - Gets or sets the font size for the label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Duration</strong> - Gets or sets the duration of the tooltip text in seconds. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">Margin</strong> - Gets or sets the margin of the label to customize the appearance of label. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ <strong style=\"color:blue\">TextColor</strong> - Used to set the color for the text of the label. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ZoomingProperties\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[ To enable the zooming and panning in the chart, create an instance of <strong style=\"color:blue\">ChartZoomPanBehavior</strong> and set it to the <strong style=\"color:blue\">ZoomPanBehavior</strong> property of <strong style=\"color:blue\">SfCartesianChart</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Pinch zooming is enable by using the <strong style=\"color:blue\">EnablePinchZooming</strong> property to <strong style=\"color:blue\">true</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Directional Zooming is enabled by setting the <strong style=\"color:blue\">EnableDirectionalZooming</strong> property to <strong style=\"color:blue\">true</strong>. The default value of this property is <strong style=\"color:blue\">false</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Zooming the plot area can be achieved by pinch zooming, and also using the properties <strong style=\"color:blue\">ZoomFactor</strong> and <strong style=\"color:blue\">ZoomPosition</strong>. <strong style=\"color:blue\">ZoomFactor</strong> defines the percentage of visible range from the total range of axis values. <strong style=\"color:blue\">ZoomPosition</strong> defines the position for ranges of values that need to be displayed as a result of <strong style=\"color:blue\">ZoomFactor</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The zooming can be done both horizontally and vertically. The zooming direction is defined by using the <strong style=\"color:blue\">ZoomMode</strong> property. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ The <strong style=\"color:blue\">MaximumZoomLevel</strong> property is used to determine the maximum limit for zooming within the chart. Once the zooming operation reaches its limit, further zooming actions are not carried out. The <strong style=\"color:blue\">MaximumZoomLevel</strong> property default value is <strong style=\"color:blue\">double.NaN</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Panning feature allows moving the visible area of the chart when it is zoomed in. To enable panning, you have to set <strong style=\"color:blue\">EnablePanning</strong> property to <strong style=\"color:blue\">true</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[ Selection zooming feature allows users to interactively choose a particular area of the chart and zoom in. By specifying the <strong style=\"color:blue\">EnableSelectionZooming</strong> property to <strong style=\"color:blue\">true</strong> ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"SfListViewHeader\">\n            <Label FontAttributes=\"Bold\" Text=\"{x:StaticResource PropertiesListHeader}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"ChartCollectionTemplate\" x:DataType=\"{x:Type x:String}\">\n            <Border StrokeShape=\"RoundRectangle 4\">\n                <Label Text=\"{x:Binding .}\" FontSize=\"16\" TextColor=\"White\" \n                       Margin=\"10, 5\" HeightRequest=\"30\" LineBreakMode=\"WordWrap\"\n                       VerticalOptions=\"Center\" VerticalTextAlignment=\"Center\"/>\n                <VisualStateManager.VisualStateGroups>\n                    <VisualStateGroup Name=\"CommonStates\">\n                        <VisualState Name=\"Normal\">\n                            <VisualState.Setters>\n                                <Setter Property=\"BackgroundColor\" Value=\"Transparent\"/>\n                            </VisualState.Setters>\n                        </VisualState>\n                        <VisualState Name=\"Selected\">\n                            <VisualState.Setters>\n                                <Setter Property=\"BackgroundColor\" Value=\"#512bd4\"/>\n                                <Setter Property=\"Stroke\" Value=\"#512bd4\"/>\n                            </VisualState.Setters>\n                        </VisualState>\n                    </VisualStateGroup>\n                </VisualStateManager.VisualStateGroups>\n            </Border>\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"HorizontalChartCollectionTemplate\" x:DataType=\"{x:Type x:String}\">\n            <Border StrokeShape=\"RoundRectangle 4\" HorizontalOptions=\"FillAndExpand\" VerticalOptions=\"FillAndExpand\"\n                    Padding=\"5\" Margin=\"0\">\n                <Label Text=\"{x:Binding .}\" FontSize=\"14\" TextColor=\"White\" \n                       VerticalTextAlignment=\"Center\" HorizontalTextAlignment=\"Center\" \n                       VerticalOptions=\"CenterAndExpand\" HorizontalOptions=\"Fill\"\n                       LineBreakMode=\"WordWrap\"/>\n                <VisualStateManager.VisualStateGroups>\n                    <VisualStateGroup Name=\"CommonStates\">\n                        <VisualState Name=\"Normal\">\n                            <VisualState.Setters>\n                                <Setter Property=\"BackgroundColor\" Value=\"Transparent\"/>\n                            </VisualState.Setters>\n                        </VisualState>\n                        <VisualState Name=\"Selected\">\n                            <VisualState.Setters>\n                                <Setter Property=\"BackgroundColor\" Value=\"#512bd4\"/>\n                                <Setter Property=\"Stroke\" Value=\"#512bd4\"/>\n                            </VisualState.Setters>\n                        </VisualState>\n                    </VisualStateGroup>\n                </VisualStateManager.VisualStateGroups>\n            </Border>\n        </DataTemplate>\n    </core:BasePage.Resources>\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"20\">\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Text=\"{x:StaticResource ControlInfo}\" />\n                    <CollectionView Header=\"{x:StaticResource SfCartesianChartKeyFeaturesHeader}\"\n                                    ItemsSource=\"{x:StaticResource SfCartesianChartKeyFeatures}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"5\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\"  Text=\"{x:StaticResource SetupToolkit}\" />\n                    <Label Text=\"To get syncfusion open source Chart Control you can use this instead\"/>\n                    <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\"/>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"5\" Padding=\"5, 0\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\"  Text=\"Cartesian Chart Axis Type\" />\n                    <Label Text=\"Cartesian chart supports the following types of chart axis.\" />\n\n                    <core:SfCartesianChartNumericalAxis ComponentData=\"{x:Binding Column}\" CodeDescription=\"{x:Binding CartesianNumericalAxisXamlCode}\"/>\n                    <core:SfCartesianChartCategoryAxis ComponentData=\"{x:Binding Column}\" CodeDescription=\"{x:Binding CartesianCategoryAxisXamlCode}\"/>\n                    <core:SfCartesianChartDateTimeAxis ComponentData=\"{x:Binding FastLine}\" CodeDescription=\"{x:Binding CartesianDateTimeAxisXamlCode}\"/>\n                    <core:SfCartesianChartLogarithmicAxis ComponentData=\"{x:Binding FirstLine}\" CodeDescription=\"{x:Binding}\"/>\n\n                    <CollectionView ItemsSource=\"{x:StaticResource AxisProperties}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" \n                                    Margin=\"5\"/>\n\n                    <core:SfCartesianChartOtherAxis MultipleAxesComponentData=\"{x:Binding Column}\" \n                                                    AxisCrossingComponentData=\"{x:Binding CrossingAxis}\" \n                                                    MultipleAxesCodeDescription=\"{x:Binding CartesianMultipleAxesXamlCode}\"\n                                                    AxisCrossingCodeDescription=\"{x:Binding CartesianCrossingAxisXamlCode}\"/>\n\n                </VerticalStackLayout>\n            </Border>\n            \n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cartesian Chart Annotations\" />\n                    <Label Text=\"{x:StaticResource AnnotationsHeader}\" />\n\n                    <core:SfCartesianChartAnnotation ComponentData=\"{x:Binding Annotation}\" CodeDescription=\"{x:Binding CartesianAnnotationXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\" Padding=\"1\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cartesian Charts\" />\n                    <Border Margin=\"5, 0\" Padding=\"10\" StrokeShape=\"RoundRectangle 4\">\n                        <HorizontalStackLayout Spacing=\"5\">\n                            <Label Text=\"Charts Menu\" FontSize=\"20\" TextColor=\"White\" VerticalOptions=\"CenterAndExpand\"/>\n                            <ScrollView Orientation=\"Horizontal\" >\n                                <CollectionView x:Name=\"ChartsCollectionView\"\n                                                SelectionMode=\"Single\" \n                                                ItemsSource=\"{x:Binding ChartOptions}\" \n                                                SelectedItem=\"{x:Binding ChartsSelectedOption}\"\n                                                SelectionChanged=\"OnChartSelectionChanged\"\n                                                ItemTemplate=\"{x:StaticResource HorizontalChartCollectionTemplate}\"\n                                                Loaded=\"ChartsCollectionView_Loaded\">\n                                    <CollectionView.ItemsLayout>\n                                        <LinearItemsLayout Orientation=\"Horizontal\" ItemSpacing=\"5\"/>\n                                    </CollectionView.ItemsLayout>\n                                </CollectionView>\n                            </ScrollView>\n                        </HorizontalStackLayout>\n                    </Border>\n\n                    <Grid ColumnDefinitions=\"0.2*, 0.8*\">\n                        <VerticalStackLayout>\n                            <Border x:Name=\"AreaChartMenuView\" Margin=\"5\" Padding=\"10\" StrokeShape=\"RoundRectangle 4\">\n                                <VerticalStackLayout>\n                                    <Label Text=\"Area Charts\" FontSize=\"20\" TextColor=\"White\"/>\n                                    <CollectionView x:Name=\"AreaChartsCollectionView\"\n                                                    SelectionMode=\"Single\" \n                                                    ItemsSource=\"{x:Binding AreaChartOptions}\" \n                                                    SelectedItem=\"{x:Binding AreaSelectedOption}\"\n                                                    SelectionChanged=\"OnAreaChartSelectionChanged\"\n                                                    ItemTemplate=\"{x:StaticResource ChartCollectionTemplate}\" >\n                                        <CollectionView.ItemsLayout>\n                                            <GridItemsLayout Orientation=\"Vertical\" VerticalItemSpacing=\"5\"/>\n                                        </CollectionView.ItemsLayout>\n                                    </CollectionView>\n                                </VerticalStackLayout>\n                            </Border>\n                            <Border x:Name=\"BarChartMenuView\" Margin=\"5\" Padding=\"10\" StrokeShape=\"RoundRectangle 4\">\n                                <VerticalStackLayout>\n                                    <Label Text=\"Bar Charts\" FontSize=\"20\" TextColor=\"White\"/>\n                                    <CollectionView x:Name=\"BarChartsCollectionView\"\n                                                    SelectionMode=\"Single\" \n                                                    ItemsSource=\"{x:Binding BarChartOptions}\" \n                                                    SelectedItem=\"{x:Binding ColumnBarSelectedOption}\"\n                                                    SelectionChanged=\"OnColumnBarChartSelectionChanged\"\n                                                    ItemTemplate=\"{x:StaticResource ChartCollectionTemplate}\" >\n                                        <CollectionView.ItemsLayout>\n                                            <GridItemsLayout Orientation=\"Vertical\" VerticalItemSpacing=\"5\"/>\n                                        </CollectionView.ItemsLayout>\n                                    </CollectionView>\n                                </VerticalStackLayout>\n                            </Border>\n                            <Border x:Name=\"ColumnChartMenuView\" Margin=\"5\" Padding=\"10\" StrokeShape=\"RoundRectangle 4\">\n                                <VerticalStackLayout>\n                                    <Label Text=\"Column Charts\" FontSize=\"20\" TextColor=\"White\"/>\n                                    <CollectionView x:Name=\"ColumnChartsCollectionView\"\n                                                    SelectionMode=\"Single\" \n                                                    ItemsSource=\"{x:Binding ColumnChartOptions}\" \n                                                    SelectedItem=\"{x:Binding ColumnBarSelectedOption}\"\n                                                    SelectionChanged=\"OnColumnBarChartSelectionChanged\"\n                                                    ItemTemplate=\"{x:StaticResource ChartCollectionTemplate}\" >\n                                        <CollectionView.ItemsLayout>\n                                            <GridItemsLayout Orientation=\"Vertical\" VerticalItemSpacing=\"5\"/>\n                                        </CollectionView.ItemsLayout>\n                                    </CollectionView>\n                                </VerticalStackLayout>\n                            </Border>\n                            <Border x:Name=\"LineChartMenuView\" Margin=\"5\" Padding=\"10\" StrokeShape=\"RoundRectangle 4\">\n                                <VerticalStackLayout>\n                                    <Label Text=\"Line Charts\" FontSize=\"20\" TextColor=\"White\"/>\n                                    <CollectionView x:Name=\"LineChartsCollectionView\"\n                                                    SelectionMode=\"Single\" \n                                                    ItemsSource=\"{x:Binding LineChartOptions}\" \n                                                    SelectedItem=\"{x:Binding LineSelectedOption}\"\n                                                    SelectionChanged=\"OnLineChartSelectionChanged\"\n                                                    ItemTemplate=\"{x:StaticResource ChartCollectionTemplate}\" >\n                                        <CollectionView.ItemsLayout>\n                                            <GridItemsLayout Orientation=\"Vertical\" VerticalItemSpacing=\"5\"/>\n                                        </CollectionView.ItemsLayout>\n                                    </CollectionView>\n                                </VerticalStackLayout>\n                            </Border>\n                            <Border x:Name=\"ScatterChartMenuView\" Margin=\"5\" Padding=\"10\" StrokeShape=\"RoundRectangle 4\">\n                                <VerticalStackLayout>\n                                    <Label Text=\"Scatter Charts\" FontSize=\"20\" TextColor=\"White\"/>\n                                    <CollectionView x:Name=\"ScatterChartsCollectionView\"\n                                                    SelectionMode=\"Single\" \n                                                    ItemsSource=\"{x:Binding ScatterChartOptions}\" \n                                                    SelectedItem=\"{x:Binding ScatterSelectedOption}\"\n                                                    SelectionChanged=\"OnScatterChartSelectionChanged\"\n                                                    ItemTemplate=\"{x:StaticResource ChartCollectionTemplate}\" >\n                                        <CollectionView.ItemsLayout>\n                                            <GridItemsLayout Orientation=\"Vertical\" VerticalItemSpacing=\"5\"/>\n                                        </CollectionView.ItemsLayout>\n                                    </CollectionView>\n                                </VerticalStackLayout>\n                            </Border>\n                            <Border x:Name=\"BubbleChartMenuView\" Margin=\"5\" Padding=\"10\" StrokeShape=\"RoundRectangle 4\">\n                                <VerticalStackLayout>\n                                    <Label Text=\"Bubble Charts\" FontSize=\"20\" TextColor=\"White\"/>\n                                    <CollectionView x:Name=\"BubbleChartsCollectionView\"\n                                                    SelectionMode=\"Single\" \n                                                    ItemsSource=\"{x:Binding BubbleChartOptions}\" \n                                                    SelectedItem=\"{x:Binding BubbleSelectedOption}\"\n                                                    SelectionChanged=\"OnBubbleChartSelectionChanged\"\n                                                    ItemTemplate=\"{x:StaticResource ChartCollectionTemplate}\" >\n                                        <CollectionView.ItemsLayout>\n                                            <GridItemsLayout Orientation=\"Vertical\" VerticalItemSpacing=\"5\"/>\n                                        </CollectionView.ItemsLayout>\n                                    </CollectionView>\n                                </VerticalStackLayout>\n                            </Border>\n                            <Border x:Name=\"BoxPlotChartMenuView\" Margin=\"5\" Padding=\"10\" StrokeShape=\"RoundRectangle 4\">\n                                <VerticalStackLayout>\n                                    <Label Text=\"Box Plot Charts\" FontSize=\"20\" TextColor=\"White\"/>\n                                    <CollectionView x:Name=\"BoxPlotChartsCollectionView\"\n                                                    SelectionMode=\"Single\" \n                                                    ItemsSource=\"{x:Binding BoxPlotChartOptions}\" \n                                                    SelectedItem=\"{x:Binding BoxPlotSelectedOption}\"\n                                                    SelectionChanged=\"OnBoxPlotChartSelectionChanged\"\n                                                    ItemTemplate=\"{x:StaticResource ChartCollectionTemplate}\">\n                                        <CollectionView.ItemsLayout>\n                                            <GridItemsLayout Orientation=\"Vertical\" VerticalItemSpacing=\"5\"/>\n                                        </CollectionView.ItemsLayout>\n                                    </CollectionView>\n                                </VerticalStackLayout>\n                            </Border>\n                            <Border x:Name=\"HistogramChartMenuView\" Margin=\"5\" Padding=\"10\" StrokeShape=\"RoundRectangle 4\">\n                                <VerticalStackLayout>\n                                    <Label Text=\"Histogram Charts\" FontSize=\"20\" TextColor=\"White\"/>\n                                    <CollectionView x:Name=\"HistogramChartsCollectionView\"\n                                                    SelectionMode=\"Single\" \n                                                    ItemsSource=\"{x:Binding HistogramChartOptions}\" \n                                                    SelectedItem=\"{x:Binding HistogramSelectedOption}\"\n                                                    SelectionChanged=\"OnHistogramChartSelectionChanged\"\n                                                    ItemTemplate=\"{x:StaticResource ChartCollectionTemplate}\">\n                                        <CollectionView.ItemsLayout>\n                                            <GridItemsLayout Orientation=\"Vertical\" VerticalItemSpacing=\"5\"/>\n                                        </CollectionView.ItemsLayout>\n                                    </CollectionView>\n                                </VerticalStackLayout>\n                            </Border>\n                            <Border x:Name=\"FinancialChartMenuView\" Margin=\"5\" Padding=\"10\" StrokeShape=\"RoundRectangle 4\">\n                                <VerticalStackLayout>\n                                    <Label Text=\"Financial Charts\" FontSize=\"20\" TextColor=\"White\"/>\n                                    <CollectionView x:Name=\"FinancialChartsCollectionView\"\n                                                    SelectionMode=\"Single\" \n                                                    ItemsSource=\"{x:Binding FinancialChartOptions}\" \n                                                    SelectedItem=\"{x:Binding FinancialSelectedOption}\"\n                                                    SelectionChanged=\"OnFinancialChartSelectionChanged\"\n                                                    ItemTemplate=\"{x:StaticResource ChartCollectionTemplate}\">\n                                        <CollectionView.ItemsLayout>\n                                            <GridItemsLayout Orientation=\"Vertical\" VerticalItemSpacing=\"5\"/>\n                                        </CollectionView.ItemsLayout>\n                                    </CollectionView>\n                                </VerticalStackLayout>\n                            </Border>\n                            <Border x:Name=\"WaterfallChartMenuView\" Margin=\"5\" Padding=\"10\" StrokeShape=\"RoundRectangle 4\">\n                                <VerticalStackLayout>\n                                    <Label Text=\"Waterfall Charts\" FontSize=\"20\" TextColor=\"White\"/>\n                                    <CollectionView x:Name=\"WaterfallChartsCollectionView\"\n                                                    SelectionMode=\"Single\" \n                                                    ItemsSource=\"{x:Binding WaterfallChartOptions}\" \n                                                    SelectedItem=\"{x:Binding WaterfallSelectedOption}\"\n                                                    SelectionChanged=\"OnWaterfallChartSelectionChanged\"\n                                                    ItemTemplate=\"{x:StaticResource ChartCollectionTemplate}\">\n                                        <CollectionView.ItemsLayout>\n                                            <GridItemsLayout Orientation=\"Vertical\" VerticalItemSpacing=\"5\"/>\n                                        </CollectionView.ItemsLayout>\n                                    </CollectionView>\n                                </VerticalStackLayout>\n                            </Border>\n                        </VerticalStackLayout>\n\n                        <Grid Grid.Column=\"1\">\n                            <!--Area-->\n                            <core:SfCartesianChartArea x:Name=\"AreaView\" ComponentData=\"{x:Binding Area}\" \n                                                       CodeDescription=\"{x:Binding CartesianAreaChartXamlCode}\"/>\n                            <core:SfCartesianChartSplineArea x:Name=\"SqlineAreaView\" ComponentData=\"{x:Binding Area}\" \n                                                             CodeDescription=\"{x:Binding CartesianSplineAreaChartXamlCode}\" />\n                            <core:SfCartesianChartStepArea x:Name=\"StepAreaView\" ComponentData=\"{x:Binding Area}\" \n                                                           CodeDescription=\"{x:Binding CartesianStepAreaChartXamlCode}\" />\n                            <core:SfCartesianChartRangeArea x:Name=\"RangeAreaView\" ComponentData=\"{x:Binding RangeArea}\" \n                                                            CodeDescription=\"{x:Binding CartesianRangeAreaChartXamlCode}\" />\n                            <core:SfCartesianChartSplineRangeArea x:Name=\"SplineRangeAreaView\" ComponentData=\"{x:Binding RangeArea}\" \n                                                                  CodeDescription=\"{x:Binding CartesianSplineRangeAreaChartXamlCode}\" />\n                            <core:SfCartesianChartStackingArea x:Name=\"StackingAreaView\" ComponentData=\"{x:Binding StackingArea}\" \n                                                               CodeDescription=\"{x:Binding CartesianStackingAreaChartXamlCode}\" />\n                            <core:SfCartesianChartStackingArea100 x:Name=\"StackingArea100View\" ComponentData=\"{x:Binding StackingArea}\" \n                                                                  CodeDescription=\"{x:Binding CartesianStackingArea100ChartXamlCode}\" />\n\n                            <!--Column/Bar-->\n                            <core:SfCartesianChartBar x:Name=\"BarView\" ComponentData=\"{x:Binding Bar}\" \n                                                      BarCodeDescription=\"{x:Binding CartesianBarChartXamlCode}\" \n                                                      DoubleBarCodeDescription=\"{x:Binding CartesianDoubleBarChartXamlCode}\"\n                                                      CustomBarXamlCodeDescription=\"{x:Binding CartesianBarChartXamlCode}\" \n                                                      CustomBarCSharpCodeDescription=\"{x:Binding CartesianCustomBarChartCSharpCode}\"/>\n                            <core:SfCartesianChartErrorBar x:Name=\"ErrorBarView\" ComponentData=\"{x:Binding Bar}\" \n                                                           ErrorBarTypes=\"{x:Binding ErrorBarTypes}\"\n                                                           ErrorBarModes=\"{x:Binding ErrorBarModes}\"\n                                                           ErrorBarDirections=\"{x:Binding ErrorBarDirections}\"\n                                                           DefaultCodeDescription=\"{x:Binding CartesianErrorBarChartXamlCode}\" \n                                                           CustomCodeDescription=\"{x:Binding CartesianCustomErrorBarChartXamlCode}\"/>\n                            <core:SfCartesianChartRangeBar x:Name=\"RangeBarView\" ComponentData=\"{x:Binding RangeBar}\" \n                                                           CodeDescription=\"{x:Binding CartesianRangeBarChartXamlCode}\" />\n                            <core:SfCartesianChartStackingBar x:Name=\"StackingBarView\" ComponentData=\"{x:Binding StackingBar}\"\n                                                              CodeDescription=\"{x:Binding CartesianStackingBarChartXamlCode}\"/>\n                            <core:SfCartesianChartStackingBar100 x:Name=\"StackingBar100View\" ComponentData=\"{x:Binding StackingColumn}\" \n                                                                 CodeDescription=\"{x:Binding CartesianStackingBar100ChartXamlCode}\"/>\n                            <core:SfCartesianChartColumn x:Name=\"ColumnView\" ComponentData=\"{x:Binding Column}\" \n                                                         ColumnXamlCodeDescription=\"{x:Binding CartesianColumnChartXamlCode}\"\n                                                         TripleColumnXamlCodeDescription=\"{x:Binding CartesianTripleColumnChartXamlCode}\"\n                                                         RoundedColumnXamlCodeDescription=\"{x:Binding CartesianRoundedColumnChartXamlCode}\"\n                                                         CustomColumnCSharpCodeDescription=\"{x:Binding CartesianCustomColumnChartCSharpCode}\"\n                                                         CustomColumnXamlCodeDescription=\"{x:Binding CartesianCustomColumnChartXamlCode}\"/>\n                            <core:SfCartesianChartRangeColumn x:Name=\"RangeColumnView\" ComponentData=\"{x:Binding RangeColumn}\"\n                                                              CodeDescription=\"{x:Binding CartesianRangeColumnChartXamlCode}\"/>\n                            <core:SfCartesianChartStackingColumn x:Name=\"StackingColumnView\" ComponentData=\"{x:Binding StackingColumn}\" \n                                                                 CodeDescription=\"{x:Binding CartesianStackingColumnChartXamlCode}\"/>\n                            <core:SfCartesianChartStackingColumn100 x:Name=\"StackingColumn100View\" ComponentData=\"{x:Binding StackingColumn}\" \n                                                                    CodeDescription=\"{x:Binding CartesianStackingColumn100ChartXamlCode}\"/>\n\n                            <!--Line-->\n                            <core:SfCartesianChartLine x:Name=\"LineView\" \n                                                       FirstLineComponentData=\"{x:Binding FirstLine}\" \n                                                       SecondLineComponentData=\"{x:Binding SecondLine}\" \n                                                       LineCodeDescription=\"{x:Binding CartesianLineChartXamlCode}\"\n                                                       DashedLineCodeDescription=\"{x:Binding CartesianDashedLineChartXamlCode}\"/>\n                            <core:SfCartesianChartSpline x:Name=\"SplineView\" \n                                                         FirstLineComponentData=\"{x:Binding FirstLine}\"\n                                                         SecondLineComponentData=\"{x:Binding SecondLine}\"\n                                                         LineCodeDescription=\"{x:Binding CartesianSplineChartXamlCode}\"\n                                                         DashedLineCodeDescription=\"{x:Binding CartesianDashedSplineChartXamlCode}\" />\n                            <core:SfCartesianChartStepLine x:Name=\"StepLineView\" \n                                                           FirstLineComponentData=\"{x:Binding FirstLine}\"\n                                                           SecondLineComponentData=\"{x:Binding SecondLine}\"\n                                                           LineCodeDescription=\"{x:Binding CartesianStepLineChartXamlCode}\"\n                                                           DashedLineCodeDescription=\"{x:Binding CartesianDashedStepLineChartXamlCode}\" \n                                                           VerticalLineCodeDescription=\"{x:Binding CartesianVerticalStepLineChartXamlCode}\"/>\n                            <core:SfCartesianChartStackingLine x:Name=\"StackingLineView\" \n                                                               FirstLineComponentData=\"{x:Binding FirstLine}\"\n                                                               SecondLineComponentData=\"{x:Binding SecondLine}\"\n                                                               ThirdLineComponentData=\"{x:Binding ThirdLine}\"\n                                                               CodeDescription=\"{x:Binding CartesianStepLineChartXamlCode}\"/>\n                            <core:SfCartesianChartStackingLine100 x:Name=\"StackingLine100View\" \n                                                                  FirstLineComponentData=\"{x:Binding FirstLine}\"\n                                                                  SecondLineComponentData=\"{x:Binding SecondLine}\"\n                                                                  ThirdLineComponentData=\"{x:Binding ThirdLine}\"\n                                                                  CodeDescription=\"{x:Binding CartesianStackingLine100ChartXamlCode}\"/>\n                            <core:SfCartesianChartFastLine x:Name=\"FastLineView\" ComponentData=\"{x:Binding FastLine}\" \n                                                           CodeDescription=\"{x:Binding CartesianFastLineChartXamlCode}\"/>\n\n                            <!--Scatter-->\n                            <core:SfCartesianChartScatter x:Name=\"ScatterView\" \n                                                          FirstScatterComponentData=\"{x:Binding FirstScatter}\" \n                                                          SecondScatterComponentData=\"{x:Binding SecondScatter}\" \n                                                          CodeDescription=\"{x:Binding CartesianScatterChartXamlCode}\"/>\n\n                            <!--Bubble-->\n                            <core:SfCartesianChartBubble x:Name=\"BubbleView\" \n                                                         ComponentData=\"{x:Binding Bubble}\" \n                                                         BubbleCodeDescription=\"{x:Binding CartesianBubbleChartXamlCode}\" \n                                                         CustomBubbleCodeDescription=\"{x:Binding CartesianCustomBubbleChartXamlCode}\"/>\n\n                            <!--BoxPlot-->\n                            <core:SfCartesianChartBoxAndWhisker x:Name=\"BoxAndWhiskerView\" \n                                                                ComponentData=\"{x:Binding Box}\" \n                                                                CodeDescription=\"{x:Binding CartesianBoxAndWhiskerChartXamlCode}\"/>\n\n                            <!--Histogram-->\n                            <core:SfCartesianChartHistogram x:Name=\"HistogramView\" \n                                                            ComponentData=\"{x:Binding Histogram}\" \n                                                            CodeDescription=\"{x:Binding CartesianHistogramChartXamlCode}\"/>\n\n                            <!--Financial-->\n                            <core:SfCartesianChartCandle x:Name=\"CandleView\" \n                                                         ComponentData=\"{x:Binding Financial}\" \n                                                         CodeDescription=\"{x:Binding CartesianCandleChartXamlCode}\"/>\n                            <core:SfCartesianChartOHLC x:Name=\"OHLCView\"\n                                                       ComponentData=\"{x:Binding Financial}\"\n                                                       CodeDescription=\"{x:Binding CartesianOHLCChartXamlCode}\"/>\n\n                            <!--Waterfall-->\n                            <core:SfCartesianChartWaterfall x:Name=\"WaterfallView\" \n                                                    ComponentData=\"{x:Binding Waterfall}\" \n                                                    WaterfallCodeDescription=\"{x:Binding CartesianWaterfallChartXamlCode}\"\n                                                    VerticalWaterfallCodeDescription=\"{x:Binding CartesianVerticalWaterfallChartXamlCode}\"/>\n                        </Grid>\n                    </Grid>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cartesian Chart Appearance\" />\n                    <CollectionView ItemsSource=\"{x:StaticResource PaletteBrushesChart}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" \n                                    Margin=\"5\"/>\n                    <core:SfCartesianChartAppearanceChart ComponentData=\"{x:Binding Column}\" \n                                                          PalletBrushesData=\"{x:Binding ColdPalletBrushes}\"\n                                                          CodeDescription=\"{x:Binding CartesianAppearanceChartXamlCode}\"/>\n                    <CollectionView ItemsSource=\"{x:StaticResource PaletteBrushesSeries}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" \n                                    Margin=\"5\"/>\n                    <Grid ColumnDefinitions=\"0.5*, 0.5*\">\n                        <VerticalStackLayout Grid.Column=\"0\">\n                            <core:SfCartesianChartAppearanceSeries ComponentData=\"{x:Binding Column}\" \n                                                                   PalletBrushesData=\"{x:Binding ColdPalletBrushes}\" \n                                                                   CSharpCodeDescription=\"{x:Binding CartesianAppearanceSeriesLinearCSharpCode}\"\n                                                                   XamlCodeDescription=\"{x:Binding CartesianAppearanceSeriesLinearXamlCode}\"/>\n                        </VerticalStackLayout>\n                        <VerticalStackLayout Grid.Column=\"1\">\n                            <core:SfCartesianChartAppearanceSeries ComponentData=\"{x:Binding Column}\" \n                                                                   PalletBrushesData=\"{x:Binding RainbowPalletBrushes}\" \n                                                                   CSharpCodeDescription=\"{x:Binding CartesianAppearanceSeriesGradientCSharpCode}\"\n                                                                   XamlCodeDescription=\"{x:Binding CartesianAppearanceSeriesGradientXamlCode}\"/>\n                        </VerticalStackLayout>\n                    </Grid>\n                    <CollectionView ItemsSource=\"{x:StaticResource PlottingCustomization}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" \n                                    Margin=\"5\"/>\n                    <core:SfCartesianChartPlottingCustomization FirstLineComponentData=\"{x:Binding FirstLine}\" \n                                                                SecondLineComponentData=\"{x:Binding SecondLine}\" \n                                                                CodeDescription=\"{x:Binding CartesianPlottingCustomizationXamlCode}\"/>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"5\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cartesian Chart Plot Bands\" />\n                    <Label Text=\"A plot band, also known as a stripline, allows for shading specific regions or ranges in the plot area background at regular or custom intervals. It also provides options to customize the size of these bands. Text can be added to plot band and indicate the significance of each particular region.\" />\n                    <core:SfCartesianChartPlotBandPropertiesInfo />\n                    <core:SfCartesianChartNumericalPlotBand ComponentData=\"{x:Binding FirstLine}\" CodeDescription=\"{x:Binding CartesianNumericalPlotBandXamlCode}\"/>\n                    <core:SfCartesianChartDateTimePlotBand ComponentData=\"{x:Binding RangeArea}\" CodeDescription=\"{x:Binding CartesianDateTimePlotBandXamlCode}\" />\n                    <core:SfCartesianChartOtherPlotBand ComponentData=\"{x:Binding FirstLine}\" \n                                                        RecursivePlotCodeDescription=\"{x:Binding CartesianRecursivePlotBandXamlCode}\" \n                                                        SegmentedPlotCodeDescription=\"{x:Binding CartesianSegmentedPlotBandXamlCode}\" \n                                                        PlotLineCodeDescription=\"{x:Binding CartesianPlotLineXamlCode}\"/>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"5\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cartesian Chart Data Labels\" />\n                    <Label Text=\"Data labels are used to display values related to a chart segment. Values from data point(x, y) or other custom properties from a data source can be displayed.\" />\n                    <Label Text=\"{x:StaticResource DataLabels}\"/>\n                    <CollectionView ItemsSource=\"{x:StaticResource DataLabelProperties}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    <core:SfCartesianChartDataLabel ComponentData=\"{x:Binding Column}\" CodeDescription=\"{x:Binding CartesianDataLabelAlignmentXamlCode}\"/>\n\n                    <Label Text=\"The content of the label can be customized using the LabelContext property. Following are the two options that are supported.\"/>\n                    <CollectionView ItemsSource=\"{x:StaticResource DataLabelContext}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    <core:SfCartesianChartDataLabelContext ComponentData=\"{x:Binding Column}\" CodeDescription=\"{x:Binding CartesianDataLabelContextXamlCode}\"/>\n\n                    <Label Text=\"The SfCartesianChart provides support to customize the appearance of the data labels using the LabelTemplate property.\"/>\n                    <core:SfCartesianChartDataLabelTemplate ComponentData=\"{x:Binding Column}\" CodeDescription=\"{x:Binding CartesianDataLabelTemplateXamlCode}\"/>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"5\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cartesian Chart Legend\" />\n                    <Label Text=\"The Legend provides a list of series or data points, helping to identify the corresponding data series in the chart.\"/>\n\n                    <core:SfCartesianChartLegend FirstLineComponentData=\"{x:Binding FirstLine}\" \n                                                 SecondLineComponentData=\"{x:Binding SecondLine}\" \n                                                 ThirdLineComponentData=\"{x:Binding ThirdLine}\" \n                                                 LegendCodeDescription=\"{x:Binding CartesianLegendXamlCode}\"\n                                                 ItemLayoutLegendCodeDescription=\"{x:Binding CartesianItemLayoutLegendXamlCode}\"\n                                                 ItemTemplateLegendCodeDescription=\"{x:Binding CartesianItemTemplateLegendXamlCode}\"/>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"5\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cartesian Chart Selection\" />\n                    <Label Text=\"The SfCartesianChart provides selection behavior support, which allows you to select or highlight a segment (data points) or a series in the chart using the DataPointSelectionBehavior and SeriesSelectionBehavior.\"/>\n                    <CollectionView Header=\"{x:StaticResource SelectionHeader}\"\n                                    ItemsSource=\"{x:StaticResource SelectionBehaviorProperties}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n\n                    <core:SfCartesianChartSelection ComponentData=\"{x:Binding Column}\" \n                                                    XamlCodeDescription=\"{x:Binding CartesianSelectionXamlCode}\" \n                                                    CSharpCodeDescription=\"{x:Binding CartesianSelectionCSharpCode}\"/>\n                    <core:SfCartesianChartSeriesSelection ComponentData=\"{x:Binding Column}\" \n                                                          XamlCodeDescription=\"{x:Binding CartesianSeriesSelectionXamlCode}\" \n                                                          CSharpCodeDescription=\"{x:Binding CartesianSeriesSelectionCSharpCode}\"/>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"5\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cartesian Chart Tooltip\" />\n                    <Label Text=\"To define the tooltip in the series, set the EnableTooltip property to true. The default value of EnableTooltip property is false.\"/>\n                    <Label Text=\"The ChartTooltipBehavior is used to customize the tooltip. For customizing the tooltip, create an instance ChartTooltipBehavior and set it to the TooltipBehavior property of SfCartesianChart.\"/>\n                    <CollectionView Header=\"{x:StaticResource TooltipBehaviorHeader}\"\n                                    ItemsSource=\"{x:StaticResource TooltipBehaviorProperties}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n\n                    <core:SfCartesianChartTooltip ComponentData=\"{x:Binding Column}\" \n                                                  TooltipCodeDescription=\"{x:Binding CartesianTooltipXamlCode}\" \n                                                  CustomToolTipCodeDescription=\"{x:Binding CartesianCustomTooltipXamlCode}\"/>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"5\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cartesian Chart Trackball\" />\n                    <Label Text=\"Trackball, which allows you to show the tooltip for the nearest data points when you interact with the chart area. On mobile, long press the chart to show the trackball, and drag the chart to change the trackball’s location constantly. To display the trackball on the desktop, move the cursor over the chart area.\"/>\n\n                    <core:SfCartesianChartTrackball FirstLineComponentData=\"{x:Binding FirstLine}\" \n                                                    SecondLineComponentData=\"{x:Binding SecondLine}\" \n                                                    ThirdLineComponentData=\"{x:Binding ThirdLine}\" \n                                                    LabelDisplayModes=\"{x:Binding TrackballDisplayMode}\"\n                                                    CodeDescription=\"{x:Binding CartesianTrackballXamlCode}\" />\n                    <core:SfCartesianChartCustomTrackball FirstLineComponentData=\"{x:Binding FirstLine}\"\n                                                          SecondLineComponentData=\"{x:Binding SecondLine}\"\n                                                          ThirdLineComponentData=\"{x:Binding ThirdLine}\"\n                                                          SeriesCodeDescription=\"{x:Binding CartesianTrackballSeriesLabelTemplateXamlCode}\"\n                                                          AxisCodeDescription=\"{x:Binding CartesianTrackballAxisLabelTemplateXamlCode}\"/>\n                </VerticalStackLayout>\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"5\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cartesian Chart Zooming and Panning\" />\n                    <Label Text=\"SfCartesianChart allows you to zoom the chart area with the help of the zoom feature. This behavior is mostly used to view the data point in the specific area, when there are large number of data points inside the chart.\"/>\n                    <CollectionView ItemsSource=\"{x:StaticResource ZoomingProperties}\"\n                                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n\n                    <core:SfCartesianChartZooming FirstScatterComponentData=\"{x:Binding FirstScatter}\" \n                                                  SecondScatterComponentData=\"{x:Binding SecondScatter}\" \n                                                  CodeDescription=\"{x:Binding CartesianZoomingXamlCode}\"/>\n                    <core:SfCartesianChartSelectionZooming FirstScatterComponentData=\"{x:Binding FirstScatter}\"\n                                                           SecondScatterComponentData=\"{x:Binding SecondScatter}\"\n                                                           CodeDescription=\"{x:Binding CartesianSelectionZoomingXamlCode}\"/>\n                </VerticalStackLayout>\n            </Border>\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfCartesianChart/SfCartesianChartPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class SfCartesianChartPage : IGalleryPage\n{\n    #region [ Services ]\n    private readonly SfCartesianChartPageViewModel ViewModel;\n    #endregion\n\n    #region [ CTor ]\n    public SfCartesianChartPage(SfCartesianChartPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = ViewModel = vm;\n\n    }\n    #endregion\n\n    #region [ Events ]\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        ViewModel.RefreshCommand.Execute(null);\n        ViewModel.LoadAreaDefaultChartOptionCommand.Execute(null);\n        ViewModel.LoadColumnBarDefaultChartOptionCommand.Execute(null);\n        ViewModel.LoadLineDefaultChartOptionCommand.Execute(null);\n        ViewModel.LoadScatterDefaultChartOptionCommand.Execute(null);\n        ViewModel.LoadHistogramDefaultChartOptionCommand.Execute(null);\n        ViewModel.LoadBoxPlotDefaultChartOptionCommand.Execute(null);\n        ViewModel.LoadBubbleDefaultChartOptionCommand.Execute(null);\n        ViewModel.LoadFinancialDefaultChartOptionCommand.Execute(null);\n        ViewModel.LoadWaterfallDefaultChartOptionCommand.Execute(null);\n    }\n\n    private void ChartsCollectionView_Loaded(object sender, EventArgs e)\n    {\n        ViewModel.LoadChartOptionCommand.Execute(null);\n    }\n\n    private void OnChartSelectionChanged(object sender, SelectionChangedEventArgs e)\n    {\n        InitializeDefaultView();\n\n        var selectedOption = e.CurrentSelection.FirstOrDefault() as string;\n        if (selectedOption != null) \n        { \n            switch (selectedOption)                                                 \n            { \n                case \"Area\":\n                    AreaChartMenuView.IsVisible = true;\n                    AreaChartsCollectionView.IsVisible = true;\n                    var areaSelectedItem = AreaChartsCollectionView.SelectedItem ?? null;\n                    if (areaSelectedItem != null)\n                    {\n                        AreaChartChanged(areaSelectedItem.ToString());\n                    }\n                    break;\n                case \"Column\":\n                    ColumnChartMenuView.IsVisible = true;\n                    BarChartMenuView.IsVisible = true;\n                    ColumnChartsCollectionView.IsVisible = true;\n                    BarChartsCollectionView.IsVisible = true; \n                    var columnBarSelectedItem = ColumnChartsCollectionView.SelectedItem ?? BarChartsCollectionView.SelectedItem ?? null;\n                    if (columnBarSelectedItem != null)\n                    {\n                        ColumnBarChartChanged(columnBarSelectedItem.ToString());\n                    }\n                    break;\n                case \"Line\":\n                    LineChartMenuView.IsVisible= true;\n                    LineChartsCollectionView.IsVisible = true;\n                    var lineSelectedItem = LineChartsCollectionView.SelectedItem ?? null;\n                    if (lineSelectedItem != null)\n                    {\n                        LineChartChanged(lineSelectedItem.ToString());\n                    }\n                    break;\n                case \"Scatter\":\n                    ScatterChartMenuView.IsVisible = true;\n                    ScatterChartsCollectionView.IsVisible = true;\n                    var scatterSelectedItem = ScatterChartsCollectionView.SelectedItem ?? null;\n                    if (scatterSelectedItem != null)\n                    {\n                        ScatterChartChanged(scatterSelectedItem.ToString());\n                    }\n                    break;\n                case \"Histogram\":\n                    HistogramChartMenuView.IsVisible = true;\n                    HistogramChartsCollectionView.IsVisible = true;\n                    var histogramSelectedItem = HistogramChartsCollectionView.SelectedItem ?? null;\n                    if (histogramSelectedItem != null)\n                    {\n                        HistogramChartChanged(histogramSelectedItem.ToString());\n                    }\n                    break;\n                case \"Box Plot\":\n                    BoxPlotChartMenuView.IsVisible = true;\n                    BoxPlotChartsCollectionView.IsVisible = true;\n                    var boxPlotSelectedItem = BoxPlotChartsCollectionView.SelectedItem ?? null;\n                    if (boxPlotSelectedItem != null)\n                    {\n                        BoxPlotChartChanged(boxPlotSelectedItem.ToString());\n                    }\n                    break;\n                case \"Bubble\":\n                    BubbleChartMenuView.IsVisible = true;\n                    BubbleChartsCollectionView.IsVisible = true;\n                    var bubbleSelectedItem = BubbleChartsCollectionView.SelectedItem ?? null;\n                    if (bubbleSelectedItem != null)\n                    {\n                        BubbleChartChanged(bubbleSelectedItem.ToString());\n                    }\n                    break;\n                case \"Financial\":\n                    FinancialChartMenuView.IsVisible = true;\n                    FinancialChartsCollectionView.IsVisible = true;\n                    var financialSelectedItem = FinancialChartsCollectionView.SelectedItem ?? null;\n                    if (financialSelectedItem != null)\n                    {\n                        FinancialChartChanged(financialSelectedItem.ToString());\n                    }\n                    break;\n                case \"Waterfall\":\n                    WaterfallChartMenuView.IsVisible = true;\n                    WaterfallChartsCollectionView.IsVisible = true;\n                    var waterfallSelectedItem = WaterfallChartsCollectionView.SelectedItem ?? null;\n                    if (waterfallSelectedItem != null)\n                    {\n                        WaterfallChartChanged(waterfallSelectedItem.ToString());\n                    }\n                    break;\n            } \n        }\n    }\n\n    private void OnAreaChartSelectionChanged(object sender, SelectionChangedEventArgs e) \n    {\n        AreaDefaultView();\n\n        var selectedOption = e.CurrentSelection.FirstOrDefault() as string;\n        AreaChartChanged(selectedOption);\n    }\n\n    private void OnColumnBarChartSelectionChanged(object sender, SelectionChangedEventArgs e)\n    {\n        BarDefaultView();\n        ColumnDefaultView();\n\n        var selectedOption = e.CurrentSelection.FirstOrDefault() as string;\n        ColumnBarChartChanged(selectedOption);\n    }\n\n    private void OnLineChartSelectionChanged(object sender, SelectionChangedEventArgs e)\n    {\n        LineDefaultView();\n\n        var selectedOption = e.CurrentSelection.FirstOrDefault() as string;\n        LineChartChanged(selectedOption);\n    }\n\n    private void OnScatterChartSelectionChanged(object sender, SelectionChangedEventArgs e)\n    {\n        ScatterDefaultView();\n\n        var selectedOption = e.CurrentSelection.FirstOrDefault() as string;\n        ScatterChartChanged(selectedOption);\n    }\n\n    private void OnBubbleChartSelectionChanged(object sender, SelectionChangedEventArgs e)\n    {\n        BubbleDefaultView();\n\n        var selectedOption = e.CurrentSelection.FirstOrDefault() as string;\n        BubbleChartChanged(selectedOption);\n    }\n\n    private void OnBoxPlotChartSelectionChanged(object sender, SelectionChangedEventArgs e)\n    {\n        BoxPlotDefaultView();\n\n        var selectedOption = e.CurrentSelection.FirstOrDefault() as string;\n        BoxPlotChartChanged(selectedOption);\n    }\n\n    private void OnHistogramChartSelectionChanged(object sender, SelectionChangedEventArgs e)\n    {\n        HistogramDefaultView();\n\n        var selectedOption = e.CurrentSelection.FirstOrDefault() as string;\n        HistogramChartChanged(selectedOption);\n    }\n\n    private void OnFinancialChartSelectionChanged(object sender, SelectionChangedEventArgs e)\n    {\n        FinancialDefaultView();\n\n        var selectedOption = e.CurrentSelection.FirstOrDefault() as string;\n        FinancialChartChanged(selectedOption);\n    }\n\n    private void OnWaterfallChartSelectionChanged(object sender, SelectionChangedEventArgs e)\n    {\n        WaterfallDefaultView();\n\n        var selectedOption = e.CurrentSelection.FirstOrDefault() as string;\n        WaterfallChartChanged(selectedOption);\n    }\n    #endregion\n\n    #region [ Methods ]\n    private void InitializeDefaultView()\n    {\n        AreaChartMenuView.IsVisible = false;\n        AreaChartsCollectionView.IsVisible = false;\n\n        BarChartMenuView.IsVisible = false;\n        BarChartsCollectionView.IsVisible = false;\n\n        ColumnChartMenuView.IsVisible = false;\n        ColumnChartsCollectionView.IsVisible = false;\n\n        LineChartMenuView.IsVisible = false;\n        LineChartsCollectionView.IsVisible = false;\n\n        ScatterChartMenuView.IsVisible = false;\n        ScatterChartsCollectionView.IsVisible = false;\n\n        BubbleChartMenuView.IsVisible = false;\n        BubbleChartsCollectionView.IsVisible = false;\n\n        BoxPlotChartMenuView.IsVisible = false;\n        BoxPlotChartsCollectionView.IsVisible = false;\n\n        HistogramChartMenuView.IsVisible = false;\n        HistogramChartsCollectionView.IsVisible = false;\n\n        FinancialChartMenuView.IsVisible = false;\n        FinancialChartsCollectionView.IsVisible = false;\n\n        WaterfallChartMenuView.IsVisible = false;\n        WaterfallChartsCollectionView.IsVisible = false;\n\n        AreaDefaultView();\n        BarDefaultView();\n        ColumnDefaultView();\n        LineDefaultView();\n        ScatterDefaultView();\n        BubbleDefaultView();\n        BoxPlotDefaultView();\n        HistogramDefaultView();\n        FinancialDefaultView();\n        WaterfallDefaultView();\n    }\n\n    private void WaterfallDefaultView()\n    {\n        WaterfallView.IsVisible = false;\n    }\n\n    private void FinancialDefaultView()\n    {\n        CandleView.IsVisible = false;\n        OHLCView.IsVisible = false;\n    }\n\n    private void HistogramDefaultView()\n    {\n        HistogramView.IsVisible = false;\n    }\n\n    private void BoxPlotDefaultView()\n    {\n        BoxAndWhiskerView.IsVisible = false;\n    }\n\n    private void BubbleDefaultView()\n    {\n        BubbleView.IsVisible = false;\n    }\n\n    private void ScatterDefaultView()\n    {\n        ScatterView.IsVisible = false;\n    }\n\n    private void LineDefaultView()\n    {\n        LineView.IsVisible = false;\n        SplineView.IsVisible = false;\n        StepLineView.IsVisible = false;\n        StackingLineView.IsVisible = false;\n        StackingLine100View.IsVisible = false;\n        FastLineView.IsVisible = false;\n    }\n\n    \n    \n    private void ColumnDefaultView()\n    {\n        ColumnView.IsVisible = false;\n        RangeColumnView.IsVisible = false;\n        StackingColumnView.IsVisible = false;\n        StackingColumn100View.IsVisible = false;\n    }\n\n    private void BarDefaultView()\n    {\n        BarView.IsVisible = false;\n        ErrorBarView.IsVisible = false;\n        RangeBarView.IsVisible = false;\n        StackingBarView.IsVisible = false;\n        StackingBar100View.IsVisible = false;\n    }\n\n    private void AreaDefaultView()\n    {\n        AreaView.IsVisible = false;\n        SqlineAreaView.IsVisible = false;\n        StepAreaView.IsVisible = false;\n        RangeAreaView.IsVisible = false;\n        SplineRangeAreaView.IsVisible = false;\n        StackingAreaView.IsVisible = false;\n        StackingArea100View.IsVisible = false;\n    }\n\n    private void AreaChartChanged(string value)\n    {\n        if (value != null)\n        {\n            switch (value)\n            {\n                case \"Area\": AreaView.IsVisible = true;\n                    break;\n                case \"Spline Area\": SqlineAreaView.IsVisible = true;\n                    break;\n                case \"Step Area\": StepAreaView.IsVisible = true;\n                    break;\n                case \"Range Area\": RangeAreaView.IsVisible = true;\n                    break;\n                case \"Spline Range Area\": SplineRangeAreaView.IsVisible = true;\n                    break;\n                case \"Stacking Area\": StackingAreaView.IsVisible = true;\n                    break;\n                case \"100% Stacking Area\": StackingArea100View.IsVisible = true;\n                    break;\n            }\n        }\n    }\n\n    private void ColumnBarChartChanged(string value)\n    {\n        if (value != null)\n        {\n            switch (value)\n            {\n                case \"Bar\": BarView.IsVisible = true;\n                    break;\n                case \"Error Bar\": ErrorBarView.IsVisible = true;\n                    break;\n                case \"Range Bar\": RangeBarView.IsVisible = true;\n                    break;\n                case \"Stacking Bar\": StackingBarView.IsVisible = true;\n                    break;\n                case \"Stacking Bar 100\": StackingBar100View.IsVisible = true;\n                    break;\n                case \"Column\": ColumnView.IsVisible = true;\n                    break;\n                case \"Range Column\": RangeColumnView.IsVisible = true;\n                    break;\n                case \"Stacking Column\": StackingColumnView.IsVisible = true;\n                    break;\n                case \"Stacking Column 100\": StackingColumn100View.IsVisible = true;\n                    break;\n            }\n        }\n    }\n\n    private void LineChartChanged(string value)\n    {\n        if (value != null)\n        {\n            switch (value)\n            {\n                case \"Line\": LineView.IsVisible = true;\n                    break;\n                case \"Spline\": SplineView.IsVisible = true;\n                    break;\n                case \"Step Line\": StepLineView.IsVisible = true;\n                    break;\n                case \"Stacking Line\": StackingLineView.IsVisible = true;\n                    break;\n                case \"Stacking Line 100\": StackingLine100View.IsVisible = true;\n                    break;\n                case \"Fast Line\": FastLineView.IsVisible = true;\n                    break;\n            }\n        }\n    }\n\n    private void ScatterChartChanged(string value)\n    {\n        if (value != null)\n        {\n            switch (value)\n            {\n                case \"Scatter\": ScatterView.IsVisible = true;\n                    break;\n            }\n        }\n    }\n\n    private void BubbleChartChanged(string value)\n    {\n        if (value != null)\n        {\n            switch (value)\n            {\n                case \"Bubble\": BubbleView.IsVisible = true;\n                    break;\n            }\n        }\n    }\n\n    private void BoxPlotChartChanged(string value)\n    {\n        if (value != null)\n        {\n            switch (value)\n            {\n                case \"Box And Whisker\": BoxAndWhiskerView.IsVisible = true;\n                    break;\n            }\n        }\n    }\n\n    private void HistogramChartChanged(string value)\n    {\n        if (value != null)\n        {\n            switch (value)\n            {\n                case \"Histogram\": HistogramView.IsVisible = true;\n                    break;\n            }\n        }\n    }\n\n    private void FinancialChartChanged(string value)\n    {\n        if (value != null)\n        {\n            switch (value)\n            {\n                case \"Candle\": CandleView.IsVisible = true;\n                    break;\n                case \"OHLC\": OHLCView.IsVisible = true;\n                    break;\n            }\n        }\n    }\n\n    private void WaterfallChartChanged(string value)\n    {\n        if (value != null)\n        {\n            switch (value)\n            {\n                case \"Waterfall\": WaterfallView.IsVisible = true;\n                    break;\n            }\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfCircularChart/SfCircularChartPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SfCircularChartPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:chart=\"clr-namespace:Syncfusion.Maui.Charts;assembly=Syncfusion.Maui.Charts\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    Title=\"SfCircularChart\"\n    Padding=\"20\"\n    x:DataType=\"core:SfCircularChartPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"syncfusionlogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            SfCircularChart defines the following properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            Key features:\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Chart types</strong>, Supports two types of series such as pie and doughnut. Each series presents data in a unique way and it is designed to be more user-friendly.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">User interaction</strong>, The circular chart selection, tooltips, and explode user interaction features significantly improves the end-user experience.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Legends</strong>, Display additional information about the data points of chart series.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Dynamic update</strong>, Updates the chart dynamically or lazily with live data that changes over seconds or minutes.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"20\">\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <CollectionView\n                    Footer=\"{x:StaticResource PropertiesListFooter}\"\n                    Header=\"{x:StaticResource PropertiesListHeader}\"\n                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Simple pie chart\" />\n                    <chart:SfCircularChart>\n                        <chart:PieSeries\n                            ItemsSource=\"{x:Binding MockData}\"\n                            XBindingPath=\"Product\"\n                            YBindingPath=\"SalesRate\" />\n                    </chart:SfCircularChart>\n                    <core:SourceCodeExpander Code=\"{x:Binding SimplePieSeriesXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Add title\" />\n                    <chart:SfCircularChart>\n                        <chart:SfCircularChart.Title>\n                            <Label Text=\"PRODUCT SALES\" />\n                        </chart:SfCircularChart.Title>\n                        <chart:PieSeries\n                            ItemsSource=\"{x:Binding MockData}\"\n                            XBindingPath=\"Product\"\n                            YBindingPath=\"SalesRate\" />\n                    </chart:SfCircularChart>\n                    <core:SourceCodeExpander Code=\"{x:Binding AddTitleToPieSeriesXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Add labels\" />\n                    <chart:SfCircularChart>\n                        <chart:PieSeries ShowDataLabels=\"True\" />\n                        <chart:PieSeries\n                            ItemsSource=\"{x:Binding MockData}\"\n                            XBindingPath=\"Product\"\n                            YBindingPath=\"SalesRate\" />\n                    </chart:SfCircularChart>\n                    <core:SourceCodeExpander Code=\"{x:Binding EnableDataLabelXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Add legend\" />\n                    <chart:SfCircularChart>\n                        <chart:SfCircularChart.Legend>\n                            <chart:ChartLegend />\n                        </chart:SfCircularChart.Legend>\n                        <chart:PieSeries\n                            ItemsSource=\"{x:Binding MockData}\"\n                            XBindingPath=\"Product\"\n                            YBindingPath=\"SalesRate\" />\n                    </chart:SfCircularChart>\n                    <core:SourceCodeExpander Code=\"{x:Binding EnableLegendXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Add Tooltip\" />\n                    <chart:SfCircularChart>\n                        <chart:PieSeries EnableTooltip=\"True\" />\n                        <chart:PieSeries\n                            ItemsSource=\"{x:Binding MockData}\"\n                            XBindingPath=\"Product\"\n                            YBindingPath=\"SalesRate\" />\n                    </chart:SfCircularChart>\n                    <core:SourceCodeExpander Code=\"{x:Binding EnableTooltipXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Doughnut Chart\" />\n                    <chart:SfCircularChart>\n                        <chart:PieSeries EnableTooltip=\"True\" />\n                        <chart:DoughnutSeries\n                            ItemsSource=\"{x:Binding MockData}\"\n                            XBindingPath=\"Product\"\n                            YBindingPath=\"SalesRate\" />\n                    </chart:SfCircularChart>\n                    <core:SourceCodeExpander Code=\"{x:Binding DoughnutChartXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Inner Radius\" />\n                    <chart:SfCircularChart>\n                        <chart:DoughnutSeries EnableTooltip=\"True\" />\n                        <chart:DoughnutSeries\n                            InnerRadius=\"0.7\"\n                            ItemsSource=\"{x:Binding MockData}\"\n                            XBindingPath=\"Product\"\n                            YBindingPath=\"SalesRate\" />\n                    </chart:SfCircularChart>\n                    <core:SourceCodeExpander Code=\"{x:Binding DoughnutChartInnerRadiusXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Semi Doughnut\" />\n                    <chart:SfCircularChart>\n                        <chart:DoughnutSeries EnableTooltip=\"True\" />\n                        <chart:DoughnutSeries\n                            EndAngle=\"360\"\n                            InnerRadius=\"0.7\"\n                            ItemsSource=\"{x:Binding MockData}\"\n                            StartAngle=\"180\"\n                            XBindingPath=\"Product\"\n                            YBindingPath=\"SalesRate\" />\n                    </chart:SfCircularChart>\n                    <core:SourceCodeExpander Code=\"{x:Binding SemiDoughnutChartXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfCircularChart/SfCircularChartPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class SfCircularChartPage : IGalleryPage\n{\n    #region [CTor]\n    public SfCircularChartPage(SfCircularChartPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfComboBox/SfComboBoxPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SfComboBoxPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:inputs=\"clr-namespace:Syncfusion.Maui.Inputs;assembly=Syncfusion.Maui.Inputs\"\n    xmlns:syncfusion=\"clr-namespace:Syncfusion.Maui.ListView;assembly=Syncfusion.Maui.ListView\"\n    Title=\"SfComboBoxPage\"\n    Padding=\"20\"\n    x:DataType=\"core:SfComboBoxPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"syncfusionlogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:String x:Key=\"ControlInfo\">\n            The .NET MAUI ComboBox control is a selection component that allows users to type a value or choose an option from a list of predefined options. It has many features, such as data binding, editing, searching, clear button and dropdown button customization, and more.\n        </x:String>\n\n        <DataTemplate x:Key=\"PropertiesSfListHeaderTemplate\">\n            <Label\n                FontAttributes=\"Bold\"\n                FontSize=\"Title\"\n                Text=\"Key features: \" />\n        </DataTemplate>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Data Binding</strong> - Support binding various types of data sources.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Editable mode</strong> – Editable and non-editable text boxes to select items from the given data source.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Filtering</strong> – The ComboBox filters items based on the entered text and auto-fills with the first suggestion.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Searching</strong> – Highlights the matching item in the drop-down list based on the provided input.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Placeholder</strong> – Display placeholder text inside the control until the user enters text.\n                            ]]>\n            </x:String>\n        </x:Array>\n    </core:BasePage.Resources>\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"20\">\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Label Text=\"{x:StaticResource ControlInfo}\" />\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <syncfusion:SfListView\n                    HeaderTemplate=\"{x:StaticResource PropertiesSfListHeaderTemplate}\"\n                    ItemTemplate=\"{x:StaticResource BulletListItemTemplate}\"\n                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" />\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"5\">\n                    <inputs:SfComboBox\n                        x:Name=\"comboBox\"\n                        DisplayMemberPath=\"Name\"\n                        IsEditable=\"true\"\n                        ItemsSource=\"{x:Binding Items}\"\n                        WidthRequest=\"250\" />\n                </VerticalStackLayout>\n            </Border>\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfComboBox/SfComboBoxPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class SfComboBoxPage : IGalleryPage\n{\n    #region [CTor]\n    public SfComboBoxPage(SfComboBoxPageViewModel vm)\n\t{\n\t\tInitializeComponent();\n\n\t\tBindingContext = vm;\n\t}\n\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfDataGrid/SfDataGridPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SfDataGridPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:syncfusion=\"clr-namespace:Syncfusion.Maui.DataGrid;assembly=Syncfusion.Maui.DataGrid\"\n    Title=\"SfDataGrid\"\n    Padding=\"20\"\n    x:DataType=\"core:SfDataGridPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Key Features:\n        </x:String>\n\n        <x:String x:Key=\"BindingDataToDataGrid\">\n            To bind the data source to the SfDataGrid, set the SfDataGrid.ItemsSource property as follows. You can bind the data source of the SfDataGrid either from XAML or in code. The following code example binds the collection created in the previous step to the SfDataGrid.ItemsSource property:\n        </x:String>\n\n        <x:String x:Key=\"DefiningColumnSection\">\n            By default, the SfDataGrid automatically creates columns for all the properties in the data source. The type of the column generated depends on the type of data in the column. When the columns are auto-generated, handle the SfDataGrid.AutoGeneratingColumnMode mode to customize or cancel the columns before they are added to the columns collection in the SfDataGrid.\n        </x:String>\n\n        <x:String x:Key=\"DefiningColumnSection1\">\n            The columns can be manually defined by setting the SfDataGrid.AutoGenerateColumnsMode property to ‘None’ and by adding the DataGridColumn objects to the SfDataGrid.Columns collection. This can be done from both XAML and code. The following code example illustrates this:\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Data Binding</strong>, Bind different types of data sources, including DataTable.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Column Types</strong>, Show different data types in different types of columns. The following column types are supported: numeric, text, date, checkbox, image, and template. The template column is used to load any control in a column.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Sorting</strong>, Interactively sort one or more columns.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Filtering</strong>, Programmatically filter data based on the criteria.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Column Sizing</strong>, Set the width of columns with various sizing options. Columns can also be sized based on their content.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Auto row height</strong>, Set the height for rows based on the content of their cells.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Selection</strong>, Select one or more rows. Keyboard navigation is supported in Windows platform.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Styling</strong>, Customize the appearance of cells and headers. Conditional styling is supported.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"syncfusionlogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"20\">\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <CollectionView\n                    Header=\"{x:StaticResource PropertiesListHeader}\"\n                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Simple datagrid\" />\n                    <Label Text=\"{x:StaticResource BindingDataToDataGrid}\" />\n                    <syncfusion:SfDataGrid\n                        x:Name=\"dataGrid\"\n                        BackgroundColor=\"White\"\n                        ItemsSource=\"{x:Binding OrderInfo}\" />\n                    <core:SourceCodeExpander Code=\"{x:Binding SimpleDataGridXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Defining columns\" />\n                    <Label Text=\"{x:StaticResource DefiningColumnSection}\" />\n                    <Label Text=\"{x:StaticResource DefiningColumnSection1}\" />\n                    <core:SourceCodeExpander Code=\"{x:Binding DefiningColumnsXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfDataGrid/SfDataGridPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class SfDataGridPage : IGalleryPage\n{\n    #region [CTor]\n    public SfDataGridPage(SfDataGridPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfListView/SfListViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SfListViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:syncfusion=\"clr-namespace:Syncfusion.Maui.ListView;assembly=Syncfusion.Maui.ListView\"\n    Title=\"SfListView\"\n    Padding=\"20\"\n    x:DataType=\"core:SfListViewPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"syncfusionlogo.png\"\n            Text=\"Original Document\" />\n\n    </core:BasePage.ToolbarItems>\n    <core:BasePage.Resources>\n        <DataTemplate x:Key=\"HorizontalWrapLayoutItemTemplate\" x:DataType=\"core:IGalleryCardInfo\">\n            <app:ControlCardContentView ComponentData=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <syncfusion:GridLayout x:Key=\"MAUIAllControlsLayout\" SpanCount=\"{x:Binding Span}\" />\n\n        <x:String x:Key=\"ControlInfo\">\n            The Syncfusion .NET MAUI ListView renders set of data items using Maui views or custom templates. Data can easily be grouped, sorted, and filtered.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Key features\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">BorderColor</strong>, of type <strong style=\"color:blue\">Color</strong>, describes the border color of the button.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">BorderWidth</strong>, of type <strong style=\"color:blue\">double</strong>, defines the width of the button's border.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CharacterSpacing</strong>, of type <strong style=\"color:blue\">double</strong>, defines the spacing between characters of the button's text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Command</strong>, of type <strong style=\"color:blue\">ICommand</strong>, defines the command that's executed when the button is tapped.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CommandParameter</strong>, of type <strong style=\"color:blue\">object</strong>, is the parameter that's passed to Command.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ContentLayout</strong>, of type <strong style=\"color:blue\">ButtonContentLayout</strong>, defines the object that controls the position of the button image and the spacing between the button's image and text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">CornerRadius</strong>, of type <strong style=\"color:blue\">int</strong>, describes the corner radius of the button's border.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAttributes</strong>, of type <strong style=\"color:blue\">FontAttributes</strong>, determines text style.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontAutoScalingEnabled</strong>, of type <strong style=\"color:blue\">bool</strong>, defines whether the button text will reflect scaling preferences set in the operating system. The default value of this property is true.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontFamily</strong>, of type <strong style=\"color:blue\">string</strong>, defines the font family.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">FontSize</strong>, of type <strong style=\"color:blue\">double</strong>, defines the font size.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">ImageSource</strong>, of type <strong style=\"color:blue\">ImageSource</strong>, specifies a bitmap image to display as the content of the button.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">LineBreakMode</strong>, of type <strong style=\"color:blue\">LineBreakMode</strong>, determines how text should be handled when it can't fit on one line.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Padding</strong>, of type <strong style=\"color:blue\">Thickness</strong>, determines the button's padding.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Text</strong>, of type <strong style=\"color:blue\">string</strong>, defines the text displayed as the content of the button.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextColor</strong>, of type <strong style=\"color:blue\">Color</strong>, describes the color of the button's text.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">TextTransform</strong>, of type <strong style=\"color:blue\">TextTransform</strong>, defines the casing of the button's text.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n    </core:BasePage.Resources>\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"20\">\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Label Text=\"{x:StaticResource ControlInfo}\" />\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <syncfusion:SfListView ItemTemplate=\"{x:StaticResource BulletListItemTemplate}\" ItemsSource=\"{x:StaticResource PropertyItemsSource}\" />\n            </Border>\n\n            <syncfusion:SfListView\n                x:Name=\"MAUIAllControlSfList\"\n                ItemSize=\"180\"\n                ItemSpacing=\"10\"\n                ItemTemplate=\"{x:StaticResource HorizontalWrapLayoutItemTemplate}\"\n                ItemsSource=\"{x:Binding MauiAllControlsItems}\">\n                <syncfusion:SfListView.ItemsLayout>\n                    <syncfusion:GridLayout x:Name=\"gridLayout\" />\n                </syncfusion:SfListView.ItemsLayout>\n            </syncfusion:SfListView>\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfListView/SfListViewPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class SfListViewPage : IGalleryPage\n{\n    public SfListViewPage(SfListViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfMaps/SfMapsViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SfMapsViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:maps=\"clr-namespace:Syncfusion.Maui.Maps;assembly=Syncfusion.Maui.Maps\"\n    Title=\"SfMapsView\"\n    Padding=\"20\"\n    x:DataType=\"core:SfMapsViewPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"syncfusionlogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <DataTemplate x:Key=\"markerTemplate\" x:DataType=\"core:CustomMarker\">\n            <StackLayout>\n                <Ellipse\n                    Fill=\"Red\"\n                    HeightRequest=\"8\"\n                    WidthRequest=\"8\" />\n                <Label\n                    FontAttributes=\"Bold\"\n                    FontSize=\"Caption\"\n                    HorizontalOptions=\"Center\"\n                    Text=\"{Binding Name}\"\n                    VerticalOptions=\"Center\" />\n                <Label\n                    FontSize=\"8\"\n                    HorizontalOptions=\"Center\"\n                    Text=\"{Binding Time}\"\n                    VerticalOptions=\"Center\" />\n            </StackLayout>\n        </DataTemplate>\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET MAUI Maps control is a powerful data visualization component that displays statistical information for a geographical area. It has highly interactive and customizable features such as selection, tooltip, legends, markers, bubbles, and color mapping. Using the Maps control, you can generate maps for population density, sales, political boundaries, weather, elections, and routes.\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Key features:\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Shape layer</strong> : Visualize the map area from GeoJSON or shapefile input data.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Data labels</strong> : Provide identification for shapes by displaying their names. If the labels exceed the shape bounds, they are trimmed or hidden.\n\n\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Markers</strong> : Denote a location with built-in symbols or display custom content at a specific latitude and longitude on a map.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Bubbles</strong> : Add information to shapes such as population density or number of users. Bubbles can be rendered in different colors and sizes based on the data values of their assigned shapes.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Shape selection</strong> :  Choose a shape to highlight a region on a map. You can use the event for performing action during the shape selection.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Legend</strong> : Use legends to provide clear information on the data plotted in a map.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Colors</strong> : Categorize the shapes on a map by assigning their colors based on their underlying values. It is possible to set the shape color for a specific value or for a range of values.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Tooltip</strong> : Display additional information about shapes, markers, and bubbles using a customizable tooltip on a map.\n                            ]]>\n            </x:String>\n        </x:Array>\n    </core:BasePage.Resources>\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"10\">\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n            </Border>\n\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <CollectionView\n                        Header=\"{x:StaticResource PropertiesListHeader}\"\n                        ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </VerticalStackLayout>\n            </Border>\n            <Label\n                FontAttributes=\"Bold\"\n                FontSize=\"Title\"\n                Text=\"This sample shows the basic maps elements such as data labels, legend, and tooltip\" />\n            <!--  Basic Layer  -->\n            <Grid>\n                <maps:SfMaps>\n                    <maps:SfMaps.Layer>\n                        <maps:MapShapeLayer\n                            x:Name=\"layer\"\n                            DataSource=\"{Binding Data}\"\n                            PrimaryValuePath=\"State\"\n                            ShapeColorValuePath=\"ID\"\n                            ShapeDataField=\"STATE_NAME\"\n                            ShapesSource=\"https://cdn.syncfusion.com/maps/map-data/australia.json\"\n                            ShowDataLabels=\"True\"\n                            ShowShapeTooltip=\"True\">\n\n                            <!--  Set Data Label  -->\n                            <maps:MapShapeLayer.DataLabelSettings>\n                                <maps:MapDataLabelSettings DataLabelPath=\"StateCode\" />\n                            </maps:MapShapeLayer.DataLabelSettings>\n\n                            <!--  Set Color mapping  -->\n                            <maps:MapShapeLayer.ColorMappings>\n                                <maps:EqualColorMapping\n                                    Text=\"NSW\"\n                                    Color=\"#d0b800\"\n                                    Value=\"1\" />\n                                <maps:EqualColorMapping\n                                    Text=\"Queensland\"\n                                    Color=\"#00d5cf\"\n                                    Value=\"2\" />\n                                <maps:EqualColorMapping\n                                    Text=\"NT\"\n                                    Color=\"#ff4e42\"\n                                    Value=\"3\" />\n                                <maps:EqualColorMapping\n                                    Text=\"Victoria\"\n                                    Color=\"#cf4eee\"\n                                    Value=\"4\" />\n                                <maps:EqualColorMapping\n                                    Text=\"Tasmania\"\n                                    Color=\"#4f93d8\"\n                                    Value=\"5\" />\n                                <maps:EqualColorMapping\n                                    Text=\"WA\"\n                                    Color=\"#8b6adf\"\n                                    Value=\"6\" />\n                                <maps:EqualColorMapping\n                                    Text=\"SA\"\n                                    Color=\"#7bff67\"\n                                    Value=\"7\" />\n                            </maps:MapShapeLayer.ColorMappings>\n\n                            <!--  Set Markers  -->\n                            <maps:MapShapeLayer.Markers>\n                                <maps:MapMarkerCollection>\n                                    <maps:MapMarker\n                                        x:Name=\"Adelaide\"\n                                        IconFill=\"Red\"\n                                        IconHeight=\"20\"\n                                        IconStroke=\"Black\"\n                                        IconType=\"Triangle\"\n                                        IconWidth=\"20\"\n                                        Latitude=\"-34.928497\"\n                                        Longitude=\"138.600739\" />\n                                </maps:MapMarkerCollection>\n                            </maps:MapShapeLayer.Markers>\n\n                            <!--  Set Legend  -->\n                            <maps:MapShapeLayer.Legend>\n                                <maps:MapLegend Placement=\"Bottom\" SourceType=\"Shape\" />\n                            </maps:MapShapeLayer.Legend>\n                        </maps:MapShapeLayer>\n                    </maps:SfMaps.Layer>\n                </maps:SfMaps>\n            </Grid>\n            <core:SourceCodeExpander Code=\"{x:Binding BasicLayerSource}\" CodeType=\"Xaml\" />\n            <!--#region BUG can't read State-->\n            <!--<Label FontAttributes=\"Bold\"\n                FontSize=\"Title\" Text=\"This sample showcases a map with simple Selection.\" />-->\n            <!--  Selection Layer  -->\n            <!--<Grid Margin=\"20\"\n              x:Name=\"sampleGrid\">\n                <Grid.BindingContext>\n                    <model:SelectionViewModel/>\n                </Grid.BindingContext>\n                <Grid.RowDefinitions>\n                    <RowDefinition Height=\"Auto\" />\n                    <RowDefinition Height=\"*\" />\n                    <RowDefinition Height=\"160\" />\n                </Grid.RowDefinitions>\n                <Grid.ColumnDefinitions>\n                    <ColumnDefinition Width=\"*\"/>\n                    <ColumnDefinition Width=\"Auto\"/>\n                </Grid.ColumnDefinitions>\n                <Label Grid.Row=\"0\"\n                   Grid.ColumnSpan=\"2\"\n                   HorizontalOptions=\"Center\"\n                   Text=\"2020 US Population Density\"\n                   FontSize=\"Subtitle\"\n                    Margin=\"0,0,0,20\"/>\n                <maps:SfMaps Grid.Row=\"1\" Grid.RowSpan=\"2\" Grid.ColumnSpan=\"2\">\n                    <maps:SfMaps.Layer>\n                        <maps:MapShapeLayer x:Name=\"selectionLayer\"\n                                        DataSource=\"{Binding StateWiseElectionResult}\"\n                                        PrimaryValuePath=\"State\"\n                                        ShapeDataField=\"name\"\n                                        ShapeColorValuePath=\"SquareMiles\"\n                                        ShapeStroke=\"White\"\n                                        EnableSelection=\"True\"\n                                        SelectedShapeFill=\"#fcb100\"\n                                        SelectedShapeStroke=\"White\"\n                                        SelectedShapeStrokeThickness=\"3\"\n                                        ShapeSelected=\"shapeLayer_ShapeSelected\"\n                                        ShowDataLabels=\"True\">\n                            <maps:MapShapeLayer.ColorMappings>\n                                <maps:RangeColorMapping From=\"1600\" To=\"1200\" Color=\"#000000\"/>\n                                <maps:RangeColorMapping From=\"800\" To=\"1599\" Color=\"#001330\"/>\n                                <maps:RangeColorMapping From=\"400\" To=\"799\" Color=\"#003066\"/>\n                                <maps:RangeColorMapping From=\"200\" To=\"399\" Color=\"#004c9a\"/>\n                                <maps:RangeColorMapping From=\"100\" To=\"199\" Color=\"#0066cd\"/>\n                                <maps:RangeColorMapping From=\"50\" To=\"100\" Color=\"#0081ff\"/>\n                                <maps:RangeColorMapping From=\"20\" To=\"49\" Color=\"#4ca7ff\"/>\n                                <maps:RangeColorMapping From=\"10\" To=\"19\" Color=\"#8dc7ff\"/>\n                                <maps:RangeColorMapping From=\"5\" To=\"9\" Color=\"#b3daff\"/>\n                                <maps:RangeColorMapping From=\"0\" To=\"4\" Color=\"#daeeff\"/>\n                            </maps:MapShapeLayer.ColorMappings>\n                            <maps:MapShapeLayer.DataLabelSettings>\n                                <maps:MapDataLabelSettings DataLabelPath=\"StateCode\" OverflowMode=\"Hide\">\n                                    <maps:MapDataLabelSettings.DataLabelStyle>\n                                        <maps:MapLabelStyle FontSize=\"9\"/>\n                                    </maps:MapDataLabelSettings.DataLabelStyle>\n                                </maps:MapDataLabelSettings>\n                            </maps:MapShapeLayer.DataLabelSettings>\n                        </maps:MapShapeLayer>\n                    </maps:SfMaps.Layer>\n                </maps:SfMaps>\n                <Frame x:Name=\"popup\"\n                   Grid.Row=\"2\"\n                   Grid.Column=\"1\"\n                   HorizontalOptions=\"End\"\n                   IsClippedToBounds=\"True\"\n                   BorderColor=\"#E8E8E8\"\n                   BackgroundColor=\"#F8F8F8\"\n                   Margin=\"30\"\n                   Opacity=\"0.8\"\n                   CornerRadius=\"6\">\n                    <Grid HorizontalOptions=\"End\" Margin=\"-10\">\n                        <Grid.RowDefinitions>\n                            <RowDefinition Height=\"Auto\"/>\n                            <RowDefinition Height=\"Auto\"/>\n                            <RowDefinition Height=\"Auto\"/>\n                        </Grid.RowDefinitions>\n                        <Label Grid.Row=\"0\" x:Name=\"stateName\" Text=\"\" TextColor=\"Black\" FontAttributes=\"Bold\" FontSize=\"18\" Margin=\"0,0,0,5\"/>\n                        <BoxView Grid.Row=\"1\" BackgroundColor=\"#e8e8e8\" HeightRequest=\"1\"/>\n                        <Grid Grid.Row=\"2\">\n                            <Grid.RowDefinitions>\n                                <RowDefinition Height=\"Auto\"/>\n                                <RowDefinition Height=\"Auto\"/>\n                            </Grid.RowDefinitions>\n                            <Grid.ColumnDefinitions>\n                                <ColumnDefinition Width=\"Auto\"/>\n                                <ColumnDefinition Width=\"Auto\"/>\n                            </Grid.ColumnDefinitions>\n                            <Label Grid.Row=\"0\" Grid.Column=\"0\" x:Name=\"rankTitle\" Text=\"\" TextColor=\"Black\" FontAttributes=\"Bold\" FontSize=\"13\"  Margin=\"0,5\"/>\n                            <Label Grid.Row=\"0\" Grid.Column=\"1\" x:Name=\"rank\" Text=\"\" TextColor=\"Black\" FontSize=\"14\"  Margin=\"0,5\"/>\n                            <Label Grid.Row=\"1\" Grid.Column=\"0\" x:Name=\"kmTitle\" Text=\"\" TextColor=\"Black\" FontAttributes=\"Bold\" FontSize=\"13\" Margin=\"0,5,0,0\"/>\n                            <Label Grid.Row=\"1\" Grid.Column=\"1\" x:Name=\"kilometer\" Text=\"\" TextColor=\"Black\" FontSize=\"14\" Margin=\"0,5,0,0\"/>\n                        </Grid>\n                    </Grid>\n                </Frame>\n            </Grid>\n            <core:SourceCodeExpander Code=\"{x:Binding SelectionLayerSource}\" CodeType=\"Xaml\" />\n\n            <Label FontAttributes=\"Bold\"\n                FontSize=\"Title\" Text=\"This sample shows the rivers of the Australia using the shape sublayer support.\" />-->\n            <!--  Shape Layer  -->\n            <!--<Grid Margin=\"20\">\n                <Grid.RowDefinitions>\n                    <RowDefinition Height=\"Auto\" />\n                    <RowDefinition />\n                </Grid.RowDefinitions>\n\n                <Label Grid.ColumnSpan=\"2\"\n                   HorizontalOptions=\"Center\"\n                   Text=\"Rivers in Australia\"\n                   FontSize=\"Subtitle\"\n                   Margin=\"0,0,0,20\" />\n\n                <maps:SfMaps Grid.Row=\"1\">\n                    <maps:SfMaps.Layer>\n                        <maps:MapShapeLayer x:Name=\"shapeLayer\"\n                                        DataSource=\"{Binding AustraliaData}\"\n                                        PrimaryValuePath=\"State\"\n                                        ShapeDataField=\"STATE_NAME\"\n                                        ShapeFill=\"#fef6d6\"\n                                        ShapeStroke=\"#DBB589\"\n                                        ShapeHoverFill=\"Transparent\"\n                                        ShapeHoverStroke=\"Transparent\"\n                                        ShowDataLabels=\"True\">\n\n                            <maps:MapShapeLayer.DataLabelSettings>\n                                <maps:MapDataLabelSettings DataLabelPath=\"State\">\n                                    <maps:MapDataLabelSettings.DataLabelStyle>\n                                        <maps:MapLabelStyle FontSize=\"12\" />\n                                    </maps:MapDataLabelSettings.DataLabelStyle>\n                                </maps:MapDataLabelSettings>\n                            </maps:MapShapeLayer.DataLabelSettings>\n\n                            <maps:MapShapeLayer.Sublayers>\n                                <maps:MapShapeSublayer x:Name=\"sublayer\"\n                                                   ShapeStroke=\"#00A7CC\"\n                                                   ShapeStrokeThickness=\"2\"/>\n                            </maps:MapShapeLayer.Sublayers>\n                        </maps:MapShapeLayer>\n                    </maps:SfMaps.Layer>\n                </maps:SfMaps>\n            </Grid>\n            <core:SourceCodeExpander Code=\"{x:Binding ShapeLayerSource}\" CodeType=\"Xaml\" />-->\n            <!--#endregion-->\n\n            <Label\n                FontAttributes=\"Bold\"\n                FontSize=\"Title\"\n                Text=\"This sample showcases the world map with different time zones using markers.\" />\n            <!--  Marker Layer  -->\n            <Grid Margin=\"20\">\n                <Grid.RowDefinitions>\n                    <RowDefinition Height=\"Auto\" />\n                    <RowDefinition />\n                </Grid.RowDefinitions>\n                <Label\n                    Grid.Row=\"0\"\n                    Margin=\"0,0,0,20\"\n                    FontSize=\"Subtitle\"\n                    HorizontalOptions=\"Center\"\n                    Text=\"World Clock\" />\n                <maps:SfMaps Grid.Row=\"1\">\n                    <maps:SfMaps.Layer>\n                        <maps:MapShapeLayer\n                            x:Name=\"markerLayer\"\n                            MarkerTemplate=\"{StaticResource markerTemplate}\"\n                            Markers=\"{Binding Markers}\"\n                            ShapeFill=\"#dadadb\"\n                            ShapeHoverFill=\"Transparent\"\n                            ShapeHoverStroke=\"Transparent\"\n                            ShapeHoverStrokeThickness=\"0\"\n                            ShapeStrokeThickness=\"0\" />\n                    </maps:SfMaps.Layer>\n                </maps:SfMaps>\n            </Grid>\n            <core:SourceCodeExpander Code=\"{x:Binding MarkerLayerSource}\" CodeType=\"Xaml\" />\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfMaps/SfMapsViewPage.xaml.cs",
    "content": "using Syncfusion.Maui.Maps;\n\nnamespace MAUIsland;\npublic partial class SfMapsViewPage : IGalleryPage\n{\n    private bool canStopTimer;\n\n    #region [ CTor ]\n    public SfMapsViewPage(SfMapsViewPageViewModel vm)\n    {\n        InitializeComponent();\n        this.markerLayer.ShapesSource = MapSource.FromResource(\"MAUIsland.Resources.Raw.world-map.json\");\n        #region TODO\n\n        //this.selectionLayer.ShapesSource = MapSource.FromResource(\"MAUIsland.Resources.Raw.usa_state.shp\");\n        //this.shapeLayer.ShapesSource = MapSource.FromResource(\"MAUIsland.Resources.Raw.australia.shp\");\n        //this.sublayer.ShapesSource = MapSource.FromResource(\"MAUIsland.Resources.Raw.river.json\");\n\n        //sampleGrid.Remove(popup);\n        #endregion\n        StartTimer();\n\n        BindingContext = vm;\n    }\n    #endregion\n\n    #region [ Marker Layer ]\n    private async void StartTimer()\n    {\n        await Task.Delay(500);\n        if (Application.Current != null)\n        {\n            Application.Current.Dispatcher.StartTimer(new TimeSpan(0, 0, 0, 1, 0), UpdateMarker);\n        }\n\n        canStopTimer = false;\n    }\n\n    private bool UpdateMarker()\n    {\n        if (canStopTimer) return false;\n        foreach (var marker in markerLayer.Markers)\n        {\n            if (marker is CustomMarker customMarker)\n            {\n                if (customMarker.Name == \"Seattle\")\n                {\n                    customMarker.Time = DateTime.UtcNow.Subtract(new TimeSpan(7, 0, 0)).ToLongTimeString();\n                }\n                else if (customMarker.Name == \"Belem\")\n                {\n                    customMarker.Time = DateTime.UtcNow.Subtract(new TimeSpan(3, 0, 0)).ToLongTimeString();\n                }\n                else if (customMarker.Name == \"Nuuk\")\n                {\n                    customMarker.Time = DateTime.UtcNow.Subtract(new TimeSpan(2, 0, 0)).ToLongTimeString();\n                }\n                else if (customMarker.Name == \"Yakutsk\")\n                {\n                    customMarker.Time = DateTime.UtcNow.Add(new TimeSpan(9, 0, 0)).ToLongTimeString();\n                }\n                else if (customMarker.Name == \"Delhi\")\n                {\n                    customMarker.Time = DateTime.UtcNow.Add(new TimeSpan(5, 30, 0)).ToLongTimeString();\n                }\n                else if (customMarker.Name == \"Brisbane\")\n                {\n                    customMarker.Time = DateTime.UtcNow.Add(new TimeSpan(10, 0, 0)).ToLongTimeString();\n                }\n                else if (customMarker.Name == \"Harare\")\n                {\n                    customMarker.Time = DateTime.UtcNow.Add(new TimeSpan(2, 0, 0)).ToLongTimeString();\n                }\n            }\n        }\n\n        return true;\n    }\n    #endregion\n\n    #region [ Selection Layer ]\n\n    //private void shapeLayer_ShapeSelected(object sender, ShapeSelectedEventArgs e)\n    //{\n    //    this.ClearPopup();\n    //    if (e.IsSelected && e.DataItem is PopulationDensityDetails selectedItem)\n    //    {\n    //        stateName.Text = selectedItem.State;\n    //        rankTitle.Text = \"Density rank\";\n    //        rank.Text = \" : \" + selectedItem.Rank.ToString();\n    //        kmTitle.Text = \"Density per miles\";\n    //        kilometer.Text = \" : \" + selectedItem.SquareMiles.ToString();\n    //        sampleGrid.Add(popup, row: 2, column: 1);\n    //    }\n    //}\n\n    //private void ClearPopup()\n    //{\n    //    stateName.Text = \"\";\n    //    kmTitle.Text = \"\";\n    //    kilometer.Text = \"\";\n    //    rankTitle.Text = \"\";\n    //    rank.Text = \"\";\n    //    sampleGrid.Remove(popup);\n    //}\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfRadialGauge/SfRadialGaugePage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SfRadialGaugePage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:gauge=\"clr-namespace:Syncfusion.Maui.Gauges;assembly=Syncfusion.Maui.Gauges\"\n    Title=\"SfRadialGauge\"\n    Padding=\"20\"\n    x:DataType=\"core:SfRadialGaugePageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"syncfusionlogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Key features:\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Axes</strong>, the radial gauge axis is a circular arc in which a set of values are displayed along a linear or custom scale based on the design requirements. Axis elements, such as labels, ticks, and axis line, can be easily customized with built-in properties.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Ranges</strong>, radial range is a visual element that helps to quickly visualize a value where it falls on the axis.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Pointers</strong>, pointer is used to indicate values on an axis. Radial gauge has three types of pointers: needle pointer, shape pointer, content pointer and range pointer. All the pointers can be customized as needed.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Pointer animation</strong>, animates the pointer in a visually appealing way when the pointer moves from one value to another.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Pointer interaction</strong>, radial gauge provides an option to drag a pointer from one value to another. It is used to change the value at run time.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Annotations</strong>, add multiple views such as text and image as an annotation to a specific point of interest in a radial gauge.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"20\">\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <CollectionView\n                    Header=\"{x:StaticResource PropertiesListHeader}\"\n                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout>\n                    <VerticalStackLayout.Resources>\n                        <gauge:GaugeLabelStyle\n                            x:Key=\"labelStyle\"\n                            FontAttributes=\"Bold\"\n                            FontSize=\"15\"\n                            TextColor=\"White\" />\n                    </VerticalStackLayout.Resources>\n                    <Label\n                        LineBreakMode=\"WordWrap\"\n                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                        Text=\"MY BOSS WHEN SEEING OUR APPLICATION BUGS LIST\" />\n                    <Label\n                        FontAttributes=\"Bold\"\n                        HorizontalOptions=\"Center\"\n                        Text=\"PISSED METER BASED ON BUGS\" />\n                    <gauge:SfRadialGauge\n                        BackgroundColor=\"Gray\"\n                        HeightRequest=\"380\"\n                        WidthRequest=\"380\">\n                        <gauge:SfRadialGauge.Axes>\n                            <gauge:RadialAxis\n                                LabelPosition=\"Outside\"\n                                Maximum=\"30\"\n                                Minimum=\"0\"\n                                ShowAxisLine=\"True\"\n                                ShowLabels=\"True\"\n                                ShowTicks=\"True\">\n                                <gauge:RadialAxis.AxisLabelStyle>\n                                    <gauge:GaugeLabelStyle FontSize=\"11\" TextColor=\"White\" />\n                                </gauge:RadialAxis.AxisLabelStyle>\n\n                                <gauge:RadialAxis.Ranges>\n                                    <gauge:RadialRange\n                                        EndValue=\"6\"\n                                        EndWidth=\"0.65\"\n                                        Fill=\"#73d684\"\n                                        Label=\"YO WE COOL\"\n                                        LabelStyle=\"{StaticResource labelStyle}\"\n                                        StartValue=\"0\"\n                                        StartWidth=\"0.65\"\n                                        WidthUnit=\"Factor\" />\n                                    <gauge:RadialRange\n                                        EndValue=\"18\"\n                                        EndWidth=\"0.65\"\n                                        Fill=\"#fce348\"\n                                        Label=\"YOU WAT MATE ?\"\n                                        LabelStyle=\"{StaticResource labelStyle}\"\n                                        StartValue=\"6\"\n                                        StartWidth=\"0.65\"\n                                        WidthUnit=\"Factor\" />\n                                    <gauge:RadialRange\n                                        EndValue=\"30\"\n                                        EndWidth=\"0.65\"\n                                        Fill=\"#fc0203\"\n                                        Label=\"{x:Binding RedZoneMeme}\"\n                                        LabelStyle=\"{StaticResource labelStyle}\"\n                                        StartValue=\"18\"\n                                        StartWidth=\"0.65\"\n                                        WidthUnit=\"Factor\" />\n                                    <gauge:RadialRange\n                                        EndValue=\"99\"\n                                        EndWidth=\"0.15\"\n                                        Fill=\"#4D9b9b9b\"\n                                        OffsetUnit=\"Factor\"\n                                        RangeOffset=\"0.63\"\n                                        StartValue=\"0\"\n                                        StartWidth=\"0.15\"\n                                        WidthUnit=\"Factor\" />\n                                </gauge:RadialAxis.Ranges>\n\n                                <gauge:RadialAxis.Pointers>\n                                    <gauge:NeedlePointer\n                                        KnobRadius=\"15\"\n                                        KnobSizeUnit=\"Pixel\"\n                                        NeedleEndWidth=\"15\"\n                                        NeedleLength=\"0.6\"\n                                        NeedleStartWidth=\"2\"\n                                        Value=\"28\" />\n                                </gauge:RadialAxis.Pointers>\n                            </gauge:RadialAxis>\n                        </gauge:SfRadialGauge.Axes>\n                    </gauge:SfRadialGauge>\n                    <core:SourceCodeExpander Code=\"{x:Binding BossPissedMetric}\" />\n                </VerticalStackLayout>\n            </Border>\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfRadialGauge/SfRadialGaugePage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class SfRadialGaugePage : IGalleryPage\n{\n    #region [ CTor ]\n    public SfRadialGaugePage(SfRadialGaugePageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfRangeSelector/SfRangeSelectorPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.SfRangeSelectorPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:charts=\"clr-namespace:Syncfusion.Maui.Charts;assembly=Syncfusion.Maui.Charts\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:sliders=\"clr-namespace:Syncfusion.Maui.Sliders;assembly=Syncfusion.Maui.Sliders\"\n    Title=\"SfRangeSelector\"\n    Padding=\"20\"\n    x:DataType=\"core:SfRangeSelectorPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"syncfusionlogo.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"ControlInfo\">\n            The .NET Multi-platform App UI (.NET MAUI) SfRangeSelector displays an animation to show that the application is engaged in a lengthy activity. Unlike ProgressBar, SfRangeSelector gives no indication of progress\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader\">\n            Key features:\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Numeric support</strong> - Provided functionality for selecting numeric values.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Content</strong> - Add a control of any type inside the range selector. It is also possible to add Charts controls.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Labels</strong> - Render labels with option to customize their formats based on your requirements.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Ticks and dividers</strong> - Provided an option to show ticks and dividers based on the slider interval. Also, minor ticks can be enabled to indicate the values between each interval. These options present the selected value in a more intuitive way for end users.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Discrete mode</strong> - Able to move the thumb in a discrete manner based on the provided step value.\n                            ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[\n                                <strong style=\"color:blue\">Tooltip</strong> - Render a tooltip to show the selected value clearly. You can also customize the format of the text shown in the tooltip.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n\n    </core:BasePage.Resources>\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"20\">\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <Label Text=\"{x:StaticResource ControlInfo}\" />\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <CollectionView\n                    Header=\"{x:StaticResource PropertiesListHeader}\"\n                    ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                    Style=\"{x:StaticResource PropertiesListStyle}\" />\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Simple Range selector\" />\n                    <sliders:SfRangeSelector />\n                    <core:SourceCodeExpander Code=\"{x:Binding SimpleRangeSelectorXamlCode}\" />\n                </VerticalStackLayout>\n            </Border>\n            <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"10\">\n                    <sliders:SfDateTimeRangeSelector\n                        x:Name=\"rangeSelector\"\n                        DateFormat=\"yyyy\"\n                        InactiveRegionFill=\"#99FFFFFF\"\n                        Interval=\"1\"\n                        IntervalType=\"Years\"\n                        LabelsPlacement=\"BetweenTicks\"\n                        Maximum=\"2011-01-01\"\n                        Minimum=\"2002-01-01\"\n                        RangeEnd=\"{Binding RangeEnd}\"\n                        RangeStart=\"{Binding RangeStart}\"\n                        ShowLabels=\"True\"\n                        ShowTicks=\"True\"\n                        VerticalOptions=\"Center\">\n\n                        <sliders:SfDateTimeRangeSelector.LabelStyle>\n                            <sliders:SliderLabelStyle\n                                ActiveFontSize=\"{OnPlatform 14,\n                                                            Android=10,\n                                                            iOS=10}\"\n                                InactiveFontSize=\"{OnPlatform 14,\n                                                              Android=10,\n                                                              iOS=10}\"\n                                Offset=\"4\" />\n                        </sliders:SfDateTimeRangeSelector.LabelStyle>\n\n                        <sliders:SfDateTimeRangeSelector.Tooltip>\n                            <sliders:SliderTooltip DateFormat=\"MMM d, yyyy\" />\n                        </sliders:SfDateTimeRangeSelector.Tooltip>\n\n                        <charts:SfCartesianChart>\n                            <charts:SfCartesianChart.XAxes>\n                                <charts:DateTimeAxis IsVisible=\"False\" ShowMajorGridLines=\"False\" />\n                            </charts:SfCartesianChart.XAxes>\n\n                            <charts:SfCartesianChart.YAxes>\n                                <charts:NumericalAxis IsVisible=\"False\" ShowMajorGridLines=\"False\" />\n                            </charts:SfCartesianChart.YAxes>\n\n                            <charts:SfCartesianChart.Series>\n                                <charts:SplineAreaSeries\n                                    ItemsSource=\"{Binding Source}\"\n                                    XBindingPath=\"X\"\n                                    YBindingPath=\"Y\">\n\n                                    <charts:SplineAreaSeries.Fill>\n                                        <LinearGradientBrush StartPoint=\"0,0\" EndPoint=\"0,1\">\n                                            <GradientStop Offset=\"0.1\" Color=\"#A96DFF\" />\n                                            <GradientStop Offset=\"1.0\" Color=\"#FCEDB8\" />\n                                        </LinearGradientBrush>\n                                    </charts:SplineAreaSeries.Fill>\n\n                                </charts:SplineAreaSeries>\n                            </charts:SfCartesianChart.Series>\n                        </charts:SfCartesianChart>\n                    </sliders:SfDateTimeRangeSelector>\n                </VerticalStackLayout>\n            </Border>\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Syncfusion/Controls/SfRangeSelector/SfRangeSelectorPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class SfRangeSelectorPage : IGalleryPage\n{\n    public SfRangeSelectorPage()\n    {\n        InitializeComponent();\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Controls/AvatarView/AvatarViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.AvatarViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Avatar View\"\n    Padding=\"20\"\n    x:DataType=\"core:AvatarViewPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">BackgroundColor</strong> property is a <strong style=\"color:blue\">Color</strong> that determines the background color of the control. If unset, the background will be the default Color object, which renders as <strong style=\"color:blue\">White</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">BorderColor</strong> property is a <strong style=\"color:blue\">Color</strong> property that determines the border color of the control. If unset, the border will be the default Color object, which renders as <strong style=\"color:blue\">Black</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">BorderWidth</strong> property is a <strong style=\"color:blue\">double</strong> that determines the rendered width of the control border. If unset, the border width will be the default, which renders as <strong style=\"color:blue\">1.0</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CornerRadius</strong> property is a CornerRadius that determines the shape of the control. It can be set to a single <strong style=\"color:blue\">double</strong> uniform corner radius value, or a CornerRadius structure defined by four <strong style=\"color:blue\">double</strong> values that are applied to the top left, top right, bottom left, and bottom right of the control. This property is measured in device-independent units. If unset, the corner radius will be the default CornerRadius object, which renders as <strong style=\"color:blue\">24</strong>.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ImageSource</strong> property is an <strong style=\"color:blue\">ImageSource</strong> that determines the image of the control. It can be set to an image retrieved from a file, embedded resource, URI, or stream. If unset, the control will render the <strong style=\"color:blue\">Text</strong> property.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Padding</strong> property is a <strong style=\"color:blue\">Thickness</strong> that represents the distance between control border and the <strong style=\"color:blue\">Text</strong> or <strong style=\"color:blue\">ImageSource</strong>. If unset, the padding will be the default <strong style=\"color:blue\">Thickness</strong> object, which is <strong style=\"color:blue\">1</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Text</strong> property is a string that determines the text of the control. If unset, the text will be the default, which renders as '?'.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">TextColor</strong> property is a Color that determines the text color of the control. If unset, the text will be the default Colour object.    ]]>\n            </x:String>\n        </x:Array>\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout>\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertyItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setup Toolkit\" />\n                        <VerticalStackLayout>\n                            <Label Text=\"{x:Binding SetupDescription}\" />\n                            <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleBefore}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Would be modified to include the xmlns as follows:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleAfter}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"AvatarView with text\" />\n                        <HorizontalStackLayout Spacing=\"10\">\n                            <toolkit:AvatarView BorderColor=\"Black\" Text=\"ZS\" />\n                            <toolkit:AvatarView BorderColor=\"Black\" Text=\"Hello\" />\n                            <toolkit:AvatarView BorderColor=\"Black\" Text=\"Cat\" />\n                        </HorizontalStackLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlAvatarViewText}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"AvatarView set text color\" />\n                        <HorizontalStackLayout Spacing=\"10\">\n                            <toolkit:AvatarView\n                                BorderColor=\"Black\"\n                                Text=\"TC\"\n                                TextColor=\"Green\" />\n                            <toolkit:AvatarView\n                                BorderColor=\"Black\"\n                                Text=\"TC\"\n                                TextColor=\"{x:Static core:AppColors.Black}\" />\n                            <toolkit:AvatarView\n                                BorderColor=\"Black\"\n                                Text=\"TC\"\n                                TextColor=\"#806e41\" />\n                        </HorizontalStackLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlAvatarViewTextColor}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"AvatarView with background color\" />\n                        <HorizontalStackLayout Spacing=\"10\">\n                            <toolkit:AvatarView\n                                BackgroundColor=\"Red\"\n                                BorderColor=\"Black\"\n                                Text=\"BC\" />\n                            <toolkit:AvatarView\n                                BackgroundColor=\"{x:Static core:AppColors.Green}\"\n                                BorderColor=\"Black\"\n                                Text=\"BC\" />\n                            <toolkit:AvatarView\n                                BackgroundColor=\"#ffe39e\"\n                                BorderColor=\"Black\"\n                                Text=\"BC\" />\n                        </HorizontalStackLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlAvatarViewBackgroundColor}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"AvatarView with border color\" />\n                        <HorizontalStackLayout Spacing=\"10\">\n                            <toolkit:AvatarView BorderColor=\"Yellow\" Text=\"BC\" />\n                            <toolkit:AvatarView BorderColor=\"{x:Static core:AppColors.LightBlue}\" Text=\"BC\" />\n                            <toolkit:AvatarView BorderColor=\"#004b5c\" Text=\"BC\" />\n                        </HorizontalStackLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlAvatarViewBorderColor}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"AvatarView with padding\" />\n                        <HorizontalStackLayout Spacing=\"10\">\n                            <toolkit:AvatarView\n                                Padding=\"2\"\n                                BorderColor=\"Black\"\n                                Text=\"PA\" />\n                            <toolkit:AvatarView\n                                Padding=\"1\"\n                                BorderColor=\"Black\"\n                                Text=\"PA\" />\n                            <toolkit:AvatarView\n                                Padding=\"3\"\n                                BorderColor=\"Black\"\n                                Text=\"PA\" />\n                        </HorizontalStackLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlAvatarViewPadding}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"AvatarView border width\" />\n                        <HorizontalStackLayout Spacing=\"10\">\n                            <toolkit:AvatarView\n                                BorderColor=\"Black\"\n                                BorderWidth=\"2\"\n                                Text=\"BW\" />\n                            <toolkit:AvatarView\n                                BorderColor=\"Black\"\n                                BorderWidth=\"1\"\n                                Text=\"BW\" />\n                            <toolkit:AvatarView\n                                BorderColor=\"Black\"\n                                BorderWidth=\"3\"\n                                Text=\"BW\" />\n                        </HorizontalStackLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlAvatarViewBorderWidth}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout>\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"AvatarView corner set\" />\n                        <Grid\n                            ColumnDefinitions=\"0.5*, 0.5*\"\n                            ColumnSpacing=\"10\"\n                            HorizontalOptions=\"FillAndExpand\">\n                            <VerticalStackLayout Grid.Column=\"0\" Spacing=\"10\">\n                                <Label Text=\"This is four corner set\" />\n                                <HorizontalStackLayout HeightRequest=\"70\" Spacing=\"10\">\n                                    <toolkit:AvatarView\n                                        BorderColor=\"Black\"\n                                        CornerRadius=\"8, 12, 16, 20\"\n                                        HeightRequest=\"48\"\n                                        Text=\"CR\"\n                                        WidthRequest=\"48\" />\n                                    <toolkit:AvatarView\n                                        BorderColor=\"Black\"\n                                        CornerRadius=\"9, 18, 46, 7\"\n                                        HeightRequest=\"48\"\n                                        Text=\"CR\"\n                                        WidthRequest=\"48\" />\n                                </HorizontalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlAvatarViewFourCornerSet}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                            <VerticalStackLayout Grid.Column=\"1\" Spacing=\"10\">\n                                <Label Text=\"This is one corner set\" />\n                                <HorizontalStackLayout HeightRequest=\"70\" Spacing=\"10\">\n                                    <toolkit:AvatarView\n                                        BorderColor=\"Black\"\n                                        CornerRadius=\"8\"\n                                        HeightRequest=\"48\"\n                                        Text=\"CR\"\n                                        WidthRequest=\"48\" />\n                                    <toolkit:AvatarView\n                                        BorderColor=\"Black\"\n                                        CornerRadius=\"12\"\n                                        HeightRequest=\"38\"\n                                        Text=\"CR\"\n                                        WidthRequest=\"38\" />\n                                    <toolkit:AvatarView\n                                        BorderColor=\"Black\"\n                                        CornerRadius=\"5\"\n                                        HeightRequest=\"58\"\n                                        Text=\"CR\"\n                                        WidthRequest=\"58\" />\n                                </HorizontalStackLayout>\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlAvatarViewSingleCornerSet}\" CodeType=\"Xaml\" />\n                            </VerticalStackLayout>\n                        </Grid>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"AvatarView Image Source\" />\n                        <HorizontalStackLayout Spacing=\"10\">\n                            <toolkit:AvatarView\n                                Padding=\"-4,0,0,0\"\n                                BackgroundColor=\"Orange\"\n                                BorderColor=\"Black\"\n                                HeightRequest=\"40\"\n                                WidthRequest=\"40\">\n                                <toolkit:AvatarView.ImageSource>\n                                    <FontImageSource\n                                        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n                                        Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_person_circle_24_regular}\"\n                                        Size=\"100\"\n                                        Color=\"{x:Static core:AppColors.White}\" />\n                                </toolkit:AvatarView.ImageSource>\n                            </toolkit:AvatarView>\n                            <toolkit:AvatarView\n                                Padding=\"-4,0,0,0\"\n                                BackgroundColor=\"Orange\"\n                                BorderColor=\"Black\"\n                                HeightRequest=\"40\"\n                                ImageSource=\"{x:Binding ControlInformation.ControlIcon,\n                                                        Mode=OneWay}\"\n                                WidthRequest=\"40\" />\n\n                            <toolkit:AvatarView\n                                Padding=\"-4,0,0,0\"\n                                BorderColor=\"Black\"\n                                HeightRequest=\"40\"\n                                ImageSource=\"https://aka.ms/campus.jpg\"\n                                WidthRequest=\"40\" />\n                        </HorizontalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Here is the snip code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlAvatarViewImageSource}\" CodeType=\"Xaml\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpAvatarViewViewModelImageSource}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Controls/AvatarView/AvatarViewPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class AvatarViewPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly AvatarViewPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public AvatarViewPage(AvatarViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Controls/DrawingView/DrawingViewPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.DrawingViewPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"DrawingView\"\n    Padding=\"20\"\n    x:DataType=\"core:DrawingViewPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:String x:Key=\"PropertiesListHeader\">\n            Properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader1\">\n            Properties:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader2\">\n            There are 2 steps to replace the default DrawingLine with the custom implementation:\n        </x:String>\n\n        <x:String x:Key=\"PropertiesListHeader3\">\n            Event argument which contains last drawing line:\n        </x:String>\n\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                Lines <strong style=\"color:blue\">ObservableCollection\"IDrawingLine\"</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                IsMultiLineModeEnabled <strong style=\"color:blue\">bool</strong>.\n\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                ShouldClearOnFinish <strong style=\"color:blue\">bool</strong>.\n\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                DrawingLineCompletedCommand <strong style=\"color:blue\">ICommand</strong>.\n\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                DrawingLineCompleted <strong style=\"color:blue\">EventHandler\"DrawingLineCompletedEventArgs\"</strong>.\n\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                LineColor <strong style=\"color:blue\">EventHandler\"DrawingLineCompletedEventArgs\"</strong>.\n\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                LineWidth <strong style=\"color:blue\">float</strong>.\n\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSource1\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                LineColor <strong style=\"color:blue\">Color</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                LineWidth <strong style=\"color:blue\">float</strong>.\n\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                Points <strong style=\"color:blue\">ObservableCollection\"PointF\"</strong>.\n\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                Granularity <strong style=\"color:blue\">int</strong>.\n\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                ShouldSmoothPathWhenDrawn <strong style=\"color:blue\">bool</strong>.\n\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSource2\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                Creat custom class which implements <strong style=\"color:blue\">IDrawingLine</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                Create custom class which implements <strong style=\"color:blue\">IDrawingLineAdapter</strong>.\n\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                Set custom <strong style=\"color:blue\">IDrawingLineAdapter</strong> in <strong style=\"color:blue\">IDrawingViewHandler</strong>.\n\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSource3\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                LastDrawingLine <strong style=\"color:blue\">IDrawingLine</strong>.\n                            ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"PropertiesItemsSource4\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[\n                                GetImageStream: Retrieves a <strong style=\"color:blue\">Stream</strong> containing an image of the <strong style=\"color:blue\">Lines</strong> that are currently drawn on the <strong style=\"color:blue\">DrawingView</strong>.\n                            ]]>\n            </x:String>\n\n            <x:String>\n                <![CDATA[\n                                GetImageStream (static): Retrieves a <strong style=\"color:blue\">Stream</strong> containing an image of the collection of <strong style=\"color:blue\">IDrawingLine</strong> that is provided as a parameter.\n                            ]]>\n            </x:String>\n\n        </x:Array>\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <!--  Properties  -->\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Properties\" />\n                        <CollectionView\n                            Header=\"{x:StaticResource PropertiesListHeader}\"\n                            ItemsSource=\"{x:StaticResource PropertiesItemsSource}\"\n                            Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n                <!--  DrawingLine  -->\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"DrawingLine\" />\n                        <Label Text=\"The DrawingLine contains the list of points and allows configuring each line style individually.\" />\n                        <CollectionView\n                            Header=\"{x:StaticResource PropertiesListHeader1}\"\n                            ItemsSource=\"{x:StaticResource PropertiesItemsSource1}\"\n                            Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n                <!--  Using the DrawingView  -->\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Using the DrawingView\" />\n                        <toolkit:DrawingView\n                            HeightRequest=\"350\"\n                            LineColor=\"Red\"\n                            LineWidth=\"5\"\n                            WidthRequest=\"350\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BasicDrawingViewXamlCode}\" CodeType=\"Xaml\" />\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"C#\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BasicDrawingViewCSharpCode}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n                <!--  MultiLine usage  -->\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"MultiLine usage\" />\n                        <Label Text=\"By default DrawingView supports only 1 line. To enable MultiLine set IsMultiLineModeEnabled to true. Make sure ShouldClearOnFinish is false.\" />\n                        <toolkit:DrawingView\n                            HeightRequest=\"350\"\n                            IsMultiLineModeEnabled=\"true\"\n                            LineColor=\"Black\"\n                            ShouldClearOnFinish=\"false\"\n                            WidthRequest=\"350\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding MultiLineUsageXamlCode}\" CodeType=\"Xaml\" />\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"C#\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding MultiLineUsageCSharpCode}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n                <!--  Handle event when DrawingLineCompleted  -->\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Handle event when DrawingLineCompleted\" />\n                        <Label Text=\"DrawingView allows to subscribe to the events like DrawingLineCompleted. The corresponding command DrawingLineCompletedCommand is also available.\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding DrawingLineCompletedXamlCode}\" CodeType=\"Xaml\" />\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"C#\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding DrawingLineCompletedCSharpCode}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n                <!--  Advanced usage  -->\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Advanced usage\" />\n                        <Label Text=\"To get the full benefits, the DrawingView provides the methods to get the image stream of the drawing lines.\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding AdvancedUsageXamlCode}\" CodeType=\"Xaml\" />\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"C#\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding AdvancedUsageCSharpCode}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n                <!--  Custom IDrawingLine  -->\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Custom IDrawingLine\" />\n                        <CollectionView\n                            Header=\"{x:StaticResource PropertiesListHeader2}\"\n                            ItemsSource=\"{x:StaticResource PropertiesItemsSource2}\"\n                            Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CustomIDrawingLineCSharpCode1}\" CodeType=\"CSharp\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CustomIDrawingLineCSharpCode2}\" CodeType=\"CSharp\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CustomIDrawingLineCSharpCode3}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n                <!--  DrawingLineCompletedEventArgs  -->\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"DrawingLineCompletedEventArgs\" />\n                        <CollectionView\n                            Header=\"{x:StaticResource PropertiesListHeader3}\"\n                            ItemsSource=\"{x:StaticResource PropertiesItemsSource3}\"\n                            Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n                <!--  Methods  -->\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Methods\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource4}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Controls/DrawingView/DrawingViewPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class DrawingViewPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly DrawingViewPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public DrawingViewPage(DrawingViewPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Controls/Expander/ExpanderPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ExpanderPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Expander\"\n    Padding=\"20\"\n    x:DataType=\"core:ExpanderPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[    <strong style=\"color:blue\">Command</strong> is a <strong style=\"color:blue\">ICommand</strong> type it executes when the <strong style=\"color:blue\">Expander</strong> header is tapped.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[    <strong style=\"color:blue\">CommandParameter</strong> is a <strong style=\"color:blue\">object</strong> type parameter that's passed to <strong style=\"color:blue\">Command</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[    <strong style=\"color:blue\">Direction</strong> is a <strong style=\"color:blue\">ExpandDirection</strong> which defines the expander direction.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[    <strong style=\"color:blue\">Content</strong> is a <strong style=\"color:blue\">IView?</strong> property which defines the content to be displayed when the <strong style=\"color:blue\">Expander</strong> expands.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[    <strong style=\"color:blue\">Header</strong> same as <strong style=\"color:blue\">Content</strong> is a <strong style=\"color:blue\">IView?</strong> property which defines the header content.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[    <strong style=\"color:blue\">IsExpanded</strong> a <strong style=\"color:blue\">bool</strong> type property. It determines if the <strong style=\"color:blue\">Expander</strong> is expanded. This property uses the <strong style=\"color:blue\">TwoWay</strong> binding mode, and has a default value of <strong style=\"color:blue\">false</strong>.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"DirectionPropertiesItemsSourceHeader\">\n            The ExpandDirection enumeration defines the following members\n        </x:String>\n\n        <x:Array x:Key=\"DirectionPropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[    <strong style=\"color:blue\">Down</strong> property indicates that the <strong style=\"color:blue\">Expander</strong> content is under the header.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[    <strong style=\"color:blue\">Up</strong> property indicates that the <strong style=\"color:blue\">Expander</strong> content is above the header.   ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlGroupListDataTemplate\" x:DataType=\"core:IGalleryCardInfo\">\n            <ViewCell>\n                <Border Margin=\"0,5,0,5\" Padding=\"5\">\n                    <Border.StrokeShape>\n                        <RoundRectangle CornerRadius=\"5\" />\n                    </Border.StrokeShape>\n                    <Grid ColumnDefinitions=\"0.2*, 0.2*, 0.6*\" HeightRequest=\"40\">\n                        <Image\n                            Grid.Column=\"0\"\n                            Source=\"{x:Binding ControlIcon}\"\n                            VerticalOptions=\"Center\" />\n                        <Label\n                            Grid.Column=\"1\"\n                            FontAttributes=\"Bold\"\n                            FontSize=\"14\"\n                            LineBreakMode=\"TailTruncation\"\n                            Text=\"{x:Binding ControlName}\"\n                            VerticalTextAlignment=\"Center\" />\n                        <Label\n                            Grid.Column=\"2\"\n                            FontAttributes=\"Italic\"\n                            FontSize=\"12\"\n                            LineBreakMode=\"TailTruncation\"\n                            Text=\"{x:Binding ControlDetail}\"\n                            VerticalTextAlignment=\"Center\" />\n                    </Grid>\n                </Border>\n            </ViewCell>\n        </DataTemplate>\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout>\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <Label Text=\"{x:StaticResource DirectionPropertiesItemsSourceHeader}\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource DirectionPropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setup Toolkit\" />\n                        <VerticalStackLayout>\n                            <Label Text=\"{x:Binding SetupDescription}\" />\n                            <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleBefore}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Would be modified to include the xmlns as follows:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleAfter}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Simple Expander\" />\n                        <Frame Style=\"{x:StaticResource DocumentContentFrameStyle}\">\n                            <toolkit:Expander>\n                                <toolkit:Expander.Header>\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        FontSize=\"Medium\"\n                                        Text=\"Click me\" />\n                                </toolkit:Expander.Header>\n                                <Grid ColumnDefinitions=\"120, *\" ColumnSpacing=\"10\">\n                                    <Image\n                                        Grid.Column=\"0\"\n                                        Aspect=\"AspectFill\"\n                                        HeightRequest=\"120\"\n                                        Source=\"https://aka.ms/campus.jpg\"\n                                        WidthRequest=\"120\" />\n                                    <Label\n                                        Grid.Column=\"1\"\n                                        FontAttributes=\"Italic\"\n                                        Text=\"The Microsoft headquarters, also known as the Microsoft Redmond campus, is a sprawling complex located in Redmond, Washington. It’s home to numerous buildings and facilities where Microsoft’s various teams and departments work. The campus is known for its modern architecture, lush landscaping, and amenities designed to foster collaboration and creativity among employees. It’s truly a landmark in the world of tech company campuses.\" />\n                                </Grid>\n                            </toolkit:Expander>\n                        </Frame>\n                        <Label Text=\"This is xaml source code example\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlSimpleExpander}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Simple Expander With Opposite Direction\" />\n                        <Frame Style=\"{x:StaticResource DocumentContentFrameStyle}\">\n                            <toolkit:Expander Direction=\"Up\" FlowDirection=\"RightToLeft\">\n                                <toolkit:Expander.Header>\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        FontSize=\"Medium\"\n                                        Text=\"Click me\" />\n                                </toolkit:Expander.Header>\n                                <Grid ColumnDefinitions=\"120, *\" ColumnSpacing=\"10\">\n                                    <Image\n                                        Grid.Column=\"0\"\n                                        Aspect=\"AspectFill\"\n                                        HeightRequest=\"120\"\n                                        Source=\"https://aka.ms/campus.jpg\"\n                                        WidthRequest=\"120\" />\n                                    <Label\n                                        Grid.Column=\"1\"\n                                        FontAttributes=\"Italic\"\n                                        Text=\"The Microsoft headquarters, also known as the Microsoft Redmond campus, is a sprawling complex located in Redmond, Washington. It’s home to numerous buildings and facilities where Microsoft’s various teams and departments work. The campus is known for its modern architecture, lush landscaping, and amenities designed to foster collaboration and creativity among employees. It’s truly a landmark in the world of tech company campuses.\" />\n                                </Grid>\n                            </toolkit:Expander>\n                        </Frame>\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlSimpleExpanderOppositeDirection}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Checking Expand\" />\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"Your Expander is: \" />\n                                    <Span BackgroundColor=\"Yellow\" Text=\"{x:Binding ExpanderStatus}\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <Frame Style=\"{x:StaticResource DocumentContentFrameStyle}\">\n                            <toolkit:Expander IsExpanded=\"{x:Binding IsExpanding}\">\n                                <toolkit:Expander.Header>\n                                    <Label\n                                        FontAttributes=\"Bold\"\n                                        FontSize=\"Medium\"\n                                        Text=\"Click me\" />\n                                </toolkit:Expander.Header>\n                                <Grid ColumnDefinitions=\"120, *\" ColumnSpacing=\"10\">\n                                    <Image\n                                        Grid.Column=\"0\"\n                                        Aspect=\"AspectFill\"\n                                        HeightRequest=\"120\"\n                                        Source=\"https://aka.ms/campus.jpg\"\n                                        WidthRequest=\"120\" />\n                                    <Label\n                                        Grid.Column=\"1\"\n                                        FontAttributes=\"Italic\"\n                                        Text=\"The Microsoft headquarters, also known as the Microsoft Redmond campus, is a sprawling complex located in Redmond, Washington. It’s home to numerous buildings and facilities where Microsoft’s various teams and departments work. The campus is known for its modern architecture, lush landscaping, and amenities designed to foster collaboration and creativity among employees. It’s truly a landmark in the world of tech company campuses.\" />\n                                </Grid>\n                            </toolkit:Expander>\n                        </Frame>\n                        <Label Text=\"Your code should like this\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlSimpleExpanderCheckingExpand}\" CodeType=\"Xaml\" />\n                        <Label Text=\"And this is your ViewModel\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpViewModelSimpleExpanderCheckingExpand}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Controls/Expander/ExpanderPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class ExpanderPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly ExpanderPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public ExpanderPage(ExpanderPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Controls/MediaElement/MediaElementPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.MediaElementPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Media Element\"\n    Padding=\"20\"\n    x:DataType=\"core:MediaElementPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"ContentPage_Loaded\"\n    Unloaded=\"ContentPage_Unloaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:Array x:Key=\"SupportedFormats\" Type=\"{x:Type core:SupportedFormatsTable}\">\n            <core:SupportedFormatsTable\n                Link=\"ExoPlayer Supported Formats\"\n                Notes=\"\"\n                Platform=\"Android\" />\n            <core:SupportedFormatsTable\n                Link=\"iOS/macOS Supported Formats\"\n                Notes=\"No official documentation on this exists\"\n                Platform=\"iOS/macOS\" />\n            <core:SupportedFormatsTable\n                Link=\"Windows Supported Formats\"\n                Notes=\"On Windows the supported formats are very much dependent on what codecs are installed on the user's machine\"\n                Platform=\"Windows\" />\n            <core:SupportedFormatsTable\n                Link=\"Tizen Supported Formats\"\n                Notes=\"\"\n                Platform=\"Tizen\" />\n        </x:Array>\n\n        <x:Array x:Key=\"PlatformImplementations\" Type=\"{x:Type core:SupportedFormatsTable}\">\n            <core:SupportedFormatsTable\n                Link=\"ExoPlayer, big thank you to the ExoPlayerXamarin maintainers!\"\n                Notes=\"\"\n                Platform=\"Android\" />\n            <core:SupportedFormatsTable\n                Link=\"AVPlayer\"\n                Notes=\"\"\n                Platform=\"iOS/macOS\" />\n            <core:SupportedFormatsTable\n                Link=\"MediaPlayer\"\n                Notes=\"\"\n                Platform=\"Windows\" />\n        </x:Array>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Aspect</strong> determines the scaling mode for the (visual) media that is currently loaded. This is a bindable property. Default value is <strong style=\"color:blue\">Aspect.AspectFit</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CurrentState</strong> is <strong style=\"color:blue\">MediaElementState</strong> property which indicates the current status of the control. This is a read-only, bindable property. Default value is <strong style=\"color:blue\">MediaElementState.None</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Duration</strong> is <strong style=\"color:blue\">TimeSpan</strong> property which indicates the duration of the currently opened media. This is a read-only, bindable property. Default value is <strong style=\"color:blue\">TimeSpan.Zero</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Position</strong> is <strong style=\"color:blue\">TimeSpan</strong> property which indicates the duration of the currently opened media. This is a read-only, bindable property. Default value is <strong style=\"color:blue\">TimeSpan.Zero</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ShouldAutoPlay</strong> type <strong style=\"color:blue\">boolean</strong>, this property indicates whether media playback will begin automatically when the Source property is set. This is a bindable property. Default value is <strong style=\"color:blue\">false</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ShouldLoopPlayback</strong> type <strong style=\"color:blue\">boolean</strong>, this property describes whether the currently loaded media source should resume playback from the start after reaching its end. This is a bindable property. Default value is <strong style=\"color:blue\">false</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ShouldKeepScreenOn</strong> type <strong style=\"color:blue\">boolean</strong>, this property determines whether the device screen should stay on during media playback. This is a bindable property. Default value is <strong style=\"color:blue\">false</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ShouldMute</strong> type <strong style=\"color:blue\">boolean</strong>, this property determines whether the audio is currently muted. This is a bindable property. Default value is <strong style=\"color:blue\">false</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ShouldShowPlaybackControls</strong> type <strong style=\"color:blue\">boolean</strong>, this property determines whether the platforms playback controls are displayed. This is a bindable property. Note that on iOS and Windows the controls are only shown for a brief period after interacting with the screen. There is no way of keeping the controls visible at all times. Default value is <strong style=\"color:blue\">true</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Source</strong> is <strong style=\"color:blue\">MediaSource?</strong> type property, this property is the source of the media loaded into the control. Default value is <strong style=\"color:blue\">null</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Speed</strong> is a <strong style=\"color:blue\">double</strong> property, it determines the playback speed of the media. This is a bindable property. Default value is <strong style=\"color:blue\">1</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">MediaHeight</strong> and <strong style=\"color:blue\">MediaWidth</strong> is a <strong style=\"color:blue\">int</strong> type property, it is the height and the width of the loaded media in pixels. This is a read-only, bindable property. Default value is <strong style=\"color:blue\">0</strong>.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Volume</strong> is a <strong style=\"color:blue\">double</strong> type property, it determines the media's volume, which is represented on a linear scale between 0 and 1. This is a bindable property. Default value is <strong style=\"color:blue\">1</strong>.    ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"EventItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">MediaOpened</strong> Occurs when the media stream has been validated and opened.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">MediaEnded</strong> Occurs when the <strong style=\"color:blue\">MediaElement</strong> finishes playing its media.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">MediaFailed</strong> Occurs when there's an error associated with the media source.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">PositionChanged</strong> Occurs when the <strong style=\"color:blue\">Position</strong> property value has changed.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SeekCompleted</strong> Occurs when the seek point of a requested seek operation is ready for playback.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"MethodItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Play</strong> Starts playing the loaded media.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Pause</strong> Pauses playback of the current media.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Stop</strong> Stops playback and resets the position of the current media.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SeekTo</strong> Takes a <strong style=\"color:blue\">TimeSpan</strong> value to set the <strong style=\"color:blue\">Position</strong> property to.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"MediaElementHeader\">\n            Media that's supported by the underlying platform can be played from the following sources:\n        </x:String>\n        <x:Array x:Key=\"MediaElement\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The web, using a URI (HTTP or HTTPS).   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   A resource embedded in the platform application, using the <strong style=\"color:blue\">embed://</strong> URI scheme. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   Files that come from the app's local filesystem, using the <strong style=\"color:blue\">filesystem://</strong> URI scheme.    ]]>\n            </x:String>\n        </x:Array>\n        <x:String x:Key=\"MediaElementFooter\">\n            MediaElement can use the platform playback controls, which are referred to as transport controls. However, they are disabled by default and can be replaced with your own transport controls. The following screenshots show MediaElement playing a video with the platform transport controls:\n        </x:String>\n\n        <x:Array x:Key=\"PlatformImplementation\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   Platform   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   PlatformImplementations   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"SupportedFormat\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   Platform   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   Link   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   Notes  ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"iOSBypassing\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   To bypass the Hardware Silent Switch on iOS, add the following lines of code to <strong style=\"color:blue\">MauiProgram.cs</strong>. This ensures that MediaElement's playback audio will always be audible to the user regardless of their device's Hardware Silent Switch.   ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"RemoteMedia\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   A <strong style=\"color:blue\">MediaElement</strong> can play remote media files using the HTTP and HTTPS URI schemes. This is accomplished by setting the <strong style=\"color:blue\">Source</strong> property to the URI of the media file:   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"LocalMediaHeader\">\n            Local media can be played from the following sources:\n        </x:String>\n        <x:Array x:Key=\"LocalMedia\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   A resource embedded in the platform application, using the <strong style=\"color:blue\">embed://</strong> URI scheme.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   Files that come from the app's local filesystem, using the <strong style=\"color:blue\">filesystem://</strong> URI scheme. ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"AppPackageLocalMedia\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   A MediaElement can play media files that are embedded in the app package, using the <strong style=\"color:blue\">embed://</strong> URI scheme. Media files are embedded in the app package by placing them in the platform project.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   To enable a media file for playback from the local resources add the file to the <strong style=\"color:blue\">Resources/Raw</strong> folder of you .NET MAUI project. When a file is added in the root, the URI would be <strong style=\"color:blue\">embed://MyFile.mp4</strong>. ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   You can also place files in sub folders. If <strong style=\"color:blue\">MyFile.mp4</strong> would be in <strong style=\"color:blue\">Resources/Raw/MyVideos</strong> then the URI to use it with <strong style=\"color:blue\">MediaElement</strong> would be <strong style=\"color:blue\">embed://MyVideos/MyFile.mp4</strong>. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"MediaSourceStaticMethodsHeader\">\n            <![CDATA[   A <strong style=\"color:blue\">MediaElement</strong> can play media by setting its <strong style=\"color:blue\">Source</strong> property to a remote or local media file. The <strong style=\"color:blue\">Source</strong> property is of type <strong style=\"color:blue\">MediaSource</strong>, and this class defines three static methods:   ]]>\n        </x:String>\n\n        <x:Array x:Key=\"MediaSourceStaticMethods\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FromFile</strong>, returns a <strong style=\"color:blue\">FileMediaSource</strong> instance from a <strong style=\"color:blue\">string</strong> argument. This method creates a <strong style=\"color:blue\">FileMediaSource</strong> that reads media from a local file   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FromUri</strong>, returns a <strong style=\"color:blue\">UriMediaSource</strong> instance from a <strong style=\"color:blue\">Uri</strong> argument. This method creates an <strong style=\"color:blue\">UriMediaSource</strong> that downloads and reads media from a specified URI   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FromResource</strong>, returns a <strong style=\"color:blue\">ResourceMediaSource</strong> instance from a <strong style=\"color:blue\">string</strong> argument. This method creates a <strong style=\"color:blue\">ResourceMediaSource</strong> that reads media from an embedded resource  ]]>\n            </x:String>\n        </x:Array>\n        <x:String x:Key=\"MediaSourceStaticMethodsFooter\">\n            In addition, the MediaSource class also has implicit operators that return MediaSource instances from string and Uri arguments.\n        </x:String>\n\n        <x:String x:Key=\"MediaSourceTypesHeader\">\n            The MediaSource class also has these derived classes:\n        </x:String>\n        <x:Array x:Key=\"MediaSourceTypes\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FileMediaSource</strong>, Used for media located in the app package. This class has a <strong style=\"color:blue\">Path</strong> property that can be set to a <strong style=\"color:blue\">string</strong>. In addition, this class has implicit operators to convert a <strong style=\"color:blue\">string</strong> to a <strong style=\"color:blue\">FileMediaSource</strong> object, and a <strong style=\"color:blue\">FileMediaSource</strong> object to a <strong style=\"color:blue\">string</strong>.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">UriMediaSource</strong>, Used for media located at a <strong style=\"color:blue\">Uri</strong>. This can be a file or HTTP URL. This class has a <strong style=\"color:blue\">Uri</strong> property that can be set to a <strong style=\"color:blue\">Uri</strong>.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ResourceMediaSource</strong>, Used for media located in an embedded resource. This class has a <strong style=\"color:blue\">Path</strong> property that can be set to a <strong style=\"color:blue\">string</strong>. ]]>\n            </x:String>\n        </x:Array>\n        <x:String x:Key=\"MediaSourceTypesFooter\">\n            Both of these methods are the same in result they both return a Source but just in different ways one Source is created by the class and one Source is created by the static method but they are the same Source if they have the same parameter\n        </x:String>\n\n        <x:Array x:Key=\"AspectRatio\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">AspectFit</strong> indicates that the video will be letterboxed, if required, to fit into the display area, while preserving the aspect ratio.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">AspectFill</strong> indicates that the video will be clipped so that it fills the display area, while preserving the aspect ratio.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Fill</strong> indicates that the video will be stretched to fill the display area. ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"MediaElementStateHeader\">\n            <![CDATA[   The <strong style=\"color:blue\">MediaElement</strong> class defines a read-only bindable property named <strong style=\"color:blue\">CurrentState</strong>, of type <strong style=\"color:blue\">MediaElementState</strong>. The <strong style=\"color:blue\">MediaElementState</strong> enumeration defines the following members:   ]]>\n        </x:String>\n\n        <x:Array x:Key=\"MediaElementState\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">None</strong> indicates that the <strong style=\"color:blue\">MediaElement</strong> contains no media.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Opening</strong> indicates that the <strong style=\"color:blue\">MediaElement</strong> is validating and attempting to load the specified source.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Buffering</strong> indicates that the <strong style=\"color:blue\">MediaElement</strong> is loading the media for playback. Its <strong style=\"color:blue\">Position</strong> property does not advance during this state. If the <strong style=\"color:blue\">MediaElement</strong> was playing video, it continues to display the last displayed frame.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Playing</strong> indicates that the <strong style=\"color:blue\">MediaElement</strong> is playing the media source.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Paused</strong> indicates that the <strong style=\"color:blue\">MediaElement</strong> does not advance its <strong style=\"color:blue\">Position</strong> property. If the <strong style=\"color:blue\">MediaElement</strong> was playing video, it continues to display the current frame.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Stopped</strong> indicates that the <strong style=\"color:blue\">MediaElement</strong> contains media but it is not being played or paused. Its Position property is reset to 0 and does not advance.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Failed</strong> indicates that the <strong style=\"color:blue\">MediaElement</strong> failed to load or play the media. This can occur while trying to load a new media item, when attempting to play the media item or when the media playback is interrupted due to a failure. Use the <strong style=\"color:blue\">MediaFailed</strong> event to retrieve additional details.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"MediaElementCleanUpResources\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   To prevent memory leaks you will have to free the resources of <strong style=\"color:blue\">MediaElement</strong>. This can be done by disconnecting the handler. Where you need to do this is dependant on where and how you use <strong style=\"color:blue\">MediaElement</strong> in your app, but typically if you have a <strong style=\"color:blue\">MediaElement</strong> on a single page and are not playing media in the background, you want to free the resources when the user navigates away from the page.    ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   Below you can find a snippet of sample code which shows how to do this. First, make sure to hook up the <strong style=\"color:blue\">Unloaded</strong> event on your page. Adding this line    ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"MediaElementCleanUpResourcesExplanation\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[    <strong style=\"color:blue\">ContentPage_Unloaded</strong>, is an event handler for the <strong style=\"color:blue\">Unloaded</strong> event of the <strong style=\"color:blue\">BasePage</strong>. This event is fired when the page is removed from the visual tree. In this method, the <strong style=\"color:blue\">DisconnectHandler</strong> method is called on the <strong style=\"color:blue\">Handler</strong> property of each <strong style=\"color:blue\">MediaElement</strong>. <strong style=\"color:blue\">ContentPage_Unloaded</strong> method is triggered when the page is removed from the visual tree, which means it’s not just invisible, but unloaded from memory.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[    <strong style=\"color:blue\">OnDisappearing</strong>, is an override of the <strong style=\"color:blue\">OnDisappearing</strong> method in the <strong style=\"color:blue\">Page</strong> class. This method is called just before a page becomes invisible. In this method, all event handlers are disconnected and the <strong style=\"color:blue\">Source</strong> property of the <strong style=\"color:blue\">MediaElement</strong> is set to null. <strong style=\"color:blue\">OnDisappearing</strong> method is triggered when the page is about to become invisible, but not necessarily unloaded. This could happen, for example, when navigating to another page.   ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"SupportedFormatsTableHeader\">\n            <Frame\n                Padding=\"5\"\n                BackgroundColor=\"White\"\n                CornerRadius=\"0\">\n                <Grid Grid.ColumnSpan=\"3\" ColumnDefinitions=\"0.2*, 0.3*, 0.5*\">\n                    <Label Grid.Column=\"0\" Text=\"{x:Binding Source={x:StaticResource SupportedFormat}, Path=[0]}\" />\n                    <Label Grid.Column=\"1\" Text=\"{x:Binding Source={x:StaticResource SupportedFormat}, Path=[1]}\" />\n                    <Label Grid.Column=\"2\" Text=\"{x:Binding Source={x:StaticResource SupportedFormat}, Path=[2]}\" />\n                </Grid>\n            </Frame>\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"SupportedFormatsTableGrid\" x:DataType=\"core:SupportedFormatsTable\">\n            <Frame\n                Margin=\"0\"\n                Padding=\"5\"\n                CornerRadius=\"0\">\n                <Grid\n                    Grid.ColumnSpan=\"3\"\n                    Margin=\"0\"\n                    ColumnDefinitions=\"0.2*, 0.3*, 0.5*\">\n                    <Label Grid.Column=\"0\" Text=\"{x:Binding Platform}\" />\n                    <Label Grid.Column=\"1\" Text=\"{x:Binding Link}\" />\n                    <Label Grid.Column=\"2\" Text=\"{x:Binding Notes}\" />\n                </Grid>\n            </Frame>\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"PlatformImplementationsTableHeader\">\n            <Frame Padding=\"5\" CornerRadius=\"0\">\n                <Grid Grid.ColumnSpan=\"3\" ColumnDefinitions=\"0.2*, 0.3*, 0.5*\">\n                    <Label Grid.Column=\"0\" Text=\"{x:Binding Source={x:StaticResource PlatformImplementation}, Path=[0]}\" />\n                    <Label Grid.Column=\"1\" Text=\"{x:Binding Source={x:StaticResource PlatformImplementation}, Path=[1]}\" />\n                </Grid>\n            </Frame>\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"PlatformImplementationsTableGrid\" x:DataType=\"core:SupportedFormatsTable\">\n            <Frame\n                Margin=\"0\"\n                Padding=\"5\"\n                CornerRadius=\"0\">\n                <Grid\n                    Grid.ColumnSpan=\"3\"\n                    Margin=\"0\"\n                    ColumnDefinitions=\"0.3*, 0.7*\">\n                    <Label Grid.Column=\"0\" Text=\"{x:Binding Platform}\" />\n                    <Label Grid.Column=\"1\" Text=\"{x:Binding Link}\" />\n                </Grid>\n            </Frame>\n        </DataTemplate>\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <CollectionView\n                        Footer=\"{x:StaticResource MediaElementFooter}\"\n                        Header=\"{x:StaticResource MediaElementHeader}\"\n                        ItemsSource=\"{x:StaticResource MediaElement}\"\n                        Style=\"{x:StaticResource PropertiesListStyle}\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Supported Formats\" />\n                        <CollectionView\n                            Header=\"{x:Binding .}\"\n                            HeaderTemplate=\"{x:StaticResource SupportedFormatsTableHeader}\"\n                            ItemTemplate=\"{x:StaticResource SupportedFormatsTableGrid}\"\n                            ItemsSource=\"{x:StaticResource SupportedFormats}\" />\n                        <Label Text=\"The MediaElement uses the following platform implementations.\" />\n                        <CollectionView\n                            Header=\"{x:Binding .}\"\n                            HeaderTemplate=\"{x:StaticResource PlatformImplementationsTableHeader}\"\n                            ItemTemplate=\"{x:StaticResource PlatformImplementationsTableGrid}\"\n                            ItemsSource=\"{x:StaticResource PlatformImplementations}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout>\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertyItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout>\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Events\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource EventItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout>\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Methods\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource MethodItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setup Toolkit\" />\n                        <VerticalStackLayout>\n                            <Label Text=\"{x:Binding SetupDescription}\" />\n                            <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleBefore}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Would be modified to include the xmlns as follows:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleAfter}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Bypassing the iOS Silent Switch\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource iOSBypassing}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <core:SourceCodeExpander Code=\"{x:Binding IOSBypassingSetup}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Play remote media\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource RemoteMedia}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <toolkit:MediaElement\n                        x:Name=\"SimpleMediaElement\"\n                        MinimumHeightRequest=\"200\"\n                        ShouldShowPlaybackControls=\"True\"\n                        Source=\"https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Your code should like this\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlSimpleRemoteMediaElement}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Play local media\" />\n                        <CollectionView\n                            Header=\"{x:StaticResource LocalMediaHeader}\"\n                            ItemsSource=\"{x:StaticResource LocalMedia}\"\n                            Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <Label Text=\"Play media embedded in the app package\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource AppPackageLocalMedia}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"An example of how to use this syntax in XAML can be seen below.\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlSimpleLocalMediaElement}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"MediaSource types static methods\" />\n                        <Label Text=\"{x:StaticResource MediaSourceStaticMethodsHeader}\" TextType=\"Html\" />\n                        <CollectionView\n                            Footer=\"{x:StaticResource MediaSourceStaticMethodsFooter}\"\n                            ItemsSource=\"{x:StaticResource MediaSourceStaticMethods}\"\n                            Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding MediaSourceStaticMethodsExample}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"MediaSource derived classes\" />\n                        <CollectionView\n                            Footer=\"{x:StaticResource MediaSourceTypesFooter}\"\n                            Header=\"{x:StaticResource MediaSourceTypesHeader}\"\n                            ItemsSource=\"{x:StaticResource MediaSourceTypes}\"\n                            Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding MediaSourceExample}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Change video aspect ratio\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource AspectRatio}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding AspectRatioExample}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Determine MediaElement status\" />\n                        <Label Text=\"{x:StaticResource MediaElementStateHeader}\" TextType=\"Html\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource MediaElementState}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Implement custom transport controls\" />\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <toolkit:MediaElement\n                                x:Name=\"MediaElement\"\n                                MediaEnded=\"OnMediaEnded\"\n                                MediaFailed=\"OnMediaFailed\"\n                                MediaOpened=\"OnMediaOpened\"\n                                PositionChanged=\"OnPositionChanged\"\n                                SeekCompleted=\"OnSeekCompleted\"\n                                ShouldAutoPlay=\"False\"\n                                Source=\"https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4\"\n                                StateChanged=\"OnStateChanged\"\n                                Volume=\"{x:Binding Volume,\n                                                   Mode=TwoWay}\" />\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <HorizontalStackLayout\n                                BindingContext=\"{x:Reference MediaElement}\"\n                                HorizontalOptions=\"CenterAndExpand\"\n                                Spacing=\"10\">\n                                <Button\n                                    Grid.Column=\"0\"\n                                    Clicked=\"OnPlayClicked\"\n                                    Text=\"Play\" />\n                                <Button\n                                    Grid.Column=\"1\"\n                                    Clicked=\"OnPauseClicked\"\n                                    Text=\"Pause\" />\n                                <Button\n                                    Grid.Column=\"2\"\n                                    Clicked=\"OnStopClicked\"\n                                    Text=\"Stop\" />\n                                <Button\n                                    Grid.Column=\"3\"\n                                    Clicked=\"OnMuteClicked\"\n                                    Text=\"Mute\">\n                                    <Button.Triggers>\n                                        <DataTrigger\n                                            Binding=\"{x:Binding ShouldMute,\n                                                                Source={x:Reference MediaElement}}\"\n                                            TargetType=\"Button\"\n                                            Value=\"True\">\n                                            <Setter Property=\"Text\" Value=\"Unmute\" />\n                                        </DataTrigger>\n                                        <DataTrigger\n                                            Binding=\"{x:Binding ShouldMute,\n                                                                Source={x:Reference MediaElement}}\"\n                                            TargetType=\"Button\"\n                                            Value=\"False\">\n                                            <Setter Property=\"Text\" Value=\"Mute\" />\n                                        </DataTrigger>\n                                    </Button.Triggers>\n                                </Button>\n                                <Button Clicked=\"OnSpeedMinusClicked\" Text=\"&gt;\" />\n                                <Button Clicked=\"OnSpeedPlusClicked\" Text=\"&gt;&gt;&gt;\" />\n                                <Button Clicked=\"OnVolumeMinusClicked\" Text=\"-\" />\n                                <Button Clicked=\"OnVolumePlusClicked\" Text=\"+\" />\n                            </HorizontalStackLayout>\n                        </Border>\n\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Text=\"This is the xaml code\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding XamlMediaElement}\" CodeType=\"Xaml\" />\n                                <Label Text=\"This is the code behind\" />\n                                <core:SourceCodeExpander Code=\"{x:Binding CSharpMediaElement}\" CodeType=\"CSharp\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Border>\n\n\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Implement a custom volumea and video position control\" />\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <Grid\n                                ColumnDefinitions=\"0.5*,0.5*\"\n                                ColumnSpacing=\"10\"\n                                HorizontalOptions=\"FillAndExpand\">\n                                <VerticalStackLayout Grid.Column=\"0\" Spacing=\"10\">\n                                    <Label Text=\"Video Volume\" />\n                                    <Slider\n                                        x:Name=\"VolumeSlider\"\n                                        IsEnabled=\"True\"\n                                        Maximum=\"1.0\"\n                                        Minimum=\"0.0\"\n                                        MinimumTrackColor=\"Gray\"\n                                        WidthRequest=\"200\"\n                                        Value=\"{x:Binding Volume,\n                                                          Mode=TwoWay}\" />\n                                    <Label Text=\"This is the xaml code\" />\n                                    <core:SourceCodeExpander Code=\"{x:Binding XamlVolumeControl}\" CodeType=\"Xaml\" />\n                                    <Label Text=\"This is the ViewModel code\" />\n                                    <core:SourceCodeExpander Code=\"{x:Binding CSharpVolumeControl}\" CodeType=\"CSharp\" />\n                                </VerticalStackLayout>\n                                <VerticalStackLayout Grid.Column=\"2\" Spacing=\"10\">\n                                    <Label Text=\"Video Position\" />\n                                    <Slider\n                                        x:Name=\"PositionSlider\"\n                                        DragCompleted=\"Slider_DragCompleted\"\n                                        DragStarted=\"Slider_DragStarted\"\n                                        IsEnabled=\"True\"\n                                        MinimumTrackColor=\"Gray\"\n                                        WidthRequest=\"200\" />\n                                    <Label Text=\"This is the xaml code\" />\n                                    <core:SourceCodeExpander Code=\"{x:Binding XamlPositionControl}\" CodeType=\"Xaml\" />\n                                    <Label Text=\"This is the code behind\" />\n                                    <core:SourceCodeExpander Code=\"{x:Binding CSharpPositionControl}\" CodeType=\"CSharp\" />\n                                </VerticalStackLayout>\n                            </Grid>\n                        </Border>\n                        <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                            <VerticalStackLayout Spacing=\"10\">\n                                <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Clean up MediaElement resources\" />\n                                <CollectionView ItemsSource=\"{x:StaticResource MediaElementCleanUpResources}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                                <Label Text=\"{x:Binding XamlCleanUpProperty}\" TextColor=\"Blue\" />\n                            </VerticalStackLayout>\n                        </Border>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"This is the xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCleanUpMediaElementResourcesRemovedVisualTree}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This is the code behind\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpCleanUpMediaElementResourcesRemovedVisualTree}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"You can clean up resource using OnDisappearing\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CleanUpMediaElementResourcesPageInvisible}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <CollectionView ItemsSource=\"{x:StaticResource MediaElementCleanUpResourcesExplanation}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Download And Delete Media File\" />\n                        <toolkit:MediaElement\n                            x:Name=\"MediaElementDownloadSample\"\n                            HeightRequest=\"300\"\n                            ShouldAutoPlay=\"True\"\n                            ShouldShowPlaybackControls=\"True\"\n                            WidthRequest=\"400\" />\n                        <ActivityIndicator\n                            x:Name=\"DownloadIndicator\"\n                            HeightRequest=\"100\"\n                            WidthRequest=\"100\" />\n                        <ProgressBar x:Name=\"DownloadProgressBar\" />\n\n                        <Label\n                            x:Name=\"ResultLabel\"\n                            FontSize=\"18\"\n                            HorizontalOptions=\"Center\"\n                            SemanticProperties.Description=\"Welcome to dot net Multi platform App U I\"\n                            SemanticProperties.HeadingLevel=\"Level2\"\n                            Text=\"Start the download boiz\" />\n\n                        <Label\n                            x:Name=\"CheckFileLabel\"\n                            FontSize=\"18\"\n                            HorizontalOptions=\"Center\"\n                            Text=\"Common check the file\" />\n\n                        <Button\n                            x:Name=\"DownloadButton\"\n                            Clicked=\"DownloadButton_Clicked\"\n                            HorizontalOptions=\"Center\"\n                            SemanticProperties.Hint=\"Counts the number of times you click\"\n                            Text=\"Download\" />\n\n                        <Button\n                            x:Name=\"DeleteLocalVideoButton\"\n                            BackgroundColor=\"Red\"\n                            Clicked=\"DeleteLocalVideoButton_Clicked\"\n                            Text=\"Delete\" />\n\n                        <Button Clicked=\"CheckDownload_Clicked\" Text=\"Check download\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Controls/MediaElement/MediaElementPage.xaml.cs",
    "content": "﻿using CommunityToolkit.Maui.Core.Primitives;\nusing CommunityToolkit.Maui.Views;\nusing Microsoft.Extensions.Logging;\nusing System.ComponentModel;\nusing System.Net;\n\nnamespace MAUIsland;\npublic partial class MediaElementPage : IGalleryPage\n{\n    #region [ Fields ]\n    readonly ILogger MediaElementLogger;\n    MediaElementPageViewModel ViewModel;\n    string videoUrl = \"https://petaversestorageaccount.blob.core.windows.net/petaverse-petvideos/Breathing 😂\";\n    string localFilePath = Path.Combine(FileSystem.Current.AppDataDirectory, \"video.mp4\");\n    #endregion\n\n    #region [ CTor ]\n    public MediaElementPage(MediaElementPageViewModel vm, ILogger<MediaElementPage> mediaElementLogger)\n    {\n        InitializeComponent();\n\n        BindingContext = ViewModel = vm;\n        this.MediaElementLogger = mediaElementLogger;\n        MediaElement.PropertyChanged += MediaElementPropertyChanged;\n    }\n    #endregion\n\n    #region [ Override ]\n    protected override void OnDisappearing()\n    {\n        base.OnDisappearing();\n\n        // Disconnect the event handlers.\n        MediaElement.MediaEnded -= OnMediaEnded;\n        MediaElement.MediaFailed -= OnMediaFailed;\n        MediaElement.MediaOpened -= OnMediaOpened;\n        MediaElement.PositionChanged -= OnPositionChanged;\n        MediaElement.StateChanged -= OnStateChanged;\n        MediaElement.SeekCompleted -= OnSeekCompleted;\n\n        // Set the Source property to null.\n        MediaElement.Source = null;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && ViewModel.ControlInformation is null)\n        {\n            ViewModel.SetControlInformation(NewWindowParameter);\n            ViewModel.RefreshCommand.Execute(null);\n        }\n    }\n    void MediaElementPropertyChanged(object? sender, PropertyChangedEventArgs e)\n    {\n        if (e.PropertyName == MediaElement.DurationProperty.PropertyName)\n        {\n            MediaElementLogger.LogInformation(\"Duration: {newDuration}\", MediaElement.Duration);\n            PositionSlider.Maximum = MediaElement.Duration.TotalSeconds;\n        }\n    }\n\n    private void ContentPage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && ViewModel.ControlInformation is null)\n        {\n            ViewModel.SetControlInformation(NewWindowParameter);\n            ViewModel.RefreshCommand.Execute(null);\n        }\n\n        if (File.Exists(localFilePath))\n        {\n            MediaElementDownloadSample.Source = MediaSource.FromFile(localFilePath);\n        }\n        else\n        {\n            CheckFileLabel.Text = $\"Nah bro\";\n        }\n    }\n\n    void ContentPage_Unloaded(object? sender, EventArgs e)\n    {\n        //MediaElementDownloadSample.Handler?.DisconnectHandler();\n        //MediaElement.Handler?.DisconnectHandler();\n        //SimpleMediaElement.Handler?.DisconnectHandler();\n    }\n\n    private void DownloadButton_Clicked(object sender, EventArgs e)\n    {\n        DownloadIndicator.IsRunning = true;\n        using (var client = new WebClient())\n        {\n            client.DownloadFileCompleted += (sender, e) =>\n            {\n                DownloadIndicator.IsRunning = false;\n                ResultLabel.Text = \"Video download finished!\";\n                MediaElementDownloadSample.Source = MediaSource.FromFile(localFilePath);\n            };\n            client.DownloadProgressChanged += (sender, e) =>\n            {\n                DownloadProgressBar.Progress = e.ProgressPercentage / 100.0;\n            };\n\n            client.DownloadFileAsync(new Uri(videoUrl), localFilePath);\n        }\n    }\n\n    private void CheckDownload_Clicked(object sender, EventArgs e)\n    {\n        if (File.Exists(localFilePath))\n        {\n            CheckFileLabel.Text = $\"Yub it's here {localFilePath}\";\n        }\n        else\n        {\n            CheckFileLabel.Text = $\"No file exist\";\n        }\n    }\n\n    private void DeleteLocalVideoButton_Clicked(object sender, EventArgs e)\n    {\n        if (File.Exists(localFilePath))\n        {\n            File.Delete(localFilePath);\n            CheckFileLabel.Text = \"Deleted !!\";\n        }\n        else\n        {\n            CheckFileLabel.Text = $\"No file exist !!!\";\n        }\n    }\n\n    void OnMediaOpened(object? sender, EventArgs e)\n        => MediaElementLogger.LogInformation(\"Media opened.\");\n\n    void OnStateChanged(object? sender, MediaStateChangedEventArgs e)\n        => MediaElementLogger.LogInformation(\"Media State Changed. Old State: {PreviousState}, New State: {NewState}\", e.PreviousState, e.NewState);\n\n    void OnMediaFailed(object? sender, MediaFailedEventArgs e)\n        => MediaElementLogger.LogInformation(\"Media failed. Error: {ErrorMessage}\", e.ErrorMessage);\n\n    void OnMediaEnded(object? sender, EventArgs e)\n        => MediaElementLogger.LogInformation(\"Media ended.\");\n\n    void OnPositionChanged(object? sender, MediaPositionChangedEventArgs e)\n    {\n        MediaElementLogger.LogInformation(\"Position changed to {position}\", e.Position);\n        PositionSlider.Value = e.Position.TotalSeconds;\n    }\n\n    void OnSeekCompleted(object? sender, EventArgs e)\n        => MediaElementLogger.LogInformation(\"Seek completed.\");\n\n    void OnSpeedMinusClicked(object? sender, EventArgs e)\n    {\n        if (MediaElement.Speed >= 1)\n        {\n            MediaElement.Speed -= 1;\n        }\n    }\n    void OnSpeedPlusClicked(object? sender, EventArgs e)\n    {\n        if (MediaElement.Speed < 10)\n        {\n            MediaElement.Speed += 1;\n        }\n    }\n    void OnVolumeMinusClicked(object? sender, EventArgs e)\n    {\n        if (MediaElement.Volume >= 0)\n        {\n            if (MediaElement.Volume < .1)\n            {\n                ViewModel.Volume = 0;\n\n                return;\n            }\n\n            ViewModel.Volume -= .1;\n        }\n    }\n\n    void OnVolumePlusClicked(object? sender, EventArgs e)\n    {\n        if (MediaElement.Volume < 1)\n        {\n            if (MediaElement.Volume > .9)\n            {\n                ViewModel.Volume = 1;\n\n                return;\n            }\n\n            ViewModel.Volume += .1;\n        }\n    }\n\n    void OnPlayClicked(object? sender, EventArgs e)\n        => MediaElement.Play();\n\n\n    void OnPauseClicked(object? sender, EventArgs e)\n        => MediaElement.Pause();\n\n\n    void OnStopClicked(object? sender, EventArgs e)\n        => MediaElement.Stop();\n\n    void OnMuteClicked(object? sender, EventArgs e)\n        => MediaElement.ShouldMute = !MediaElement.ShouldMute;\n\n    void Slider_DragCompleted(object? sender, EventArgs e)\n    {\n        ArgumentNullException.ThrowIfNull(sender);\n\n        var newValue = ((Slider)sender).Value;\n        MediaElement.SeekTo(TimeSpan.FromSeconds(newValue));\n\n        MediaElement.Play();\n    }\n\n    void Slider_DragStarted(object sender, EventArgs e)\n    {\n        MediaElement.Pause();\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/BoolToObjectConverter/BoolToObjectConverterPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.BoolToObjectConverterPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Bool To Object Converter\"\n    Padding=\"20\"\n    x:DataType=\"core:BoolToObjectConverterPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.Convert(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertBackReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.ConvertBack(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">TrueObject</strong> is type <strong style=\"color:blue\">object?</strong> property represents the <strong style=\"color:blue\">object</strong> that will be returned when the bound boolean value is <strong style=\"color:blue\">true</strong>.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FalseObject</strong> is type <strong style=\"color:blue\">object?</strong> property represents the <strong style=\"color:blue\">object</strong> that will be returned when the bound boolean value is <strong style=\"color:blue\">false</strong>.  ]]>\n            </x:String>\n        </x:Array>\n\n        <toolkit:BoolToObjectConverter\n            x:Key=\"BoolToObjectConverter1\"\n            FalseObject=\"0\"\n            TrueObject=\"42\" />\n        <toolkit:BoolToObjectConverter\n            x:Key=\"BoolToObjectConverter2\"\n            FalseObject=\"Collapsed\"\n            TrueObject=\"Visible\" />\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Converter Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setup Toolkit\" />\n                        <VerticalStackLayout>\n                            <Label Text=\"{x:Binding SetupDescription}\" />\n                            <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleBefore}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Would be modified to include the xmlns as follows:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleAfter}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Bool To Object Converter\" />\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"This is the \" />\n                                    <Span FontAttributes=\"Bold\" Text=\"ConverterTesting1\" />\n                                    <Span Text=\" property without the Converter: \" />\n                                    <Span FontAttributes=\"Bold\" Text=\"{x:Binding ConverterTesting1}\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"This is the \" />\n                                    <Span FontAttributes=\"Bold\" Text=\"ConverterTesting1\" />\n                                    <Span Text=\" property with the Converter: \" />\n                                    <Span FontAttributes=\"Bold\" Text=\"{x:Binding ConverterTesting1, Converter={StaticResource BoolToObjectConverter1}}\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <Label Text=\"One more example\" />\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"This is the \" />\n                                    <Span FontAttributes=\"Bold\" Text=\"ConverterTesting2\" />\n                                    <Span Text=\" property without the Converter: \" />\n                                    <Span FontAttributes=\"Bold\" Text=\"{x:Binding ConverterTesting2}\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"This is the \" />\n                                    <Span FontAttributes=\"Bold\" Text=\"ConverterTesting2\" />\n                                    <Span Text=\" property with the Converter: \" />\n                                    <Span FontAttributes=\"Bold\" Text=\"{x:Binding ConverterTesting2, Converter={StaticResource BoolToObjectConverter2}}\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"This is ViewModel code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpxamlConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Here what your converter look like\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterSetup}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterTesting}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/BoolToObjectConverter/BoolToObjectConverterPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class BoolToObjectConverterPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly BoolToObjectConverterPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public BoolToObjectConverterPage(BoolToObjectConverterPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/ByteArrayToImageSourceConverter/ByteArrayToImageSourceConverterPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ByteArrayToImageSourceConverterPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Byte Array To Image Source Converter\"\n    Padding=\"20\"\n    x:DataType=\"core:ByteArrayToImageSourceConverterPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.Convert(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertBackReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.ConvertBack(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.  ]]>\n            </x:String>\n        </x:Array>\n\n        <toolkit:ByteArrayToImageSourceConverter x:Key=\"ByteArrayToImageSourceConverter\" />\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Converter Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setup Toolkit\" />\n                        <VerticalStackLayout>\n                            <Label Text=\"{x:Binding SetupDescription}\" />\n                            <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleBefore}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Would be modified to include the xmlns as follows:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleAfter}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Bool To Object Converter\" />\n                        <HorizontalStackLayout HeightRequest=\"200\" Spacing=\"10\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"byte[] \" />\n                                        <Span Text=\" property into a ImageSource like this\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Image Source=\"{x:Binding ImageByteArray, Converter={x:StaticResource ByteArrayToImageSourceConverter}}\" />\n                        </HorizontalStackLayout>\n                        <Label VerticalOptions=\"Center\">\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"Without the converter \" />\n                                    <Span FontAttributes=\"Bold\" Text=\"byte[]\" />\n                                    <Span Text=\" value will look like this\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <Label LineBreakMode=\"TailTruncation\" Text=\"{x:Binding ImageByteArrayToString}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"This is ViewModel code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpxamlConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Here what your converter look like\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterSetup}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterTesting}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/ByteArrayToImageSourceConverter/ByteArrayToImageSourceConverterPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class ByteArrayToImageSourceConverterPage : IGalleryPage\n{\n\n    #region [ Fields ]\n\n    private readonly ByteArrayToImageSourceConverterPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public ByteArrayToImageSourceConverterPage(ByteArrayToImageSourceConverterPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/ColorConverter/ColorConverterPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ColorConverterPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Color Converter\"\n    Padding=\"20\"\n    x:DataType=\"core:ColorConverterPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.Convert(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertBackReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.ConvertBack(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.  ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToBlackOrWhiteConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToBlackOrWhiteConverter</strong> is a one way converter that allows users to convert an incoming Color to a monochrome value of either Colors.Black or Colors.White.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToByteAlphaConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToByteAlphaConverter</strong> is a one way converter that allows users to convert an incoming Color to the alpha component as a value between 0 and 255.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToByteBlueConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToByteBlueConverter</strong> is a one way converter that allows users to convert an incoming Color to the blue component as a value between 0 and 255.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToByteRedConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToByteRedConverter</strong> is a one way converter that allows users to convert an incoming Color to the red component as a value between 0 and 255.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToByteGreenConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToByteGreenConverter</strong> is a one way converter that allows users to convert an incoming Color to the green component as a value between 0 and 255.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToCmykaStringConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToCmykaStringConverter</strong> is a one way converter that allows users to convert a Color value binding to its <strong style=\"color:blue\">CMYKA</strong> string equivalent in the format: CMYKA(cyan,magenta,yellow,key,alpha) where cyan, magenta, yellow and key will be a value between 0% and 100%, and alpha will be a value between o and 1 (e.g. CMYKA(0%,100%,100%,0%,1) for Colors.Red.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToCmykStringConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToCmykStringConverter</strong> is a one way converter that allows users to convert a Color value binding to its CMYK string equivalent in the format: <strong style=\"color:blue\">CMYK(cyan,magenta,yellow,key)</strong> where cyan, magenta, yellow and key will be a value between 0% and 100% (e.g. CMYK(0%,100%,100%,0%) for Colors.Red   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToColorForTextConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToColorForTextConverter</strong> is a one way converter that allows users to convert an incoming Color to a monochrome value of either Colors.Black or Colors.White based on whether it is determined as being dark for the human eye.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToDegreeHueConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToDegreeHueConverter</strong> is a one way converter that allows users to convert an incoming Color to the hue component as a value between 0 and 360. Hue is a degree on the color wheel from 0 to 360. 0 is red, 120 is green, 240 is blue.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToGrayScaleColorConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToGrayScaleColorConverter</strong> is a one way converter that allows users to convert an incoming <strong style=\"color:blue\">Color</strong> to a grayscale <strong style=\"color:blue\">Color</strong>.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToHexRgbStringConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToHexRgbStringConverter</strong> is a that allows users to convert a <strong style=\"color:blue\">Color</strong> value binding to its RGB hexadecimal <strong style=\"color:blue\">string</strong> equivalent in the format: #redgreenblue where red, green and blue will be a value between 0 and FF.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToHexRgbaStringConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToHexRgbaStringConverter</strong> is a that allows users to convert a <strong style=\"color:blue\">Color</strong> value binding to its RGB hexadecimal <strong style=\"color:blue\">string</strong> equivalent in the format: #redgreenbluealpha where red, green, blue and alpha will be a value between 0 and FF.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToHslStringConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToHslStringConverter</strong> is a one way converter that allows users to convert a <strong style=\"color:blue\">Color</strong> value binding to its HSL <strong style=\"color:blue\">string</strong> equivalent in the format: HSL(hue,saturation,lightness) where hue will be a value between 0 and 360, and saturation and lightness will be a value between 0% and 100%.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToHslaStringConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToHslaStringConverter</strong> is a one way converter that allows users to convert a <strong style=\"color:blue\">Color</strong> value binding to its HSLA <strong style=\"color:blue\">string</strong> equivalent in the format: HSLA(hue,saturation,lightness,alpha) where hue will be a value between 0 and 360, saturation and lightness will be a value between 0% and 100%, and alpha will be a value between 0 and 1.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToInverseColorConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToInverseColorConverter</strong> is a one way converter that allows users to convert an incoming <strong style=\"color:blue\">Color</strong> to its inverse.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToPercentBlackKeyConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToPercentBlackKeyConverter</strong> is a one way converter that allows users to convert an incoming Color to the key component as a value between 0 and 1.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToPercentCyanConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToPercentCyanConverter</strong> is a one way converter that allows users to convert an incoming Color to the cyan component as a value between 0 and 1.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToPercentMagentaConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToPercentMagentaConverter</strong> is a one way converter that allows users to convert an incoming Color to the magenta component as a value between 0 and 1.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToPercentYellowConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToPercentYellowConverter</strong> is a one way converter that allows users to convert an incoming Color to the yellow component as a value between 0 and 1.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToRgbStringConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToRgbStringConverter</strong> is a one way converter that allows users to convert a <strong style=\"color:blue\">Color</strong> value binding to its RGB <strong style=\"color:blue\">string</strong> equivalent in the format: RGB(red,green,blue) where red, green and blue will be a value between 0 and 255.   ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Array x:Key=\"ColorToRgbaStringConverterControlInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ColorToRgbaStringConverter</strong> is a one way converter that allows users to convert a <strong style=\"color:blue\">Color</strong> value binding to its RGBA <strong style=\"color:blue\">string</strong> equivalent in the format: RGB(red,green,blue,alpha) where red, green and blue will be a value between 0 and 255, and alpha is a value between 0 and 1.   ]]>\n            </x:String>\n        </x:Array>\n\n        <toolkit:ColorToBlackOrWhiteConverter x:Key=\"ColorToBlackOrWhiteConverter\" />\n\n        <toolkit:ColorToByteAlphaConverter x:Key=\"ColorToByteAlphaConverter\" />\n\n        <toolkit:ColorToByteBlueConverter x:Key=\"ColorToByteBlueConverter\" />\n\n        <toolkit:ColorToByteGreenConverter x:Key=\"ColorToByteGreenConverter\" />\n\n        <toolkit:ColorToByteRedConverter x:Key=\"ColorToByteRedConverter\" />\n\n        <toolkit:ColorToCmykaStringConverter x:Key=\"ColorToCmykaStringConverter\" />\n\n        <toolkit:ColorToCmykStringConverter x:Key=\"ColorToCmykStringConverter\" />\n\n        <toolkit:ColorToColorForTextConverter x:Key=\"ColorToColorForTextConverter\" />\n\n        <toolkit:ColorToDegreeHueConverter x:Key=\"ColorToDegreeHueConverter\" />\n\n        <toolkit:ColorToGrayScaleColorConverter x:Key=\"ColorToGrayScaleColorConverter\" />\n\n        <toolkit:ColorToHexRgbStringConverter x:Key=\"ColorToHexRgbStringConverter\" />\n\n        <toolkit:ColorToHexRgbaStringConverter x:Key=\"ColorToHexRgbaStringConverter\" />\n\n        <toolkit:ColorToHslStringConverter x:Key=\"ColorToHslStringConverter\" />\n\n        <toolkit:ColorToHslaStringConverter x:Key=\"ColorToHslaStringConverter\" />\n\n        <toolkit:ColorToInverseColorConverter x:Key=\"ColorToInverseColorConverter\" />\n\n        <toolkit:ColorToPercentBlackKeyConverter x:Key=\"ColorToPercentBlackKeyConverter\" />\n\n        <toolkit:ColorToPercentCyanConverter x:Key=\"ColorToPercentCyanConverter\" />\n\n        <toolkit:ColorToPercentMagentaConverter x:Key=\"ColorToPercentMagentaConverter\" />\n\n        <toolkit:ColorToPercentYellowConverter x:Key=\"ColorToPercentYellowConverter\" />\n\n        <toolkit:ColorToRgbStringConverter x:Key=\"ColorToRgbStringConverter\" />\n\n        <toolkit:ColorToRgbaStringConverter x:Key=\"ColorToRgbaStringConverter\" />\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Converter Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setup Toolkit\" />\n                        <VerticalStackLayout>\n                            <Label Text=\"{x:Binding SetupDescription}\" />\n                            <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleBefore}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Would be modified to include the xmlns as follows:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleAfter}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Color Panel\" />\n                        <Label Text=\"Please design a Color\" />\n                        <Grid\n                            Margin=\"5\"\n                            ColumnDefinitions=\"0.1*, 0.9*\"\n                            RowDefinitions=\"auto, auto, auto, auto\">\n                            <Label\n                                Grid.Row=\"0\"\n                                Grid.Column=\"0\"\n                                Text=\"Red byte\" />\n                            <Slider\n                                Grid.Row=\"0\"\n                                Grid.Column=\"1\"\n                                Maximum=\"1\"\n                                Minimum=\"0\"\n                                Value=\"{x:Binding RedByte}\" />\n                            <Label\n                                Grid.Row=\"1\"\n                                Grid.Column=\"0\"\n                                Text=\"Green byte\" />\n                            <Slider\n                                Grid.Row=\"1\"\n                                Grid.Column=\"1\"\n                                Maximum=\"1\"\n                                Minimum=\"0\"\n                                Value=\"{x:Binding GreenByte}\" />\n                            <Label\n                                Grid.Row=\"2\"\n                                Grid.Column=\"0\"\n                                Text=\"Blue byte\" />\n                            <Slider\n                                Grid.Row=\"2\"\n                                Grid.Column=\"1\"\n                                Maximum=\"1\"\n                                Minimum=\"0\"\n                                Value=\"{x:Binding BlueByte}\" />\n                            <Label\n                                Grid.Row=\"3\"\n                                Grid.Column=\"0\"\n                                Text=\"Alpha byte\" />\n                            <Slider\n                                Grid.Row=\"3\"\n                                Grid.Column=\"1\"\n                                Maximum=\"1\"\n                                Minimum=\"0\"\n                                Value=\"{Binding AlphaByte}\" />\n                        </Grid>\n                        <Label Text=\"Your chosen Color here\" />\n                        <Border Padding=\"0\">\n                            <Border.StrokeShape>\n                                <RoundRectangle CornerRadius=\"5\" />\n                            </Border.StrokeShape>\n                            <BoxView HeightRequest=\"100\" Color=\"{x:Binding ExampleColor}\" />\n                        </Border>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Black Or White Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToBlackOrWhiteConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToBlackOrWhiteConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into this text color \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor,\n                                                                  Converter={x:StaticResource ColorToBlackOrWhiteConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToBlackOrWhiteConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToBlackOrWhiteConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Byte Alpha Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToByteAlphaConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToBlackOrWhiteConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into this Byte Alpha (Transparency) \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToByteAlphaConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToByteAlphaConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToByteAlphaConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Byte Blue Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToByteBlueConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToByteBlueConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into this Byte Blue \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToByteBlueConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToByteBlueConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToByteBlueConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Byte Red Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToByteRedConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToByteRedConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into this Byte Red \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToByteRedConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                        </VerticalStackLayout>\n                        <Label Text=\"This is ViewModel code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Here what your converter look like\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlColorToByteRedConverterSetup}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This Xaml TextColor code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlColorToByteRedConverterTextTesting}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Byte Green Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToByteGreenConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToByteGreenConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into this Byte Green \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToByteGreenConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToByteGreenConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToByteGreenConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Cmyka String Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToCmykaStringConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToCmykaStringConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Cmyka String \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToCmykaStringConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToCmykaStringConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToCmykaStringConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Cmyk String Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToCmykStringConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToCmykStringConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Cmyk String \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToCmykStringConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToCmykStringConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToCmykStringConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Color For Text Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToColorForTextConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToColorForTextConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Color For Text \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToColorForTextConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToColorForTextConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToColorForTextConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Degree Hue Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToDegreeHueConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToDegreeHueConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Degree Hue, and it look like this: \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToDegreeHueConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToDegreeHueConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToDegreeHueConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Gray Scale Color Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToGrayScaleColorConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToGrayScaleColorConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into this string \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToGrayScaleColorConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToGrayScaleColorConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToGrayScaleColorConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Hex Rgb String Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToHexRgbStringConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToHexRgbStringConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColorNotIncludeAlpha}\" />\n                                        <Span Text=\" into Hex Code \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColorNotIncludeAlpha, Converter={x:StaticResource ColorToHexRgbStringConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This Converter can show the Alpha if the value it converts has Alpha\" TextColor=\"OrangeRed\" />\n                            <Label Text=\"This Example has the same setup but take a color source has Alpha\" />\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Hex Code \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToHexRgbStringConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorNoAlphaConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToHexRgbStringConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToHexRgbStringConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Hex Rgba String Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToHexRgbaStringConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToHexRgbaStringConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Hex Code with Alpha \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToHexRgbaStringConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToHexRgbaStringConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToHexRgbaStringConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Hsl String Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToHslStringConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToHslStringConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Hsl \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToHslStringConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToHslStringConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToHslStringConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Hsla String Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToHslaStringConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToHslaStringConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Hsl with Alpha\" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToHslaStringConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToHslaStringConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToHslaStringConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Inverse Color Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToInverseColorConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToInverseColorConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Hsl with Alpha \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToInverseColorConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToInverseColorConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToInverseColorConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Percent Black Key Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToPercentBlackKeyConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToPercentBlackKeyConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Percent Black Key \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToPercentBlackKeyConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToPercentBlackKeyConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToPercentBlackKeyConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Percent Cyan Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToPercentCyanConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToPercentCyanConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Percent Cyan \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToPercentCyanConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToPercentCyanConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToPercentCyanConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Percent Magenta Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToPercentMagentaConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToPercentMagentaConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Percent Magenta \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToPercentMagentaConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToPercentMagentaConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToPercentMagentaConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Percent Yellow Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToPercentYellowConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToPercentYellowConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Percent Yellow \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToPercentYellowConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToPercentYellowConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToPercentYellowConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Rgb String Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToRgbStringConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToRgbStringConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Rgb String \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToRgbStringConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToRgbStringConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToRgbStringConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Grid ColumnDefinitions=\"0.8*, 0.2*\">\n                            <Label\n                                Grid.Column=\"0\"\n                                Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                                Text=\"Color To Rgba String Converter\" />\n                            <ImageButton\n                                Grid.Column=\"1\"\n                                Command=\"{x:Binding OpenColorToRgbaStringConverterUrlCommand}\"\n                                HeightRequest=\"50\"\n                                HorizontalOptions=\"End\"\n                                Source=\"microsoft.png\"\n                                WidthRequest=\"50\" />\n                        </Grid>\n                        <CollectionView ItemsSource=\"{x:StaticResource ColorToRgbaStringConverterControlInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <VerticalStackLayout Margin=\"10\" Spacing=\"5\">\n                            <Label VerticalOptions=\"Center\">\n                                <Label.FormattedText>\n                                    <FormattedString>\n                                        <Span Text=\"The converter will turn the color of this \" />\n                                        <Span\n                                            FontAttributes=\"Bold\"\n                                            Text=\"Text Color\"\n                                            TextColor=\"{x:Binding ExampleColor}\" />\n                                        <Span Text=\" into Rgba String \" />\n                                        <Span FontAttributes=\"Bold\" Text=\"{x:Binding ExampleColor, Converter={x:StaticResource ColorToRgbaStringConverter}}\" />\n                                    </FormattedString>\n                                </Label.FormattedText>\n                            </Label>\n                            <Label Text=\"This is ViewModel code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding CSharpColorConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                            <Label Text=\"Here what your converter look like\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToRgbaStringConverterSetup}\" CodeType=\"Xaml\" />\n                            <Label Text=\"This Xaml TextColor code\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding XamlColorToRgbaStringConverterTextTesting}\" CodeType=\"Xaml\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/ColorConverter/ColorConverterPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class ColorConverterPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly ColorConverterPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public ColorConverterPage(ColorConverterPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/CompareConverter/CompareConverterPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.CompareConverterPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Compare Converter\"\n    Padding=\"20\"\n    x:DataType=\"core:CompareConverterPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.Convert(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertBackReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.ConvertBack(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ComparisonOperator</strong> is type of <strong style=\"color:blue\">OperatorType</strong> The type of casing to apply to the string value.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ComparingValue</strong> is type of <strong style=\"color:blue\">IComparable</strong> The value to compare against.  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">FalseObject</strong> is type of <strong style=\"color:blue\">object</strong> The result to return if the comparison results in a false comparison.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">TrueObject</strong> is type of <strong style=\"color:blue\">object</strong> The result to return if the comparison results in a true comparison.  ]]>\n            </x:String>\n        </x:Array>\n\n        <x:String x:Key=\"TextCaseTypeDescription\">\n            The OperatorType enumeration defines the following members :\n        </x:String>\n\n        <x:Array x:Key=\"TextCaseTypeItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">NotEqual</strong>   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Smaller</strong>  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">SmallerOrEqual</strong>   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Equal</strong>  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Greater</strong>   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">GreaterOrEqual</strong>  ]]>\n            </x:String>\n        </x:Array>\n\n        <x:Int32 x:Key=\"ComparingValue1\">30</x:Int32>\n\n        <x:Double x:Key=\"ComparingValue2\">40</x:Double>\n\n        <toolkit:CompareConverter\n            x:Key=\"CompareConverter1\"\n            ComparingValue=\"{x:StaticResource ComparingValue1}\"\n            ComparisonOperator=\"GreaterOrEqual\"\n            FalseObject=\"OrangeRed\"\n            TrueObject=\"LightGreen\" />\n\n        <toolkit:CompareConverter\n            x:Key=\"CompareConverter2\"\n            ComparingValue=\"{x:StaticResource ComparingValue2}\"\n            ComparisonOperator=\"SmallerOrEqual\"\n            FalseObject=\"OrangeRed\"\n            TrueObject=\"LightGreen\" />\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Converter Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"TextCaseType\" />\n                        <Label Text=\"{x:StaticResource TextCaseTypeDescription}\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource TextCaseTypeItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setup Toolkit\" />\n                        <VerticalStackLayout>\n                            <Label Text=\"{x:Binding SetupDescription}\" />\n                            <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleBefore}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Would be modified to include the xmlns as follows:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleAfter}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Compare Converter\" />\n                        <Label Text=\"You can change the input value by this slider\" />\n                        <Slider\n                            Maximum=\"60\"\n                            Minimum=\"0\"\n                            Value=\"{x:Binding SlideValue}\" />\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"Current input value: \" />\n                                    <Span FontAttributes=\"Bold\" Text=\"{x:Binding SlideValue}\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <Label\n                            BackgroundColor=\"{x:Binding TestValue1,\n                                                        Converter={StaticResource CompareConverter1}}\"\n                            FontAttributes=\"Bold\"\n                            FontSize=\"14\"\n                            HorizontalOptions=\"CenterAndExpand\"\n                            Text=\"The background of this label will be green if the value entered is higher than 30, and red otherwise.\"\n                            VerticalOptions=\"Center\" />\n                        <Label\n                            BackgroundColor=\"{x:Binding TestValue2,\n                                                        Converter={StaticResource CompareConverter2}}\"\n                            FontAttributes=\"Bold\"\n                            FontSize=\"14\"\n                            HorizontalOptions=\"CenterAndExpand\"\n                            Text=\"The background of this label will be green if the value entered is less than 40, and red otherwise.\"\n                            VerticalOptions=\"Center\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"This is ViewModel code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpxamlConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Here what your converter look like\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterSetup}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterTesting}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/CompareConverter/CompareConverterPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class CompareConverterPage : IGalleryPage\n{\n\n    #region [ Fields ]\n\n    private readonly CompareConverterPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public CompareConverterPage(CompareConverterPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/DateTimeOffsetConverter/DateTimeOffsetConverterPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.DateTimeOffsetConverterPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Date Time Offset Converter\"\n    Padding=\"20\"\n    x:DataType=\"core:DateTimeOffsetConverterPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.Convert(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertBackReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.ConvertBack(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.  ]]>\n            </x:String>\n        </x:Array>\n\n        <toolkit:DateTimeOffsetConverter x:Key=\"DateTimeOffsetConverter\" />\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Converter Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setup Toolkit\" />\n                        <VerticalStackLayout>\n                            <Label Text=\"{x:Binding SetupDescription}\" />\n                            <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleBefore}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Would be modified to include the xmlns as follows:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleAfter}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Date Time Offset Converter\" />\n                        <Label\n                            FontAttributes=\"Bold\"\n                            HorizontalOptions=\"Center\"\n                            Text=\"The DatePicker below is bound to a Property of type DateTimeOffset.\" />\n                        <DatePicker Date=\"{x:Binding DateTimeOffset, Converter={StaticResource DateTimeOffsetConverter}}\" HorizontalOptions=\"Center\" />\n                        <Label\n                            FontAttributes=\"Bold\"\n                            HorizontalOptions=\"Center\"\n                            Text=\"{x:Binding DateTimeOffset}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"This is ViewModel code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpxamlConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Here what your converter look like\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterSetup}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterTesting}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/DateTimeOffsetConverter/DateTimeOffsetConverterPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class DateTimeOffsetConverterPage : IGalleryPage\n{\n\n    #region [ Fields ]\n\n    private readonly DateTimeOffsetConverterPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public DateTimeOffsetConverterPage(DateTimeOffsetConverterPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/DoubleToIntConverter/DoubleToIntConverterPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.DoubleToIntConverterPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Double To Int Converter\"\n    Padding=\"20\"\n    x:DataType=\"core:DoubleToIntConverterPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.Convert(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertBackReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.ConvertBack(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.  ]]>\n            </x:String>\n        </x:Array>\n\n        <toolkit:DoubleToIntConverter x:Key=\"DoubleToIntConverter\" />\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Converter Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setup ToolKit\" />\n                        <VerticalStackLayout>\n                            <Label Text=\"{x:Binding SetupDescription}\" />\n                            <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleBefore}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Would be modified to include the xmlns as follows:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleAfter}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Double To Int Converter\" />\n                        <Label Text=\"Give this Entry a double it will return a integer number in the result below\" />\n                        <Entry\n                            Keyboard=\"Numeric\"\n                            Placeholder=\"Enter a double number\"\n                            Text=\"{x:Binding TestValue}\" />\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"Your result here: \" />\n                                    <Span Text=\"{x:Binding TestValue, Converter={StaticResource DoubleToIntConverter}}\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"This is ViewModel code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpxamlConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Here what your converter look like\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterSetup}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterTesting}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/DoubleToIntConverter/DoubleToIntConverterPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class DoubleToIntConverterPage : IGalleryPage\n{\n\n    #region [ Fields ]\n\n    private readonly DoubleToIntConverterPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public DoubleToIntConverterPage(DoubleToIntConverterPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/EnumToBoolConverter/EnumToBoolConverterPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.EnumToBoolConverterPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Enum To Bool Converter\"\n    Padding=\"20\"\n    x:DataType=\"core:EnumToBoolConverterPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.Convert(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertBackReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.ConvertBack(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.  ]]>\n            </x:String>\n        </x:Array>\n\n        <toolkit:EnumToBoolConverter x:Key=\"EnumToBoolConverter\" />\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Converter Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setup ToolKit\" />\n                        <VerticalStackLayout>\n                            <Label Text=\"{x:Binding SetupDescription}\" />\n                            <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleBefore}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Would be modified to include the xmlns as follows:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleAfter}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Enum To Bool Converter\" />\n                        <Label Text=\"The Label below the picker will appear if you pick a correct Type\" />\n                        <Picker\n                            BackgroundColor=\"#512bd4\"\n                            ItemsSource=\"{x:Binding GalleryCardTypes}\"\n                            SelectedItem=\"{x:Binding SelectedItem}\" />\n                        <Label\n                            IsVisible=\"{x:Binding SelectedItem,\n                                                  Converter={StaticResource EnumToBoolConverter},\n                                                  ConverterParameter={x:Static core:GalleryCardType.Converter}}\"\n                            Text=\"Let Go!\"\n                            TextColor=\"OrangeRed\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"This is ViewModel code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpxamlConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Here what your converter look like\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterSetup}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterTesting}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/EnumToBoolConverter/EnumToBoolConverterPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class EnumToBoolConverterPage : IGalleryPage\n{\n\n    #region [ Fields ]\n\n    private readonly EnumToBoolConverterPageViewModel viewModel;\n    #endregion\n\n    #region [ Ctor ]\n\n\n    public EnumToBoolConverterPage(EnumToBoolConverterPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/EnumToIntConverter/EnumToIntConverterPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.EnumToIntConverterPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Enum To Int Converter\"\n    Padding=\"20\"\n    x:DataType=\"core:EnumToIntConverterPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.Convert(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertBackReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.ConvertBack(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.  ]]>\n            </x:String>\n        </x:Array>\n\n        <toolkit:EnumToIntConverter x:Key=\"EnumToIntConverter\" />\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Converter Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setup ToolKit\" />\n                        <VerticalStackLayout>\n                            <Label Text=\"{x:Binding SetupDescription}\" />\n                            <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleBefore}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Would be modified to include the xmlns as follows:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleAfter}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Enum To Int Converter\" />\n                        <Label Text=\"The EnumToIntConverter is a converter that allows users to convert a standard enum (extending int) to its underlying primitive int type.\" />\n                        <Label Text=\"Selecting a value from the picker will change the enum property(GalleryCardType type in this case) in the ViewModel\" />\n                        <Picker\n                            BackgroundColor=\"#512bd4\"\n                            ItemsSource=\"{x:Binding GalleryCardTypes}\"\n                            SelectedIndex=\"{Binding SelectedItem, Converter={StaticResource EnumToIntConverter}, ConverterParameter={x:Type core:GalleryCardType}}\" />\n                        <Label Text=\"This label binds to the SelectedIndex property of the picker, both use EnumToIntConverter, so no int properties are necessary in ViewModel\" />\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"This is the index of the item that you have chosen:  \" />\n                                    <Span Text=\"{x:Binding SelectedItem, Converter={StaticResource EnumToIntConverter}}\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"This is ViewModel code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpxamlConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Here what your converter look like\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterSetup}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterTesting}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/EnumToIntConverter/EnumToIntConverterPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class EnumToIntConverterPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly EnumToIntConverterPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public EnumToIntConverterPage(EnumToIntConverterPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/ImageResourceConverter/ImageResourceConverterPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ImageResourceConverterPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Image Resource Converter\"\n    Padding=\"20\"\n    x:DataType=\"core:ImageResourceConverterPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:Array x:Key=\"PropertiesItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.Convert(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">DefaultConvertBackReturnValue</strong> is type of <strong style=\"color:blue\">object?</strong> default value to return when <strong style=\"color:blue\">IValueConverter.ConvertBack(object?, Type, object?, CultureInfo?)</strong> throws an <strong style=\"color:blue\">Exception</strong>. This value is used when <strong style=\"color:blue\">CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters</strong> is set to true.  ]]>\n            </x:String>\n        </x:Array>\n\n        <toolkit:ImageResourceConverter x:Key=\"ImageResourceConverter\" />\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Converter Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertiesItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setup ToolKit\" />\n                        <VerticalStackLayout>\n                            <Label Text=\"{x:Binding SetupDescription}\" />\n                            <Label Text=\"{x:Binding XamlNamespace}\" TextColor=\"Blue\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"Therefore the following:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleBefore}\" CodeType=\"Xaml\" />\n                        <Label Text=\"Would be modified to include the xmlns as follows:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding FullNamepaceExampleAfter}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Image Resource Converter\" />\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"The Converter need a path like this \" />\n                                    <Span FontAttributes=\"Bold\" Text=\" [YourProjectNameSpace] + [SetOfProjectNestedFolders] + [ImageNamed] \" />\n                                    <Span Text=\" it will not work with .svg \" TextColor=\"OrangeRed\" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <Label>\n                            <Label.FormattedText>\n                                <FormattedString>\n                                    <Span Text=\"It will convert this path \" />\n                                    <Span FontAttributes=\"Bold\" Text=\"{x:Binding ImageResource}\" />\n                                    <Span Text=\" To this image \" />\n                                </FormattedString>\n                            </Label.FormattedText>\n                        </Label>\n                        <Image Source=\"{x:Binding ImageResource, Converter={StaticResource ImageResourceConverter}}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Text=\"This is ViewModel code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CSharpxamlConverterTestingViewModel}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Here what your converter look like\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterSetup}\" CodeType=\"Xaml\" />\n                        <Label Text=\"This Xaml code\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlConverterTesting}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Converters/ImageResourceConverter/ImageResourceConverterPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class ImageResourceConverterPage : IGalleryPage\n{\n\n    #region [ Fields ]\n\n    private readonly ImageResourceConverterPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public ImageResourceConverterPage(ImageResourceConverterPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Helpers/ObservableProperty/ObservablePropertyPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ObservablePropertyPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"ObservableProperty\"\n    Padding=\"20\"\n    x:DataType=\"core:ObservablePropertyPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"PropertiesListFooter\">\n            It will also do so with an optimized implementation, so the end result will be even faster.\n        </x:String>\n\n        <x:Array x:Key=\"ObservableProperty\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ObservableProperty</strong> attribute can be used to annotate a field in a partial type    ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"OnPropertyChange\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">ObservableProperty</strong> will auto generate the method that can handle trigger base on the change of property     ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">On[YourProperty]Changed</strong> (string oldValue, string newValue)  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">On[YourProperty]Changing</strong> (string oldValue, string newValue) ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">On[YourProperty]Changed</strong> (string value)  ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">On[YourProperty]Changing</strong> (string value) ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"NotifyPropertyChangedFor\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   Raise a notification for whenever YourProperty changes. You can do that by using the <strong style=\"color:blue\">NotifyPropertyChangedFor</strong> attribute     ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"NotifyCanExecuteChangedFor\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   Whenever the property changed, the execution state of the command should be invalidated and computed again. In other words, <strong style=\"color:blue\">ICommand.CanExecuteChanged</strong> should be raised again. You can achieve this by using the <strong style=\"color:blue\">NotifyCanExecuteChangedFor</strong> attribute  ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"NotifyDataErrorInfo\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   If the property is declared in a type that inherits from <strong style=\"color:blue\">ObservableValidator</strong>, it is possible to annotate it with any validation attributes and then request the generated setter to trigger validation for that property. This can be achieved with the <strong style=\"color:blue\">NotifyDataErrorInfo</strong> attribute   ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"NotifyPropertyChangedRecipients\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   If the property is declared in a type that inherits from <strong style=\"color:blue\">ObservableRecipient</strong>, it is possible to annotate it with <strong style=\"color:blue\">NotifyPropertyChangedRecipients</strong> property to instruct the generator to insert logic to send a property changed notification for a property change. This will allow registered recipients to respond flexibly to changes.   ]]>\n            </x:String>\n        </x:Array>\n\n        <DataTemplate x:Key=\"ControlInfoCollectionView\" x:DataType=\"core:IGalleryCardInfo\">\n            <Border Margin=\"0,5,0,5\" Padding=\"5\">\n                <Border.StrokeShape>\n                    <RoundRectangle CornerRadius=\"5\" />\n                </Border.StrokeShape>\n                <Grid ColumnDefinitions=\"0.2*, 0.2*, 0.6*\" HeightRequest=\"40\">\n                    <Image\n                        Grid.Column=\"0\"\n                        Source=\"{x:Binding ControlIcon}\"\n                        VerticalOptions=\"Center\" />\n                    <Label\n                        Grid.Column=\"1\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"14\"\n                        LineBreakMode=\"TailTruncation\"\n                        Text=\"{x:Binding ControlName}\"\n                        VerticalTextAlignment=\"Center\" />\n                    <Label\n                        Grid.Column=\"2\"\n                        FontAttributes=\"Italic\"\n                        FontSize=\"12\"\n                        LineBreakMode=\"TailTruncation\"\n                        Text=\"{x:Binding ControlDetail}\"\n                        VerticalTextAlignment=\"Center\" />\n                </Grid>\n            </Border>\n        </DataTemplate>\n    </core:BasePage.Resources>\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"ObservableProperty attribute\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource ObservableProperty}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"This is toolkit format\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitObservableProperty}\" CodeType=\"CSharp\" />\n                        <Label Text=\"And it will generate an observable property like this:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BuildinGenerateObservableProperty}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"On property change\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource OnPropertyChange}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"This is toolkit format\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitCodeSetup}\" CodeType=\"CSharp\" />\n                        <Label Text=\"The generate code equal something like this in build-in:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BuildinCodeSetup}\" CodeType=\"CSharp\" />\n                        <Label Text=\"This is tool kit usage:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitCodeUsage}\" CodeType=\"CSharp\" />\n                        <Label Text=\"And it will equal something like this in build-in:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BuildinCodeUsage}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <ScrollView>\n                        <VerticalStackLayout Spacing=\"20\">\n                            <Label Text=\"This is example for using OnPropertyChange\" />\n                            <SearchBar\n                                x:Name=\"SearchBar\"\n                                Placeholder=\"Search items...\"\n                                Text=\"{x:Binding SearchText}\" />\n                            <CollectionView ItemTemplate=\"{x:StaticResource ControlInfoCollectionView}\" ItemsSource=\"{x:Binding ControlGroupList}\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding SearchingXamlCode}\" CodeType=\"Xaml\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding SearchingCSharpCode}\" CodeType=\"CSharp\" />\n                        </VerticalStackLayout>\n                    </ScrollView>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Notifying dependent properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource NotifyPropertyChangedFor}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"This is toolkit format\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitNotifyingDependentProperties}\" CodeType=\"CSharp\" />\n                        <Label Text=\"This will result in a generated property equivalent to this:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BuildinGenerateNotifyingDependentProperties}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Notifying dependent commands\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource NotifyCanExecuteChangedFor}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"This is toolkit format\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitNotifyingDependentCommands}\" CodeType=\"CSharp\" />\n                        <Label Text=\"This will result in a generated property equivalent to this:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BuildinGenerateNotifyingDependentCommands}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Note that, in order for this to work, the target command has to be some IRelayCommand property.\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Requesting property validation\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource NotifyDataErrorInfo}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"This is toolkit format\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitRequestingPropertyValidation}\" CodeType=\"CSharp\" />\n                        <Label Text=\"And it will generate an observable property like this:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BuildinGenerateRequestingPropertyValidation}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Sending notification messages\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource NotifyPropertyChangedRecipients}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <ScrollView>\n                        <VerticalStackLayout Spacing=\"20\">\n                            <Label Text=\"This is toolkit format\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding ToolkitSendingNotificationMessages}\" CodeType=\"CSharp\" />\n                            <Label Text=\"This will result in the following property being generated:\" />\n                            <core:SourceCodeExpander Code=\"{x:Binding BuildinGenerateSendingNotificationMessages}\" CodeType=\"CSharp\" />\n                        </VerticalStackLayout>\n                    </ScrollView>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Helpers/ObservableProperty/ObservablePropertyPage.xaml.cs",
    "content": "namespace MAUIsland;\npublic partial class ObservablePropertyPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly ObservablePropertyPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public ObservablePropertyPage(ObservablePropertyPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Helpers/RelayCommand/RelayCommandPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.RelayCommandPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"RelayCommand\"\n    Padding=\"20\"\n    x:DataType=\"core:RelayCommandPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n        <x:String x:Key=\"PropertiesListFooter\">\n            It will also do so with an optimized implementation, so the end result will be even faster.\n        </x:String>\n\n        <x:Array x:Key=\"RelayCommand\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">RelayCommand</strong> attribute can be used to annotate a field in a partial type    ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"RelayCommandParameter\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">RelayCommand</strong> attribute supports creating commands for methods with a parameter. In that case, it will automatically change the generated command to be an IRelayCommand instead, accepting a parameter of the same type. ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"AsynchronousCommand\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The <strong style=\"color:blue\">RelayCommand</strong> command also supports wrapping asynchronous methods, via the <strong style=\"color:blue\">IAsyncRelayCommand</strong> and <strong style=\"color:blue\">IAsyncRelayCommand</strong> interfaces. This is handled automatically whenever a method returns a <strong style=\"color:blue\">Task</strong> type.   ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"EnablingAndDisablingCommand\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   It is often useful to be able to disable commands, and to then later on invalidate their state and have them check again whether they can be executed or not. In order to support this, the <strong style=\"color:blue\">RelayCommand</strong> attribute exposes the <strong style=\"color:blue\">CanExecute</strong> property, which can be used to indicate a target property or method to use to evaluate whether a command can be executed   ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"HandlingConcurrentExecution\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   Whenever a command is asynchronous, it can be configured to decide whether to allow concurrent executions or not. When using the  <strong style=\"color:blue\">RelayCommand</strong> attribute, this can be set via the <strong style=\"color:blue\">AllowConcurrentExecutions</strong> property. The default is false, meaning that until an execution is pending, the command will signal its state as being disabled. If it instead is set to true, any number of concurrent invocations can be queued.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   Note that if a command accepts a cancellation token, a token will also be canceled if a concurrent execution is requested. The main difference is that if concurrent executions are allowed, the command will remain enabled and it will start a new requested execution without waiting for the previous one to actually complete.   ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"HandlingAsynchronousException\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Await and rethrow (default)</strong>: when the command awaits the completion of an invocation, any exceptions will naturally be thrown on the same synchronization context. That usually means that exceptions being thrown would just crash the app, which is a behavior consistent with that of synchronous commands (where exceptions being thrown will also crash the app).   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Flow exceptions to task scheduler</strong>: if a command is configured to flow exceptions to the task scheduler, exceptions being thrown will not crash the app, but instead they will both become available through the exposed <strong style=\"color:blue\">IAsyncRelayCommand.ExecutionTask</strong> as well as bubbling up to the <strong style=\"color:blue\">TaskScheduler.UnobservedTaskException</strong>. This enables more advanced scenarios (such as having UI components bind to the task and display different results based on the outcome of the operation), but it is more complex to use correctly.   ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"HandlingAsynchronousExceptionExplanation\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   In the <strong style=\"color:blue\">Await and rethrow</strong> approach, if an exception occurs during the execution of an awaited asynchronous method, that exception is immediately caught and can be handled in the catch block of the calling method.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   In contrast, when you use <strong style=\"color:blue\">FlowExceptionsToTaskScheduler = true</strong>, exceptions are not immediately thrown. Instead, they are captured and propagated to the task scheduler. The task scheduler can then decide how to handle these exceptions, which might involve storing them until the task is awaited or the <strong style=\"color:blue\">Task.Exception</strong> property is accessed.   ]]>\n            </x:String>\n        </x:Array>\n        <x:Array x:Key=\"CancelCommandsForAsynchronousOperation\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   The ability to request a cancel command is an <strong style=\"color:blue\">ICommand</strong> wrapping an async relay command that can be used to request the cancellation of an operation. This command will automatically signal its state to reflect whether or not it can be used at any given time. For instance, if the linked command is not executing, it will report its state as also not being executable.  ]]>\n            </x:String>\n        </x:Array>\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"RelayCommand attribute\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource RelayCommand}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"This is toolkit format\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitRelayCommand}\" CodeType=\"CSharp\" />\n                        <Label Text=\"And it will generate a command like this:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BuildinGenerate}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"RelayCommand with parameter\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource RelayCommandParameter}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"This is toolkit format\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitRelayCommandWithParameter}\" CodeType=\"CSharp\" />\n                        <Label Text=\"And it will generate a command like this:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BuildinGenerateCommandWithParameter}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"RelayCommand with Asynchronous\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource AsynchronousCommand}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"This is toolkit format\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitRelayCommandWithAsynchronous}\" CodeType=\"CSharp\" />\n                        <Label Text=\"And it will generate a command like this:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BuildinGenerateCommandWithAsynchronous}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"RelayCommand with Enabling and Disabling\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource EnablingAndDisablingCommand}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"This is toolkit format\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitRelayCommandWithEnablingDisabling}\" CodeType=\"CSharp\" />\n                        <Label Text=\"And it will generate an observable property like this:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BuildinGenerateCommandWithEnablingDisabling}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"this is how a command can be bound to a property to control its state\" />\n                        <Button\n                            Command=\"{Binding ToolKitWithEnablingDisablingCommand}\"\n                            CommandParameter=\"{Binding ExampleForControlPropertyState2}\"\n                            Text=\"Example Property For Control Property State Command 2\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding Example2BoundPropertyToControlXaml}\" CodeType=\"Xaml\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitControlPropertyState2}\" CodeType=\"CSharp\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitRelayCommandWithEnablingDisabling}\" CodeType=\"CSharp\" />\n                        <Button\n                            Command=\"{Binding ToolKitWithEnablingDisablingCommand}\"\n                            CommandParameter=\"{Binding ExampleForControlPropertyState1}\"\n                            Text=\"Example Property For Control Property State Command 1\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding Example1BoundPropertyToControlXaml}\" CodeType=\"Xaml\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitControlPropertyState1}\" CodeType=\"CSharp\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitRelayCommandWithEnablingDisabling}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Handling concurrent executions\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource HandlingConcurrentExecution}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"This is toolkit format\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitRelayCommandWithAllowConcurrentExecution}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Handling asynchronous exceptions\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource HandlingAsynchronousException}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                        <Label Text=\"Explanation\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource HandlingAsynchronousExceptionExplanation}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"Await and rethrow (default)\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitRelayCommandWithExceptionDefault}\" CodeType=\"CSharp\" />\n                        <Label Text=\"Flow exceptions to task scheduler\" />\n                        <Label Text=\"In this case, the try/catch is not needed, as exceptions will not crash the app anymore. Note that this will also cause other unrelated exceptions to not be rethrown automatically.\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitRelayCommandWithExceptionScheduler}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Cancel commands for asynchronous operations\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource CancelCommandsForAsynchronousOperation}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"20\">\n                        <Label Text=\"This is toolkit format\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding ToolkitRelayCommandWithCancel}\" CodeType=\"CSharp\" />\n                        <Label Text=\"And it will equal to this:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding BuildinEquivalentCommandWithCancel}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Helpers/RelayCommand/RelayCommandPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class RelayCommandPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly RelayCommandPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n    public RelayCommandPage(RelayCommandPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Layouts/DockLayout/DockLayoutPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.DockLayoutPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Dock Layout\"\n    Padding=\"20\"\n    x:DataType=\"core:DockLayoutPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"Important1\">\n            HorizontalSpacing and VerticalSpacing is applied between neighboring views in the DockLayout. For example, HorizontalSpacing is added between Left, None, and Right views, but also between neighboring views in the same DockPosition such as multiple views docked to the Left. VerticalSpacing is rendered between vertically stacked views in Top, None, and Bottom positions.\n        </x:String>\n\n        <x:String x:Key=\"UsingDockLayout\">\n            For Left / Right docking, a WidthRequest should be specified. For Top / Bottom docking, a HeightRequest defines the size of the child view along the docking direction. The orthogonal directions are always calculated implicitly by the DockLayout manager.\n        </x:String>\n\n        <x:String x:Key=\"UsingDockLayoutWithC#\">\n            A DockLayout can be constructed conveniently in C# as shown here:\n        </x:String>\n\n        <x:String x:Key=\"UsingDockLayoutWithC#1\">\n            Note: DockPosition.None is the default and can be omitted.\n        </x:String>\n\n        <x:String x:Key=\"SettingDockPosition\">\n            To set the docking position from C#, use DockLayout.SetDockPosition(IView, DockPosition) to apply the attached DockPosition property.\n        </x:String>\n\n        <x:String x:Key=\"Customizing\">\n            A DockLayout container supports arbitrary Padding as well as several DockLayout-specific properties for customization. An example in XAML with all available options is given here:\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">Padding</strong> property is a <strong style=\"color:blue\">Thickness</strong>, gets or sets the padding around the layout container (inherited from Layout)..   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">HorizontalSpacing</strong> property is a <strong style=\"color:blue\">double</strong>, gets or sets the horizontal spacing between docked views..   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">VerticalSpacing</strong> property is a <strong style=\"color:blue\">double</strong>, gets or sets the vertical spacing between docked views.   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">ShouldExpandLastChild</strong> property is a <strong style=\"color:blue\">Thickness</strong>, if true, the last child is expanded to fill the remaining space (default: true).  ]]>\n            </x:String>\n        </x:Array>\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout>\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertyItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border\n                    Padding=\"10\"\n                    BackgroundColor=\"#004173\"\n                    StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout>\n                        <Label\n                            Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                            Text=\"Important\"\n                            TextColor=\"White\" />\n                        <Label Text=\"{x:StaticResource Important1}\" TextColor=\"White\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Using the DockLayout\" />\n                        <toolkit:DockLayout>\n                            <Button\n                                toolkit:DockLayout.DockPosition=\"Top\"\n                                HeightRequest=\"50\"\n                                Text=\"Top\" />\n                            <Button\n                                toolkit:DockLayout.DockPosition=\"Bottom\"\n                                HeightRequest=\"70\"\n                                Text=\"Bottom\" />\n                            <Button\n                                toolkit:DockLayout.DockPosition=\"Left\"\n                                Text=\"Left\"\n                                WidthRequest=\"80\" />\n                            <Button\n                                toolkit:DockLayout.DockPosition=\"Right\"\n                                Text=\"Right\"\n                                WidthRequest=\"90\" />\n                            <Button Text=\"Center\" />\n                        </toolkit:DockLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlDockLayout}\" CodeType=\"Xaml\" />\n                        <Label Text=\"{x:StaticResource UsingDockLayout}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"C#\" />\n                        <Label Text=\"{x:StaticResource UsingDockLayoutWithC#}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CsharpDockLayout}\" CodeType=\"CSharp\" />\n                        <Label Text=\"{x:StaticResource UsingDockLayoutWithC#1}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Setting the dock position\" />\n                        <Label Text=\"{x:StaticResource SettingDockPosition}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding SettingDockLayoutPosition}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Customizing a DockLayout\" />\n                        <Label Text=\"{x:StaticResource Customizing}\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCustomizeDockLayout}\" CodeType=\"Xaml\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Layouts/DockLayout/DockLayoutPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class DockLayoutPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly DockLayoutPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public DockLayoutPage(DockLayoutPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Layouts/StateContainer/StateContainerPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.StateContainerPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"State Container\"\n    Padding=\"20\"\n    x:DataType=\"core:StateContainerPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"GetStarted\">\n            The StateContainer attached properties enables the user to turn any layout element like a VerticalStackLayout, HorizontalStackLayout, or Grid into a state-aware layout. Each state-aware layout contains a collection of View derived elements. These elements can be used as templates for different states defined by the user. Whenever the CurrentState string property is set to a value that matches the StateKey property of one of the View elements, its contents will be displayed instead of the main content. When CurrentState is set to null or empty string, the main content is displayed.\n        </x:String>\n\n        <x:String x:Key=\"Important1\">\n            When using StateContainer with a Grid, any defined states inside it will automatically span every row and column of the Grid.\n        </x:String>\n\n        <x:String x:Key=\"Using\">\n            Below is an example UI created using XAML. This sample UI is connected to the below ViewModel, StateContainerViewModel.\n        </x:String>\n\n        <x:String x:Key=\"C#\">\n            Below is the same UI as the XAML, above, created using C# Markup. This sample UI is connected to the below ViewModel, StateContainerViewModel.\n        </x:String>\n\n        <x:String x:Key=\"ViewModel\">\n            When using an ICommand to change CurrentState (e.g. when using Button.Command to change states), we recommended using CanStateBeChanged for ICommand.CanExecute(). Below is an MVVM example using the MVVM Community Toolkit:\n        </x:String>\n\n        <x:String x:Key=\"ViewModel1\">\n            By default StateContainer changes state without animation. To add a custom animation you can use the ChangeStateWithAnimation method:\n        </x:String>\n\n        <x:String x:Key=\"Customizing\">\n            A DockLayout container supports arbitrary Padding as well as several DockLayout-specific properties for customization. An example in XAML with all available options is given here:\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">StateViews</strong> the available View elements to be used as state templates.]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CurrentState</strong>, determines which View element with the corresponding StateKey should be displayed. Warning: CurrentState cannot be changed while a state change is in progress   ]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">CanStateChange</strong>, property is a <strong style=\"color:blue\">bool</strong>, when true, the CurrentState property can be changed. When false, cannot be changed because it is currently changing. Warning: If CurrentState is changed when CanStateChanged is false, a StateContainerException is thrown.  ]]>\n            </x:String>\n        </x:Array>\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout>\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Properties\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertyItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border\n                    Padding=\"10\"\n                    BackgroundColor=\"#004173\"\n                    StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout>\n                        <Label\n                            Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                            Text=\"Important\"\n                            TextColor=\"White\" />\n                        <Label Text=\"{x:StaticResource Important1}\" TextColor=\"White\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Using the StateContainer\" />\n                        <Label Text=\"{x:StaticResource Using}\" />\n                        <VerticalStackLayout toolkit:StateContainer.CanStateChange=\"{Binding CanStateChange}\" toolkit:StateContainer.CurrentState=\"{Binding CurrentState}\">\n                            <toolkit:StateContainer.StateViews>\n                                <VerticalStackLayout toolkit:StateView.StateKey=\"Loading\">\n                                    <ActivityIndicator IsRunning=\"True\" />\n                                    <Label Text=\"Loading Content...\" />\n                                </VerticalStackLayout>\n                                <Label toolkit:StateView.StateKey=\"Success\" Text=\"Success!\" />\n                            </toolkit:StateContainer.StateViews>\n                            <Label Text=\"Default Content\" />\n                        </VerticalStackLayout>\n                        <Button Command=\"{Binding ChangeStateCommand}\" Text=\"Change State\" />\n                        <Label Text=\"XAML:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlStateContainerLayout}\" CodeType=\"Xaml\" />\n                        <Label Text=\"View Model:\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CsharpStateContainerLayout}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Layouts/StateContainer/StateContainerPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class StateContainerPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly StateContainerPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public StateContainerPage(StateContainerPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Layouts/UniformLayout/UniformItemsLayoutPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.UniformItemsLayoutPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"Uniform Items Layout\"\n    Padding=\"10\"\n    x:DataType=\"core:UniformItemsLayoutPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"BasePage_Loaded\">\n\n    <core:BasePage.ToolbarItems>\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.GitHubUrl}\"\n            IconImageSource=\"github_logo.png\"\n            Text=\"Source code\" />\n        <ToolbarItem\n            Command=\"{x:Binding OpenUrlCommand}\"\n            CommandParameter=\"{x:Binding ControlInformation.DocumentUrl}\"\n            IconImageSource=\"microsoft.png\"\n            Text=\"Original Document\" />\n    </core:BasePage.ToolbarItems>\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"Customizing\">\n            An UniformItemsLayout allows to limit the maximum number of columns and rows (Looks like these properties are not currectly function, when you change the number of rows or columns please RESIZE THE WINDOW WIDTH to see these properties take effect):\n        </x:String>\n\n        <x:Array x:Key=\"PropertyItemsSource\" Type=\"{x:Type x:String}\">\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">MaxColumns</strong> is a type <strong style=\"color:blue\">int</strong>, gets or sets the maximum number of items in a row.]]>\n            </x:String>\n            <x:String>\n                <![CDATA[   <strong style=\"color:blue\">MaxRows</strong> is a type <strong style=\"color:blue\">int</strong>, gets or sets the maximum number of items in a column.  ]]>\n            </x:String>\n        </x:Array>\n    </core:BasePage.Resources>\n\n\n    <SwipeView>\n        <SwipeView.LeftItems>\n            <SwipeItems Mode=\"Execute\">\n                <SwipeItem\n                    BackgroundColor=\"DarkGray\"\n                    Command=\"{x:Binding BackCommand}\"\n                    IconImageSource=\"{x:StaticResource FluentArrowCircleLeft48Regular}\"\n                    Text=\"Go back\" />\n            </SwipeItems>\n        </SwipeView.LeftItems>\n        <ScrollView>\n            <VerticalStackLayout Spacing=\"20\">\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <Label FontSize=\"Subtitle\" Text=\"{x:Binding ControlInformation.ControlDetail}\" />\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout>\n                        <Label\n                            Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                            Text=\"Properties\"\n                            TextColor=\"White\" />\n                        <CollectionView ItemsSource=\"{x:StaticResource PropertyItemsSource}\" Style=\"{x:StaticResource PropertiesListStyle}\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                            Text=\"Using the UniformItemsLayout\"\n                            TextColor=\"White\" />\n                        <toolkit:UniformItemsLayout>\n                            <BoxView\n                                HeightRequest=\"25\"\n                                WidthRequest=\"25\"\n                                Color=\"Blue\" />\n                            <BoxView\n                                HeightRequest=\"25\"\n                                WidthRequest=\"25\"\n                                Color=\"Yellow\" />\n                            <BoxView\n                                HeightRequest=\"25\"\n                                WidthRequest=\"25\"\n                                Color=\"Red\" />\n                            <BoxView\n                                HeightRequest=\"25\"\n                                WidthRequest=\"25\"\n                                Color=\"Black\" />\n                            <BoxView\n                                HeightRequest=\"25\"\n                                WidthRequest=\"25\"\n                                Color=\"Blue\" />\n                            <BoxView\n                                HeightRequest=\"25\"\n                                WidthRequest=\"25\"\n                                Color=\"Yellow\" />\n                            <BoxView\n                                HeightRequest=\"25\"\n                                WidthRequest=\"25\"\n                                Color=\"Red\" />\n                            <BoxView\n                                HeightRequest=\"25\"\n                                WidthRequest=\"25\"\n                                Color=\"Black\" />\n                        </toolkit:UniformItemsLayout>\n                        <Label Text=\"XAML:\" TextColor=\"White\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlUniformItemsLayout}\" CodeType=\"Xaml\" />\n                        <Label Text=\"C#\" TextColor=\"White\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CsharpUniformItemsLayout}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n\n                <Border Padding=\"20\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout Spacing=\"10\">\n                        <Label\n                            Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                            Text=\"Customizing an UniformItemsLayout\"\n                            TextColor=\"White\" />\n                        <Label Text=\"{x:StaticResource Customizing}\" TextColor=\"White\" />\n                        <HorizontalStackLayout Spacing=\"10\">\n                            <VerticalStackLayout>\n                                <Label Text=\"Number of columns\" TextColor=\"White\" />\n                                <Stepper Minimum=\"1\" Value=\"{x:Binding NoOfColumns, Mode=TwoWay}\" />\n                                <Label Text=\"{x:Binding NoOfColumns}\" TextColor=\"White\" />\n                            </VerticalStackLayout>\n                            <VerticalStackLayout>\n                                <Label Text=\"Number of rows\" TextColor=\"White\" />\n                                <Stepper Minimum=\"1\" Value=\"{x:Binding NoOfRows, Mode=TwoWay}\" />\n                                <Label Text=\"{x:Binding NoOfRows}\" TextColor=\"White\" />\n                            </VerticalStackLayout>\n                        </HorizontalStackLayout>\n                        <toolkit:UniformItemsLayout MaxColumns=\"{x:Binding NoOfColumns, Mode=OneWay}\" MaxRows=\"{x:Binding NoOfRows, Mode=OneWay}\">\n                            <BoxView\n                                HeightRequest=\"25\"\n                                WidthRequest=\"25\"\n                                Color=\"Blue\" />\n                            <BoxView\n                                HeightRequest=\"25\"\n                                WidthRequest=\"25\"\n                                Color=\"Yellow\" />\n                            <BoxView\n                                HeightRequest=\"25\"\n                                WidthRequest=\"25\"\n                                Color=\"Red\" />\n                            <BoxView\n                                HeightRequest=\"25\"\n                                WidthRequest=\"25\"\n                                Color=\"Black\" />\n                        </toolkit:UniformItemsLayout>\n                        <core:SourceCodeExpander Code=\"{x:Binding XamlCustomizingUniformItemsLayout}\" CodeType=\"Xaml\" />\n                        <core:SourceCodeExpander Code=\"{x:Binding CsharpCustomizingUniformItemsLayout}\" CodeType=\"CSharp\" />\n                    </VerticalStackLayout>\n                </Border>\n            </VerticalStackLayout>\n        </ScrollView>\n    </SwipeView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Pages/Toolkit/Layouts/UniformLayout/UniformItemsLayoutPage.xaml.cs",
    "content": "namespace MAUIsland;\n\npublic partial class UniformItemsLayoutPage : IGalleryPage\n{\n    #region [ Fields ]\n\n    private readonly UniformItemsLayoutPageViewModel viewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public UniformItemsLayoutPage(UniformItemsLayoutPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void BasePage_Loaded(object sender, EventArgs e)\n    {\n        if (NewWindowParameter is not null && viewModel.ControlInformation is null)\n        {\n            viewModel.SetControlInformation(NewWindowParameter);\n            viewModel.RefreshCommand.Execute(null);\n        }\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Gallery/Styles/GalleryStyles.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<?xaml-comp compile=\"true\" ?>\n<ResourceDictionary\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\">\n    <FontImageSource\n        x:Key=\"OpenNewWindowIcon\"\n        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n        Glyph=\"{Static core:FluentUIIcon.Ic_fluent_open_24_regular}\"\n        Color=\"{AppThemeBinding Light='#15161e',\n                                Dark='#eaeaea'}\" />\n\n    <FontImageSource\n        x:Key=\"SearchBarSearchIcon\"\n        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n        Glyph=\"{Static core:FluentUIIcon.Ic_fluent_search_48_regular}\"\n        Color=\"#15161e\" />\n\n    <FontImageSource\n        x:Key=\"SearchBarDismissIcon\"\n        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n        Glyph=\"{Static core:FluentUIIcon.Ic_fluent_dismiss_48_regular}\"\n        Color=\"#15161e\" />\n\n    <FontImageSource\n        x:Key=\"InfoIcon\"\n        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n        Glyph=\"{Static core:FluentUIIcon.Ic_fluent_info_24_regular}\"\n        Color=\"{x:AppThemeBinding Dark=White,\n                                  Light=Black}\" />\n\n\n    <FontImageSource\n        x:Key=\"FluentArrowCircleLeft48Regular\"\n        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n        Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_circle_left_48_regular}\"\n        Color=\"White\" />\n\n    <FontImageSource\n        x:Key=\"MicrosoftStoreIcon\"\n        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n        Glyph=\"{Static core:FluentUIIcon.Ic_fluent_store_microsoft_24_regular}\"\n        Color=\"{x:AppThemeBinding Dark=White,\n                                  Light=Black}\" />\n\n    <FontImageSource\n        x:Key=\"ArrowCircleRight24Regular\"\n        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n        Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_arrow_circle_right_24_regular}\"\n        Color=\"{AppThemeBinding Dark=White,\n                                Light=Black}\" />\n\n    <FontImageSource\n        x:Key=\"SaveIcon\"\n        FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n        Glyph=\"{Static core:FluentUIIcon.Ic_fluent_save_28_regular}\"\n        Color=\"{x:AppThemeBinding Dark=White,\n                                  Light=Black}\" />\n\n    <Style x:Key=\"DocumentContentFrameStyle\" TargetType=\"Frame\">\n        <Setter Property=\"HasShadow\" Value=\"True\" />\n        <Setter Property=\"BackgroundColor\" Value=\"{x:AppThemeBinding Dark='#202020', Light='#ffffff'}\" />\n    </Style>\n\n    <Style x:Key=\"DocumentSectionTitleStyle\" TargetType=\"Label\">\n        <Setter Property=\"FontSize\" Value=\"Title\" />\n        <Setter Property=\"FontAttributes\" Value=\"Bold\" />\n        <Setter Property=\"TextDecorations\" Value=\"Underline\" />\n    </Style>\n\n    <Style x:Key=\"ReverseTheme\" TargetType=\"Label\">\n        <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={x:Static core:AppColors.White}, Dark={x:Static core:AppColors.Black}}\" />\n    </Style>\n\n    <DataTemplate x:Key=\"BulletListItemTemplate\" x:DataType=\"x:String\">\n        <Grid ColumnDefinitions=\"10 , *\">\n            <Ellipse\n                Margin=\"0,8,0,0\"\n                Fill=\"{x:AppThemeBinding Dark='#ffffff',\n                                         Light='Black'}\"\n                HeightRequest=\"7\"\n                HorizontalOptions=\"Center\"\n                VerticalOptions=\"Start\"\n                WidthRequest=\"7\" />\n            <Label\n                Grid.Column=\"1\"\n                Margin=\"10,0,0,0\"\n                FontSize=\"Body\"\n                LineBreakMode=\"WordWrap\"\n                Text=\"{x:Binding}\"\n                TextColor=\"{x:AppThemeBinding Dark='#ffffff',\n                                              Light='Black'}\"\n                TextType=\"Html\"\n                VerticalOptions=\"Center\" />\n        </Grid>\n    </DataTemplate>\n\n    <DataTemplate x:Key=\"BulletListHeaderTemplate\" x:DataType=\"x:String\">\n        <Label\n            Margin=\"0,0,0,15\"\n            LineBreakMode=\"WordWrap\"\n            Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n            Text=\"{x:Binding Mode=OneWay}\"\n            TextType=\"Html\" />\n    </DataTemplate>\n\n    <DataTemplate x:Key=\"BulletListFooterTemplate\" x:DataType=\"x:String\">\n        <Label\n            Margin=\"0,10,0,0\"\n            FontSize=\"Subtitle\"\n            LineBreakMode=\"WordWrap\"\n            Text=\"{x:Binding Mode=OneWay}\" />\n    </DataTemplate>\n\n    <Style x:Key=\"PropertiesListStyle\" TargetType=\"CollectionView\">\n        <Setter Property=\"HeaderTemplate\" Value=\"{x:StaticResource BulletListHeaderTemplate}\" />\n        <Setter Property=\"ItemTemplate\" Value=\"{x:StaticResource BulletListItemTemplate}\" />\n        <Setter Property=\"FooterTemplate\" Value=\"{x:StaticResource BulletListFooterTemplate}\" />\n    </Style>\n\n    <Style x:Key=\"MAUIslandBorderStyle\" TargetType=\"Border\">\n        <Setter Property=\"StrokeShape\" Value=\"RoundRectangle 4\" />\n        <Setter Property=\"StrokeThickness\" Value=\"4\" />\n        <Setter Property=\"BackgroundColor\" Value=\"#f8fafd\" />\n        <Setter Property=\"Stroke\">\n            <Setter.Value>\n                <LinearGradientBrush EndPoint=\"0,1\">\n                    <GradientStop Offset=\"0.1\" Color=\"Orange\" />\n                    <GradientStop Offset=\"1.0\" Color=\"Brown\" />\n                </LinearGradientBrush>\n            </Setter.Value>\n        </Setter>\n    </Style>\n\n\n    <x:String x:Key=\"Lorem\">\n        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n    </x:String>\n\n    <LinearGradientBrush x:Key=\"BasicGradientColor\" EndPoint=\"1,0\">\n        <GradientStop Offset=\"0.0\" Color=\"#DCE35B\" />\n        <GradientStop Offset=\"1.0\" Color=\"#45B649\" />\n    </LinearGradientBrush>\n\n</ResourceDictionary>"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/ContentViews/ControlActivityCardContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Home.ControlActivityCardContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:acrylic=\"clr-namespace:Xe.AcrylicView;assembly=Xe.AcrylicView\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:home=\"clr-namespace:MAUIsland.Home\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\">\n\n    <ContentView.Resources>\n\n        <home:NewActivityToStringConverter x:Key=\"NewActivityToStringConverter\" />\n        <core:DateTimeToSimpleDateTimeStringConverter x:Key=\"DateTimeToSimpleDateTimeStringConverter\" />\n\n        <FontImageSource\n            x:Key=\"HomeIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{x:Static core:FluentUIIcon.Ic_fluent_home_20_regular}\"\n            Color=\"White\" />\n\n        <LinearGradientBrush x:Key=\"InnerFrameGradient\" EndPoint=\"1,0\">\n            <GradientStop Offset=\"0.0\" Color=\"#DCE35B\" />\n            <GradientStop Offset=\"1.0\" Color=\"#45B649\" />\n        </LinearGradientBrush>\n\n    </ContentView.Resources>\n\n    <acrylic:AcrylicView\n        Padding=\"0\"\n        CornerRadius=\"5\"\n        EffectStyle=\"Dark\"\n        HeightRequest=\"190\"\n        HorizontalOptions=\"Fill\"\n        VerticalOptions=\"Fill\"\n        WidthRequest=\"550\">\n\n        <Grid\n            Padding=\"15,15,15,15\"\n            ColumnDefinitions=\"300, *\"\n            ColumnSpacing=\"10\">\n            <Border\n                Padding=\"0\"\n                Background=\"{x:StaticResource InnerFrameGradient}\"\n                HorizontalOptions=\"Start\"\n                StrokeShape=\"RoundRectangle 5,5,5,5\">\n                <Grid\n                    Padding=\"20\"\n                    HorizontalOptions=\"Fill\"\n                    WidthRequest=\"300\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        HorizontalOptions=\"Center\"\n                        Text=\"{x:Binding ApplicationNew.AuthorName,\n                                         Source={x:Reference root}}\"\n                        VerticalOptions=\"Start\" />\n                    <ImageButton\n                        Aspect=\"Fill\"\n                        CornerRadius=\"40\"\n                        HeightRequest=\"60\"\n                        HorizontalOptions=\"Start\"\n                        Source=\"{x:Binding ApplicationNew.AuthorImageUrl,\n                                           Source={x:Reference root},\n                                           Mode=OneWay}\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"60\" />\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"18\"\n                        HorizontalOptions=\"Center\"\n                        Text=\"{x:Binding ApplicationNew.Activity,\n                                         Source={x:Reference root},\n                                         Converter={x:StaticResource NewActivityToStringConverter}}\"\n                        VerticalOptions=\"Center\" />\n                    <Image\n                        Aspect=\"AspectFit\"\n                        HeightRequest=\"60\"\n                        HorizontalOptions=\"End\"\n                        Source=\"{x:Binding ApplicationNew.SecondImage,\n                                           Source={x:Reference root},\n                                           Mode=OneWay}\"\n                        VerticalOptions=\"Center\"\n                        WidthRequest=\"60\" />\n                    <Label\n                        HorizontalOptions=\"Center\"\n                        Text=\"{x:Binding ApplicationNew.Date,\n                                         Source={x:Reference root},\n                                         Converter={x:StaticResource DateTimeToSimpleDateTimeStringConverter}}\"\n                        VerticalOptions=\"End\" />\n                </Grid>\n            </Border>\n            <VerticalStackLayout\n                Grid.Column=\"1\"\n                HorizontalOptions=\"Start\"\n                Spacing=\"5\">\n                <Label\n                    FontAttributes=\"Bold\"\n                    FontSize=\"Subtitle\"\n                    HorizontalOptions=\"Start\"\n                    Text=\"{x:Binding ApplicationNew.Title,\n                                     Source={x:Reference root}}\" />\n                <Label\n                    LineBreakMode=\"CharacterWrap\"\n                    MaxLines=\"4\"\n                    MaximumWidthRequest=\"220\"\n                    Text=\"{x:Binding ApplicationNew.NewLog,\n                                     Source={x:Reference root}}\"\n                    ToolTipProperties.Text=\"{x:Binding ApplicationNew.NewLog,\n                                                       Source={x:Reference root}}\" />\n            </VerticalStackLayout>\n            <Button\n                Grid.Column=\"1\"\n                BackgroundColor=\"Black\"\n                Clicked=\"Detail_Clicked\"\n                Text=\"Detail\"\n                TextColor=\"White\"\n                VerticalOptions=\"End\">\n                <Button.Behaviors>\n                    <toolkit:AnimationBehavior>\n                        <toolkit:AnimationBehavior.AnimationType>\n                            <toolkit:FadeAnimation Opacity=\"0.2\" />\n                        </toolkit:AnimationBehavior.AnimationType>\n                    </toolkit:AnimationBehavior>\n                </Button.Behaviors>\n            </Button>\n        </Grid>\n    </acrylic:AcrylicView>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/ContentViews/ControlActivityCardContentView.xaml.cs",
    "content": "namespace MAUIsland.Home;\n\npublic partial class ControlActivityCardContentView : ContentView\n{\n    #region [ CTor ]\n    public ControlActivityCardContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Bindable Properties ]\n    public static readonly BindableProperty ApplicationNewProperty = BindableProperty.Create(\n            nameof(ApplicationNew),\n            typeof(ApplicationNew),\n            typeof(RoundedEntry),\n            default(ApplicationNew)\n    );\n    #endregion\n\n    #region [ Properties ]\n    public ApplicationNew ApplicationNew\n    {\n        get => (ApplicationNew)GetValue(ApplicationNewProperty);\n        set => SetValue(ApplicationNewProperty, value);\n    }\n    #endregion\n\n    private async void Detail_Clicked(object sender, EventArgs e)\n    {\n        var appNavigator = ServiceHelper.GetService<IAppNavigator>();\n        if (ApplicationNew.Arg is null)\n            await appNavigator.NavigateAsync(ApplicationNew.NewsRoute);\n        else\n            await appNavigator.NavigateAsync(ApplicationNew.NewsRoute, args: ApplicationNew.Arg);\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/Converters/NewActivityToStringConverter.cs",
    "content": "﻿namespace MAUIsland.Home;\n\npublic class NewActivityToStringConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        var newActivity = (NewActivity)value;\n        return newActivity switch\n        {\n            NewActivity.Enhancement => \"Enhance\",\n            NewActivity.AddFeature => \"Add\",\n            _ => \"None\"\n        };\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/Enums/ItemType.cs",
    "content": "﻿namespace MAUIsland.Home;\n\npublic enum ItemType\n{\n    Book, Sample, Workshop, Tool, Blazor, UI, Plugin\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/Models/ApplicationNew.cs",
    "content": "﻿namespace MAUIsland.Home;\n\npublic partial class ApplicationNew : BaseModel\n{\n    [ObservableProperty]\n    string title;\n\n    [ObservableProperty]\n    string authorName;\n\n    [ObservableProperty]\n    string newLog;\n\n    [ObservableProperty]\n    string newsRoute;\n\n    [ObservableProperty]\n    object? arg;\n\n    [ObservableProperty]\n    ImageSource authorImageUrl;\n\n    [ObservableProperty]\n    ImageSource secondImage;\n\n    [ObservableProperty]\n    DateTime date;\n\n    [ObservableProperty]\n    NewActivity activity;\n\n}\n\npublic enum NewActivity\n{\n    AddFeature, Enhancement\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/Models/BookItem.cs",
    "content": "﻿namespace MAUIsland.Home;\n\npublic partial class BookItem : Item\n{\n    [ObservableProperty]\n    string coverImage;\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/Models/Item.cs",
    "content": "﻿namespace MAUIsland.Home;\n\npublic partial class Item : BaseModel\n{\n    [ObservableProperty]\n    string name;\n\n    [ObservableProperty]\n    string url;\n\n    [ObservableProperty]\n    string description;\n\n    [ObservableProperty]\n    ItemType type;\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/Models/UIItem.cs",
    "content": "﻿namespace MAUIsland.Home;\n\npublic partial class UIItem : Item\n{\n    [ObservableProperty]\n    int stars;\n\n    [ObservableProperty]\n    DateTime lastCommit;\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/Pages/HomePage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.Home.HomePage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:acrylic=\"clr-namespace:Xe.AcrylicView;assembly=Xe.AcrylicView\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:home=\"clr-namespace:MAUIsland.Home\"\n    xmlns:lvc=\"clr-namespace:LiveChartsCore.SkiaSharpView.Maui;assembly=LiveChartsCore.SkiaSharpView.Maui\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"HomePage\"\n    x:DataType=\"home:HomePageViewModel\"\n    Appearing=\"BasePage_Appearing\"\n    BackgroundColor=\"Transparent\"\n    Shell.NavBarIsVisible=\"False\"\n    SizeChanged=\"BasePage_SizeChanged\">\n\n    <core:BasePage.Resources>\n\n        <x:String x:Key=\"ShowcasesUrl\">\n            https://github.com/Strypper/mauisland/blob/main/showcases/version_2.0/Contribute.md\n        </x:String>\n\n        <DataTemplate x:Key=\"ActivitiesItemTemplate\" x:DataType=\"home:ApplicationNew\">\n            <home:ControlActivityCardContentView ApplicationNew=\"{x:Binding}\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"ActivitiesHeaderTemplate\" x:DataType=\"{x:Type x:String}\">\n            <Grid>\n                <Grid.Resources>\n                    <LinearGradientBrush x:Key=\"ActivitiesHeaderTitleGradient\" EndPoint=\"1,0\">\n                        <GradientStop Offset=\"0.0\" Color=\"#DCE35B\" />\n                        <GradientStop Offset=\"1.0\" Color=\"#45B649\" />\n                    </LinearGradientBrush>\n                </Grid.Resources>\n                <Label\n                    FontAttributes=\"Bold\"\n                    FontSize=\"Title\"\n                    Rotation=\"-90\"\n                    Text=\"{x:Binding}\"\n                    VerticalOptions=\"Center\" />\n            </Grid>\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"Item2Template\" x:DataType=\"home:BookItem\">\n            <VerticalStackLayout Spacing=\"10\" VerticalOptions=\"Center\">\n                <Image\n                    HeightRequest=\"277.5\"\n                    HorizontalOptions=\"Center\"\n                    Source=\"{x:Binding CoverImage,\n                                       Mode=OneWay}\"\n                    VerticalOptions=\"Center\"\n                    WidthRequest=\"221.3\" />\n                <Label\n                    FontAttributes=\"Bold\"\n                    HeightRequest=\"20\"\n                    HorizontalTextAlignment=\"Center\"\n                    LineBreakMode=\"TailTruncation\"\n                    MaxLines=\"2\"\n                    Text=\"{x:Binding Name}\"\n                    TextDecorations=\"Underline\"\n                    ToolTipProperties.Text=\"{x:Binding Name}\"\n                    WidthRequest=\"220\" />\n            </VerticalStackLayout>\n        </DataTemplate>\n\n        <LinearItemsLayout\n            x:Key=\"Item2Layout\"\n            ItemSpacing=\"15\"\n            Orientation=\"Horizontal\" />\n\n        <LinearItemsLayout\n            x:Key=\"ActivitiesLayout\"\n            ItemSpacing=\"10\"\n            Orientation=\"Horizontal\" />\n    </core:BasePage.Resources>\n\n    <!--<Grid ColumnDefinitions=\"1.4*, *\">\n        <Image\n            Grid.ColumnSpan=\"2\"\n            Aspect=\"AspectFill\"\n            HorizontalOptions=\"Fill\"\n            Source=\"maui_homepage_background.jpg\"\n            VerticalOptions=\"Fill\" />\n\n        <Grid\n            Grid.Column=\"1\"\n            HorizontalOptions=\"Fill\"\n            RowDefinitions=\"0.6*, 0.4*\"\n            VerticalOptions=\"Fill\">\n\n        </Grid>\n\n        <Grid\n            Grid.ColumnSpan=\"2\"\n            ColumnDefinitions=\"100,*\"\n            HeightRequest=\"260\"\n            HorizontalOptions=\"End\"\n            VerticalOptions=\"End\">\n            <acrylic:AcrylicView\n                Padding=\"10\"\n                CornerRadius=\"5\"\n                EffectStyle=\"Dark\"\n                HorizontalOptions=\"Fill\"\n                Rotation=\"-90\"\n                VerticalOptions=\"Center\">\n                <Label\n                    FontAttributes=\"Bold\"\n                    FontSize=\"14\"\n                    HorizontalOptions=\"Center\"\n                    HorizontalTextAlignment=\"Center\"\n                    MaxLines=\"2\"\n                    Text=\"APP NEWS\"\n                    VerticalOptions=\"Center\"\n                    VerticalTextAlignment=\"Center\" />\n            </acrylic:AcrylicView>\n            <CollectionView\n                Grid.Column=\"1\"\n                Margin=\"5,5,5,20\"\n                ItemTemplate=\"{x:StaticResource ActivitiesItemTemplate}\"\n                ItemsLayout=\"{x:StaticResource ActivitiesLayout}\"\n                ItemsSource=\"{x:Binding ApplicationNews}\"\n                VerticalOptions=\"End\" />\n        </Grid>\n    </Grid>-->\n\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"5\">\n\n            <!--  Section 1  -->\n            <Grid\n                Padding=\"10\"\n                ColumnDefinitions=\"3*, *, *\"\n                ColumnSpacing=\"10\"\n                HeightRequest=\"500\"\n                RowDefinitions=\"*,*,*\"\n                RowSpacing=\"10\">\n                <Border Grid.RowSpan=\"3\" StrokeShape=\"RoundRectangle 4\">\n                    <Grid>\n                        <ActivityIndicator IsRunning=\"{x:Binding IsGitHubOpenIssuesChartLoading}\" />\n                        <lvc:CartesianChart\n                            Title=\"{x:Binding GitHubOpenIssuesChartTile}\"\n                            HeightRequest=\"450\"\n                            Series=\"{x:Binding GitHubOpenIssuesChart}\"\n                            XAxes=\"{x:Binding GitHubOpenIssuesChartXAxis}\"\n                            YAxes=\"{x:Binding GitHubOpenIssuesChartYAxis}\" />\n                    </Grid>\n                </Border>\n                <Border Grid.Column=\"1\" StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout HorizontalOptions=\"Center\" VerticalOptions=\"Center\">\n                        <Label\n                            FontAttributes=\"Bold\"\n                            FontSize=\"38\"\n                            HorizontalOptions=\"Center\"\n                            Text=\"{x:Binding IssuesListCount}\"\n                            TextDecorations=\"Underline\"\n                            VerticalOptions=\"Center\" />\n                        <Label HorizontalOptions=\"Center\" Text=\"Total Issues\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border\n                    Grid.Row=\"1\"\n                    Grid.Column=\"1\"\n                    StrokeShape=\"RoundRectangle 4\">\n                    <VerticalStackLayout HorizontalOptions=\"Center\" VerticalOptions=\"Center\">\n                        <Border\n                            Padding=\"5\"\n                            BackgroundColor=\"#2980b9\"\n                            StrokeShape=\"RoundRectangle 4\">\n                            <Label\n                                FontAttributes=\"Bold\"\n                                FontSize=\"24\"\n                                HorizontalOptions=\"Center\"\n                                Text=\"{x:Binding ReleaseInfo}\"\n                                VerticalOptions=\"Center\" />\n                        </Border>\n                        <Label HorizontalOptions=\"Center\" Text=\"Latest Stable Release\" />\n                    </VerticalStackLayout>\n                </Border>\n                <Border\n                    Grid.Row=\"2\"\n                    Grid.Column=\"1\"\n                    Padding=\"15\"\n                    BackgroundColor=\"#161c29\"\n                    StrokeShape=\"RoundRectangle 4\">\n                    <Grid>\n                        <Image\n                            HeightRequest=\"45\"\n                            HorizontalOptions=\"End\"\n                            Source=\"tizen_logo.png\"\n                            VerticalOptions=\"Start\"\n                            WidthRequest=\"45\" />\n\n                        <VerticalStackLayout HorizontalOptions=\"Start\" VerticalOptions=\"End\">\n                            <Label\n                                FontAttributes=\"Bold\"\n                                FontSize=\"48\"\n                                HorizontalOptions=\"Start\"\n                                Text=\"{x:Binding TizenIssuesCount}\"\n                                TextColor=\"#00b5f2\"\n                                VerticalOptions=\"Center\" />\n                            <Label\n                                HorizontalOptions=\"Center\"\n                                Text=\"Open Issues\"\n                                TextColor=\"#00b5f2\" />\n                        </VerticalStackLayout>\n                    </Grid>\n                </Border>\n                <Border\n                    Grid.Row=\"0\"\n                    Grid.Column=\"2\"\n                    Padding=\"15\"\n                    BackgroundColor=\"#351a1a\"\n                    StrokeShape=\"RoundRectangle 4\">\n                    <Grid>\n                        <Image\n                            HeightRequest=\"45\"\n                            HorizontalOptions=\"End\"\n                            Source=\"ios_logo.png\"\n                            VerticalOptions=\"Start\"\n                            WidthRequest=\"45\" />\n\n                        <VerticalStackLayout HorizontalOptions=\"Start\" VerticalOptions=\"End\">\n                            <Label\n                                FontAttributes=\"Bold\"\n                                FontSize=\"48\"\n                                HorizontalOptions=\"Start\"\n                                Text=\"{x:Binding IosIssuesCount}\"\n                                TextColor=\"#fb4f4f\"\n                                VerticalOptions=\"Center\" />\n                            <Label\n                                HorizontalOptions=\"Center\"\n                                Text=\"Open Issues\"\n                                TextColor=\"#fb4f4f\" />\n                        </VerticalStackLayout>\n                    </Grid>\n                </Border>\n                <Border\n                    Grid.Row=\"1\"\n                    Grid.Column=\"2\"\n                    Padding=\"15\"\n                    BackgroundColor=\"#1f424d\"\n                    StrokeShape=\"RoundRectangle 4\">\n                    <Grid>\n                        <Image\n                            HeightRequest=\"45\"\n                            HorizontalOptions=\"End\"\n                            Source=\"android_logo.png\"\n                            VerticalOptions=\"Start\"\n                            WidthRequest=\"45\" />\n\n                        <VerticalStackLayout HorizontalOptions=\"Start\" VerticalOptions=\"End\">\n                            <Label\n                                FontAttributes=\"Bold\"\n                                FontSize=\"48\"\n                                HorizontalOptions=\"Start\"\n                                Text=\"{x:Binding AndroidIssuesCount}\"\n                                TextColor=\"#1ed75f\"\n                                VerticalOptions=\"Center\" />\n                            <Label\n                                HorizontalOptions=\"Start\"\n                                Text=\"Open Issues\"\n                                TextColor=\"#1ed75f\" />\n                        </VerticalStackLayout>\n                    </Grid>\n                </Border>\n                <Border\n                    Grid.Row=\"2\"\n                    Grid.Column=\"2\"\n                    Padding=\"15\"\n                    BackgroundColor=\"#d6dbfa\"\n                    StrokeShape=\"RoundRectangle 4\">\n                    <Grid>\n                        <Image\n                            HeightRequest=\"45\"\n                            HorizontalOptions=\"End\"\n                            Source=\"windowslogo.png\"\n                            VerticalOptions=\"Start\"\n                            WidthRequest=\"45\" />\n\n                        <VerticalStackLayout HorizontalOptions=\"Start\" VerticalOptions=\"End\">\n                            <Label\n                                FontAttributes=\"Bold\"\n                                FontSize=\"48\"\n                                HorizontalOptions=\"Start\"\n                                Text=\"{x:Binding WindowsIssueCount}\"\n                                TextColor=\"#0981d8\"\n                                VerticalOptions=\"Center\" />\n                            <Label\n                                HorizontalOptions=\"Center\"\n                                Text=\"Open Issues\"\n                                TextColor=\"#0981d8\" />\n                        </VerticalStackLayout>\n                    </Grid>\n                </Border>\n            </Grid>\n\n            <!--  Section 2  -->\n            <Border\n                Margin=\"10,0,0,0\"\n                HeightRequest=\"400\"\n                HorizontalOptions=\"Fill\"\n                StrokeShape=\"RoundRectangle 250,0,250,0\">\n                <Border.Background>\n                    <LinearGradientBrush EndPoint=\"1,1\">\n                        <GradientStopCollection>\n                            <GradientStop Offset=\"0\" Color=\"#5286ea\" />\n                            <GradientStop Offset=\"1\" Color=\"Transparent\" />\n                        </GradientStopCollection>\n                    </LinearGradientBrush>\n                </Border.Background>\n                <Grid ColumnDefinitions=\"200, *\">\n                    <Label\n                        FontAttributes=\"Bold\"\n                        FontSize=\"Header\"\n                        HorizontalOptions=\"Center\"\n                        Rotation=\"-90\"\n                        Text=\"{x:Binding SectionTitle1}\"\n                        VerticalOptions=\"Center\" />\n                    <CollectionView\n                        Grid.Column=\"1\"\n                        HeightRequest=\"360\"\n                        HorizontalOptions=\"End\"\n                        ItemTemplate=\"{x:StaticResource Item2Template}\"\n                        ItemsLayout=\"{x:StaticResource Item2Layout}\"\n                        ItemsSource=\"{x:Binding Items2}\"\n                        SelectedItem=\"{x:Binding SelectedItem2,\n                                                 Mode=TwoWay}\"\n                        SelectionChangedCommand=\"{x:Binding OpenUrlCommand}\"\n                        SelectionChangedCommandParameter=\"{x:Binding SelectedItem2.Url}\"\n                        SelectionMode=\"Single\"\n                        VerticalOptions=\"Center\" />\n                </Grid>\n            </Border>\n\n            <!--  Section 3  -->\n            <Border\n                Margin=\"10\"\n                Padding=\"10\"\n                StrokeShape=\"RoundRectangle 10\">\n                <Border.Background>\n                    <LinearGradientBrush EndPoint=\"1,1\">\n                        <GradientStopCollection>\n                            <GradientStop Offset=\"0\" Color=\"Transparent\" />\n                            <GradientStop Offset=\"1\" Color=\"#ecbf74\" />\n                        </GradientStopCollection>\n                    </LinearGradientBrush>\n                </Border.Background>\n\n                <VerticalStackLayout Spacing=\"10\">\n                    <Label\n                        HorizontalOptions=\"Center\"\n                        Style=\"{x:StaticResource DocumentSectionTitleStyle}\"\n                        Text=\"{x:Binding Section3Title}\" />\n                    <Label\n                        HorizontalOptions=\"Center\"\n                        HorizontalTextAlignment=\"Center\"\n                        MaximumWidthRequest=\"800\"\n                        Text=\"{x:Binding Section3Description}\" />\n                    <HorizontalStackLayout HorizontalOptions=\"Center\" Spacing=\"5\">\n                        <Button\n                            Command=\"{x:Binding OpenUrlCommand}\"\n                            CommandParameter=\"{x:StaticResource ShowcasesUrl}\"\n                            HorizontalOptions=\"Center\"\n                            Text=\"Contribute\"\n                            TextColor=\"Black\" />\n                        <Button\n                            BackgroundColor=\"#e0b56f\"\n                            Text=\"Submit\"\n                            TextColor=\"Black\" />\n                    </HorizontalStackLayout>\n                    <HorizontalStackLayout HorizontalOptions=\"Center\">\n                        <!--<core:Iphone15ContentView ItemsSource=\"{x:Binding MauiPlanet}\" />\n                        <core:Iphone15ContentView ItemsSource=\"{x:Binding ChickAndPaddy}\" />-->\n                        <core:SamsungS8ContentView ComponentData=\"{x:Binding CallingApp}\" />\n                        <core:SamsungS8ContentView ComponentData=\"{x:Binding GadgetsStoreApp}\" />\n                        <core:SamsungS8ContentView ComponentData=\"{x:Binding FourSeasonsApp}\" />\n                    </HorizontalStackLayout>\n                </VerticalStackLayout>\n            </Border>\n\n            <!--  Section 4  -->\n            <Border\n                Margin=\"0,0,10,0\"\n                HeightRequest=\"380\"\n                HorizontalOptions=\"Fill\"\n                StrokeShape=\"RoundRectangle 0, 250, 0, 250\">\n                <Border.Background>\n                    <LinearGradientBrush EndPoint=\"1,1\">\n                        <GradientStopCollection>\n                            <GradientStop Offset=\"0\" Color=\"Transparent\" />\n                            <GradientStop Offset=\"1\" Color=\"#cade59\" />\n                        </GradientStopCollection>\n                    </LinearGradientBrush>\n                </Border.Background>\n                <Grid ColumnDefinitions=\"*, 200\">\n                    <VerticalStackLayout VerticalOptions=\"Center\">\n                        <HorizontalStackLayout>\n                            <Image\n                                HeightRequest=\"140\"\n                                HorizontalOptions=\"Center\"\n                                Source=\"mauisland_logo.png\"\n                                WidthRequest=\"140\" />\n                            <VerticalStackLayout Spacing=\"10\" VerticalOptions=\"Center\">\n                                <Label\n                                    FontAttributes=\"Bold\"\n                                    FontSize=\"Title\"\n                                    Text=\"MAUIsland\" />\n                                <acrylic:AcrylicView\n                                    Padding=\"10\"\n                                    EffectStyle=\"Dark\"\n                                    VerticalOptions=\"Center\"\n                                    WidthRequest=\"160\">\n                                    <acrylic:AcrylicView.GestureRecognizers>\n                                        <TapGestureRecognizer Command=\"{x:Binding OpenUrlCommand}\" CommandParameter=\"{x:Binding ProjectRepo}\" />\n                                    </acrylic:AcrylicView.GestureRecognizers>\n                                    <acrylic:AcrylicView.Behaviors>\n                                        <toolkit:AnimationBehavior>\n                                            <toolkit:AnimationBehavior.AnimationType>\n                                                <toolkit:FadeAnimation Opacity=\"0.2\" />\n                                            </toolkit:AnimationBehavior.AnimationType>\n                                        </toolkit:AnimationBehavior>\n                                    </acrylic:AcrylicView.Behaviors>\n                                    <HorizontalStackLayout\n                                        HorizontalOptions=\"Center\"\n                                        Spacing=\"10\"\n                                        VerticalOptions=\"Center\">\n                                        <Image\n                                            HeightRequest=\"20\"\n                                            Source=\"github_logo.png\"\n                                            WidthRequest=\"20\" />\n                                        <Label\n                                            HorizontalOptions=\"Center\"\n                                            HorizontalTextAlignment=\"Center\"\n                                            Text=\"Source code\"\n                                            VerticalOptions=\"Center\"\n                                            VerticalTextAlignment=\"Center\" />\n                                    </HorizontalStackLayout>\n                                </acrylic:AcrylicView>\n                            </VerticalStackLayout>\n                        </HorizontalStackLayout>\n                        <CollectionView\n                            FlowDirection=\"RightToLeft\"\n                            HeightRequest=\"200\"\n                            HorizontalOptions=\"End\"\n                            ItemTemplate=\"{x:StaticResource ActivitiesItemTemplate}\"\n                            ItemsLayout=\"{x:StaticResource ActivitiesLayout}\"\n                            ItemsSource=\"{x:Binding ApplicationNews}\"\n                            VerticalOptions=\"Center\" />\n                    </VerticalStackLayout>\n                    <Label\n                        Grid.Column=\"1\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"24\"\n                        HorizontalOptions=\"Center\"\n                        HorizontalTextAlignment=\"Center\"\n                        Rotation=\"90\"\n                        Text=\"Application News\"\n                        VerticalOptions=\"Center\" />\n                </Grid>\n            </Border>\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/Pages/HomePage.xaml.cs",
    "content": "namespace MAUIsland.Home;\npublic partial class HomePage\n{\n    public HomePage(HomePageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n    }\n\n    private void ResizeWindows()\n    {\n\n        if (Window is not null)\n        {\n            Window.Width = 1075.199951171875;\n            Window.Height = 656.7999877929688;\n        }\n    }\n\n    private void BasePage_SizeChanged(object sender, EventArgs e)\n    {\n    }\n\n    private void BasePage_Appearing(object sender, EventArgs e)\n    {\n        ResizeWindows();\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/Pages/HomePageViewModel.cs",
    "content": "﻿using System.Text.Json;\nusing LiveChartsCore;\nusing LiveChartsCore.SkiaSharpView;\nusing LiveChartsCore.SkiaSharpView.Painting;\nusing LiveChartsCore.SkiaSharpView.VisualElements;\nusing MAUIsland.Features.LocalDbFeatures.GitHub;\nusing MAUIsland.GitHubFeatures;\nusing SkiaSharp;\n\nnamespace MAUIsland.Home;\npublic partial class HomePageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ Fields ]\n    private readonly IHomeService homeService;\n    private readonly IGitHubService gitHubService;\n    private readonly IConversationService conversationService;\n    private readonly IGitHubIssueLocalDbService gitHubIssueLocalDbService;\n    #endregion\n\n    #region [ Const ]\n    private const string _homePageName = \"mauisland-homepage\";\n    #endregion\n\n    #region [ CTor ]\n\n    public HomePageViewModel(\n        IAppNavigator appNavigator,\n        IHomeService homeService,\n        IGitHubService gitHubService,\n        IConversationService conversationService,\n        IGitHubIssueLocalDbService gitHubIssueLocalDbService \n    ) : base(appNavigator)\n    {\n        this.homeService = homeService;\n        this.gitHubService = gitHubService;\n        this.conversationService = conversationService;\n        this.gitHubIssueLocalDbService = gitHubIssueLocalDbService;\n    }\n    #endregion\n\n    #region [ Properties ]\n    [ObservableProperty]\n    string projectRepo = \"https://github.com/Strypper/mauisland\";\n\n    [ObservableProperty]\n    BaseMockup mauiPlanet = new Iphone15Model()\n    {\n        Mockups = new()\n        {\n            \"maui_planets_001.png\",\n            \"maui_planets_002.png\",\n            \"maui_planets_003.png\"\n        }\n    };\n\n    [ObservableProperty]\n    BaseMockup gadgetsStoreApp = new SamsungS8Model()\n    {\n        Mockups = new()\n        {\n            \"gadgets_store_app_1.gif\",\n            \"gadgets_store_app_2.gif\",\n            \"gadgets_store_app_3.gif\"\n        }\n    };\n\n    [ObservableProperty]\n    BaseMockup callingApp = new SamsungS8Model()\n    {\n        Mockups = new()\n        {\n            \"calling_app_1.gif\"\n        }\n    };\n\n    [ObservableProperty]\n    BaseMockup fourSeasonsApp = new SamsungS8Model()\n    {\n        Mockups = new()\n        {\n            \"four_seasons_1.gif\"\n        }\n    };\n\n    [ObservableProperty]\n    BaseMockup chickAndPaddy = new Iphone15Model()\n    {\n        Mockups = new()\n        {\n            \"chick_and_paddy_1.png\",\n            \"chick_and_paddy_2.png\",\n            \"chick_and_paddy_3.png\",\n            \"chick_and_paddy_4.png\",\n        }\n    };\n\n    [ObservableProperty]\n    bool isBusy;\n\n    [ObservableProperty]\n    string sectionTitle1 = \"Books\";\n\n    [ObservableProperty]\n    List<Item> items = new();\n\n    [ObservableProperty]\n    bool isGitHubOpenIssuesChartLoading = false;\n\n    [ObservableProperty]\n    ISeries[] gitHubOpenIssuesChart = default!;\n\n    [ObservableProperty]\n    LabelVisual gitHubOpenIssuesChartTile =\n    new LabelVisual\n    {\n        Text = \".NET MAUI Open Issues Last 7 Days\",\n        TextSize = 25,\n        Padding = new LiveChartsCore.Drawing.Padding(15),\n        Paint = new SolidColorPaint(SKColors.White)\n    };\n\n    [ObservableProperty]\n    List<Axis> gitHubOpenIssuesChartXAxis = default!;\n\n    [ObservableProperty]\n    List<Axis> gitHubOpenIssuesChartYAxis = default!;\n\n    [ObservableProperty]\n    int issuesListCount;\n\n    [ObservableProperty]\n    string releaseInfo;\n\n    [ObservableProperty]\n    int closedIssuesListCount;\n\n    [ObservableProperty]\n    int androidIssuesCount;\n\n    [ObservableProperty]\n    int iosIssuesCount;\n\n    [ObservableProperty]\n    int windowsIssueCount;\n\n    [ObservableProperty]\n    int tizenIssuesCount;\n\n    [ObservableProperty]\n    List<BookItem> items2 = new();\n\n    [ObservableProperty]\n    BookItem selectedItem2 = default!;\n\n    [ObservableProperty]\n    List<Item> items3 = new();\n\n    [ObservableProperty]\n    List<Item> items6 = new();\n\n    [ObservableProperty]\n    string section3Title = \"Explore with creative possibilities\";\n\n    [ObservableProperty]\n    string section3Description = \"We are excited to introduce the new ‘Showcases’ feature, which enables developers to display their most impressive .NET MAUI designs. You can now present screenshots within our application’s built-in frame mockup. Below is an example:\";\n\n    [ObservableProperty]\n    ObservableCollection<ApplicationNew> applicationNews;\n    #endregion\n\n    #region [ Methods ]\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        LoadDataAsync(true)\n            .FireAndForget();\n        LoadBooks()\n            .FireAndForget();\n        LoadDotNetMauiRepoInfoAsync()\n            .FireAndForget();\n    }\n\n    private async Task LoadDataAsync(bool forced)\n    {\n        if (IsBusy) return;\n        IsBusy = true;\n\n        var news = await homeService.GetApplicationNews();\n\n        if (ApplicationNews == null)\n        {\n            ApplicationNews = new ObservableCollection<ApplicationNew>(news);\n            return;\n        }\n\n        if (forced)\n            ApplicationNews.Clear();\n\n        foreach (var item in news)\n            ApplicationNews.Add(item);\n\n\n        IsBusy = false;\n    }\n    #endregion\n\n    #region [ RelayCommands ]\n\n    [RelayCommand]\n    async Task OpenUrlAsync(string url)\n       => await AppNavigator.OpenUrlAsync(url);\n    \n    [RelayCommand]\n    async Task NavigatePageAsync(string route)\n       => await AppNavigator.NavigateAsync(route);\n    #endregion\n\n    #region [ Methods ]\n    async Task LoadDotNetMauiRepoInfoAsync()\n    {\n        IsGitHubOpenIssuesChartLoading = true;\n\n        //await LoadIssuesAsync(); //??\n\n        string repositoryAuthor = \"dotnet\";\n        string repositoryName = \"maui\";\n\n        var now = DateTime.UtcNow;\n        IEnumerable<GitHubIssueModel> issuesList;\n\n        // First: sync from local db.\n        var allLocalDbIssues = await GetIssueByControlNameFromLocalDb(_homePageName);\n\n        // If localdb version is not null & not outdated => use local version.\n        if (allLocalDbIssues != null && allLocalDbIssues.Any() && !allLocalDbIssues.Any(x => (now - x.LastUpdated).TotalDays > 1)) {\n            issuesList = new List<GitHubIssueModel>(allLocalDbIssues.Select(x => new GitHubIssueModel() { // TODO: need mapping at another place\n                // For now, just need labels, createdAt & isopen\n                CreatedAt = x.CreatedDate,\n                Labels = DeserializeIssueLables(x.Labels).ToList(),\n                IsOpen = x.IsOpen\n            }));\n\n            IsBusy = false;\n        }\n        else {\n            // If localdb does not have issue info, or info outdated => sync from GitHub & save.\n            var result = await gitHubService.GetGitHubIssues(repositoryAuthor, repositoryName);\n\n\n            if (result.IsT0) // Check if result is ServiceSuccess\n            {\n                issuesList = result.AsT0.AttachedData as IEnumerable<GitHubIssueModel>;\n\n                // Save to localdb.\n                foreach (var issue in issuesList) {\n                    await UpdateLocalIssue(issue, _homePageName);\n                }\n\n                IsBusy = false;\n            }\n            else {\n                IsBusy = false;\n\n                var error = result.AsT1;\n                var emptyViewText = error.ErrorDetail;\n                await AppNavigator.ShowSnackbarAsync(error.ErrorDetail,\n                                                     async () => {\n                                                         await AppNavigator.OpenUrlAsync(\"GitHubAPIRateLimit\");\n                                                     },\n                                                     \"Visit GitHub API Rate Limits Policies\");\n\n                return;\n            }\n        }\n\n        // old\n        //var openIssues = await gitHubService.GetGitHubIssues(repositoryAuthor, repositoryName);\n\n        //if (openIssues.IsT1)\n        //    return;\n\n        //var issuesList = openIssues.AsT0.AttachedData as IEnumerable<GitHubIssueModel>; // old\n        // --- end old ---\n\n        var latestRelease = await gitHubService.GetLatestRelease(repositoryAuthor, repositoryName);\n\n        IssuesListCount = issuesList.Count();\n        AndroidIssuesCount = issuesList.Count(issue => issue.Labels.Any(label => label.Name.Equals(\"platform/android 🤖\", StringComparison.OrdinalIgnoreCase)));\n        IosIssuesCount = issuesList.Count(issue => issue.Labels.Any(label => label.Name.Equals(\"platform/iOS 🍎\", StringComparison.OrdinalIgnoreCase)));\n        WindowsIssueCount = issuesList.Count(issue => issue.Labels.Any(label => label.Name.Equals(\"platform/windows 🪟\", StringComparison.OrdinalIgnoreCase)));\n        TizenIssuesCount = issuesList.Count(issue => issue.Labels.Any(label => label.Name.Equals(\"platform/tizen\", StringComparison.OrdinalIgnoreCase))); // TODO: issue.Labels\n\n        IsGitHubOpenIssuesChartLoading = false;\n        if (issuesList == null || !issuesList.Any())\n            return;\n\n        var dates = Enumerable.Range(0, 7)\n                      .Select(i => DateTimeOffset.Now.Date.AddDays(-i))\n                      .Reverse()\n                      .ToList();\n\n        var openIssuesCount = dates.Select(date =>\n        {\n            return issuesList.Count(issue =>\n                issue.IsOpen && issue.CreatedAt.Date == date.Date); // TODO: issue.IsOpen issue.CreatedAt\n        }).ToList();\n\n        GitHubOpenIssuesChart = new[]{\n            new LineSeries<int>\n            {\n                Values = new ObservableCollection<int>(openIssuesCount),\n                Fill = null\n            }\n        };\n\n        GitHubOpenIssuesChartXAxis = new List<Axis>()\n        {\n            new Axis\n            {\n                Name = \"Date\",\n                NamePaint = new SolidColorPaint(SKColors.White),\n                Labels = dates.Select(d => d.ToString(\"MM-dd\")).ToArray(),\n                LabelsPaint = new SolidColorPaint(SKColors.White)\n            }\n        };\n\n        GitHubOpenIssuesChartYAxis = new List<Axis>()\n        {\n            new Axis\n            {\n                Name = \"Open Issues\",\n                NamePaint = new SolidColorPaint(SKColors.White),\n                LabelsPaint = new SolidColorPaint(SKColors.White)\n            }\n        };\n\n        var releaseInfo = latestRelease.AsT0.AttachedData as GitHubRepositoryReleaseModel;\n\n        ReleaseInfo = releaseInfo.Name;\n    }\n\n    async Task LoadIssuesAsync() {\n        string repositoryAuthor = \"dotnet\";\n        string repositoryName = \"maui\";\n\n        var openIssues = await gitHubService.GetGitHubIssues(repositoryAuthor, repositoryName);\n\n        if (openIssues.IsT1)\n            return;\n\n        var latestRelease = await gitHubService.GetLatestRelease(repositoryAuthor, repositoryName);\n\n        var issuesList = openIssues.AsT0.AttachedData as IEnumerable<GitHubIssueModel>;\n\n\n        IssuesListCount = issuesList.Count();\n        AndroidIssuesCount = issuesList.Count(issue => issue.Labels.Any(label => label.Name.Equals(\"platform/android 🤖\", StringComparison.OrdinalIgnoreCase)));\n        IosIssuesCount = issuesList.Count(issue => issue.Labels.Any(label => label.Name.Equals(\"platform/iOS 🍎\", StringComparison.OrdinalIgnoreCase)));\n        WindowsIssueCount = issuesList.Count(issue => issue.Labels.Any(label => label.Name.Equals(\"platform/windows 🪟\", StringComparison.OrdinalIgnoreCase)));\n        TizenIssuesCount = issuesList.Count(issue => issue.Labels.Any(label => label.Name.Equals(\"platform/tizen\", StringComparison.OrdinalIgnoreCase)));\n\n        IsGitHubOpenIssuesChartLoading = false;\n    }\n\n    private async Task UpdateLocalIssue(GitHubIssueModel issue, string controlName) {\n        try {\n            var now = DateTime.UtcNow;\n\n            var localIssue = await gitHubIssueLocalDbService.GetByIssueUrlAsync(issue.HtmlUrl);\n\n            var labels = SerializeIssueLables(issue.Labels);\n\n            if (localIssue is null) {\n                await gitHubIssueLocalDbService.AddAsync(new() {\n                    IssueId = issue.Id,\n                    Title = issue.Title,\n                    IsOpen = issue.IsOpen,\n                    IssueLinkUrl = issue.HtmlUrl,\n                    ControlName = controlName,\n                    MileStone = issue.Milestone?.Title,\n                    OwnerName = issue.User?.Login,\n                    UserAvatarUrl = issue.User?.AvatarUrl,\n                    CreatedDate = issue.CreatedAt.DateTime,\n                    Labels = labels,\n                    LastUpdated = now\n                });\n                return;\n            }\n\n            // Update fields: milestone (TODO: what else?).\n            localIssue.IsOpen = issue.IsOpen;\n            localIssue.MileStone = issue.Milestone?.Title;\n            localIssue.Labels = labels;\n            localIssue.LastUpdated = now;\n\n            await gitHubIssueLocalDbService.UpdateAsync(localIssue);\n        }\n        catch (Exception e) {\n            await AppNavigator.ShowSnackbarAsync(e.Message, null, null);\n        }\n    }\n\n    private async Task<IEnumerable<GitHubIssueLocalDbModel>> GetIssueByControlNameFromLocalDb(string controlName) {\n        try {\n            var now = DateTime.UtcNow;\n\n            var result = await gitHubIssueLocalDbService.GetByControlNameAsync(controlName);\n            return result is not null ?\n                        result :\n                        new List<GitHubIssueLocalDbModel>().AsEnumerable();\n        }\n        catch (Exception e) {\n            await AppNavigator.ShowSnackbarAsync(e.Message, null, null);\n            return new List<GitHubIssueLocalDbModel>().AsEnumerable();\n        }\n    }\n\n    private IEnumerable<GitHubLabelModel> DeserializeIssueLables(string labels) {\n        var deserializedLabels = JsonSerializer.Deserialize<IEnumerable<GitHubLabelModel>>(labels);\n\n        return deserializedLabels;\n    }\n\n    private string SerializeIssueLables(IEnumerable<GitHubLabelModel> labels) {\n        var serializedLabels = JsonSerializer.Serialize(labels);\n\n        return serializedLabels;\n    }\n\n    Task LoadBooks()\n    {\n        Items2.Add(new BookItem\n        {\n            Name = \".NET MAUI in Action\",\n            Url = \"https://www.manning.com/books/dot-net-maui-in-action\",\n            Description = \".NET MAUI in Action shows you how you can use the cutting-edge MAUI framework to write apps that will run on Windows, Android, macOS, and iOS platforms using your existing .NET development skills. This book reveals essential MAUI development techniques through hands-on example applications in every chapter.\",\n            Type = ItemType.Book,\n            CoverImage = \"dotnet_maui_in_action.png\"\n        });\n\n        Items2.Add(new BookItem\n        {\n            Name = \".NET MAUI for C# Developers: Build cross-platform mobile and desktop applications\",\n            Url = \"https://www.amazon.com/NET-MAUI-Developers-cross-platform-applications-ebook/dp/B0BX3R3W9V\",\n            Description = \"The book starts with the fundamentals and quickly moves on to intermediate and advanced topics on laying out your pages, navigating between them, and adding controls to gather and display data. You'll explore the key architectural pattern of Model-View-ViewModel: and ways to leverage it. You'll also use xUnit and NSubstitute to create robust and reliable code.\",\n            Type = ItemType.Book,\n            CoverImage = \"dotnet_developers_cross_platform_applications_ebook.png\"\n        });\n\n        Items2.Add(new BookItem\n        {\n            Name = \"Enterprise Application Patterns using .NET MAUI\",\n            Url = \"https://dotnet.microsoft.com/en-us/download/e-book/maui/pdf\",\n            Description = \"This book is for .NET MAUI developers that are already familiar with the framework, but that are looking for guidance on architecture and implementation when building enterprise applications. This book can help developers solve common problems using tried and true patterns.\",\n            Type = ItemType.Book,\n            CoverImage = \"enterprise_app_patterns_ebook.png\"\n        });\n        return Task.CompletedTask;\n    }\n\n    Task LoadSamples()\n    {\n        Items3.Add(new Item\n        {\n            Name = \"Official .NET MAUI Samples\",\n            Url = \"https://github.com/dotnet/maui-samples\",\n            Description = \"Official .NET MAUI Samples from the .NET MAUI Team!\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"Official Code Samples\",\n            Url = \"https://docs.microsoft.com/samples/browse/?expanded=dotnet&products=dotnet-maui\",\n            Description = \"Official .NET MAUI Code Samples from documentation and across official repos.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \".NET Podcasts\",\n            Url = \"https://github.com/microsoft/dotnet-podcasts/\",\n            Description = \".NET Conf 2021 and Microsoft Build 2022 showcase app.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"AStore App\",\n            Url = \"https://github.com/akv3sic/MAUI-store-app\",\n            Description = \"AStore is a simple e-commerce app built with .NET MAUI. Uses MVVM architecture. UI built with XAML.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"BMI Calculator\",\n            Url = \"https://github.com/naweed/MauiBMICalculator\",\n            Description = \"A simple and gorgeous BMI Calculator built using .NET MAUI and Skia Sharp. Inspired by Dribble design.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"HackerNews\",\n            Url = \"https://github.com/brminnick/HackerNews\",\n            Description = \"A .NET MAUI app for displaying the top posts on Hacker News that demonstrates text sentiment analysis gathered using artificial intelligence.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"Maui Planets\",\n            Url = \"https://github.com/naweed/MauiPlanets\",\n            Description = \"Planets Mobile App UI built using .Net Maui. Implements the Dribbble design.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"Maui Premier League\",\n            Url = \"https://github.com/jameslee214/maui-premierleague\",\n            Description = \".NET Conf 2022 Korea by [.NET Dev](https://forum.dotnetdev.kr/t/maui-premier-league-app/4691) showcase app. CollectionView and simple UI design.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"MauiSamples\",\n            Url = \"https://github.com/VladislavAntonyuk/MauiSamples\",\n            Description = \".NET MAUI samples (.NET MAUI Paint, .NET MAUI Blazor Photo gallery, Kanban board and more).\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"MauiScientificCalculator\",\n            Url = \"https://github.com/naweed/MauiScientificCalculator\",\n            Description = \"A simple scientific calculator built using .NET MAUI.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"Maui Tube Player\",\n            Url = \"https://github.com/naweed/MauiTubePlayer\",\n            Description = \"A REAL and BEAUTIFUL Youtube Clone app built using .Net Maui. Lots of features such as connecting to real Youtube API, Search and Playback functionality, Download Video for Offline Viewing and amazing UI design.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"More .NET MAUI Samples\",\n            Url = \"https://github.com/jsuarezruiz/dotnet-maui-samples\",\n            Description = \".NET MAUI samples.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"MyFinance App\",\n            Url = \"https://github.com/gonultasmf/MyFinance\",\n            Description = \"It is a beautifully designed Finance application for .NET MAUI Markup(No XAML) enthusiasts. Made with FmgLib.MauiMarkup.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"NightClub\",\n            Url = \"https://github.com/Kapusch/blog-dotnet-maui/tree/main/Samples/NightClub\",\n            Description = \"Build a highly colorful music application [step-by-step](https://www.mauicestclair.fr/en/posts/tutos/my-first-app/)! 💃🏾🕺🏻🪩 Uses C# Markup (i.e. no XAML), MVVM & MediaElement.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"Sharing.WebBlazor.MauiHybrid\",\n            Url = \"https://github.com/Hona/Sharing.WebBlazor.MauiHybrid\",\n            Description = \"This repo is demoing how to code share pages, routes, component branding & most importantly authentication flow/authorization rules (with Auth0). For a web portal for browser access and a native iOS/Android mobile app using MAUI Hybrid\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"SOS App\",\n            Url = \"https://github.com/adityaoberai/SOS-MAUI\",\n            Description = \"A cross-platform app that allows the user to send an SOS message with their location to a saved phone number in times of distress. Uses Appwrite, Twilio, and Radar.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"Soferity: Game Portal\",\n            Url = \"https://github.com/Soferity/GamePortal\",\n            Description = \"Soferity: Game Portal is a game hub. It allows you to have a fun and good time with the various Types of games it offers.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"Swashbuckler Diary\",\n            Url = \"https://github.com/Yu-Core/SwashbucklerDiary\",\n            Description = \"An open source cross-platform local diary app using MAUI Blazor.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"V2ex.MAUI\",\n            Url = \"https://github.com/rwecho/V2ex.MAUI\",\n            Description = \"A multi-platform, user-friendly, and feature-rich V2ex native application made by MAUI.\",\n            Type = ItemType.Sample\n        });\n\n        Items3.Add(new Item\n        {\n            Name = \"WeatherTwentyOne\",\n            Url = \"https://github.com/davidortinau/WeatherTwentyOne/\",\n            Description = \"Microsoft Build 2021 showcase app.\",\n            Type = ItemType.Sample\n        });\n\n        return Task.CompletedTask;\n    }\n\n    Task LoadTools()\n    {\n        Items.Add(new Item\n        {\n            Name = \".NET MAUI Check tool\",\n            Url = \"https://github.com/Redth/dotnet-maui-check\",\n            Description = \"NET MAUI Check tool.\",\n            Type = ItemType.Tool\n        });\n\n        Items.Add(new Item\n        {\n            Name = \".NET MAUI UI Testing\",\n            Url = \"https://github.com/Redth/Maui.UITesting\",\n            Description = \"NET MAUI UI Testing tool.\",\n            Type = ItemType.Tool\n        });\n\n        Items.Add(new Item\n        {\n            Name = \"DotNet.Meteor\",\n            Url = \"https://github.com/JaneySprings/DotNet.Meteor\",\n            Description = \".NET Meteor allows you to build, debug .NET 6 / .NET 7 apps and deploy them to devices or emulators.\",\n            Type = ItemType.Tool\n        });\n\n        Items.Add(new Item\n        {\n            Name = \"MAUI App Accelerator\",\n            Url = \"https://github.com/mrlacey/MauiAppAccelerator\",\n            Description = \"A Visual Studio extension to accelerate the creation of new .NET MAUI apps using a wizard-based UI.\",\n            Type = ItemType.Tool\n        });\n\n        Items.Add(new Item\n        {\n            Name = \"MemoryToolkit.Maui\",\n            Url = \"https://github.com/AdamEssenmacher/MemoryToolkit.Maui\",\n            Description = \"A developer toolkit for detecting, diagnosing, and mitigating memory leaks in .NET MAUI applications.\",\n            Type = ItemType.Tool\n        });\n\n        Items.Add(new Item\n        {\n            Name = \"Shiny Templates\",\n            Url = \"https://github.com/shinyorg/templates\",\n            Description = \"A dotnet new template for .NET MAUI that helps wireup over 60 community plugins and libraries.\",\n            Type = ItemType.Tool\n        });\n\n        return Task.CompletedTask;\n    }\n\n    Task LoadBlazors()\n    {\n        Items.Add(new Item\n        {\n            Name = \"Bit Platform\",\n            Url = \"https://github.com/bitfoundation/bitplatform\",\n            Description = \"Ready to use project templates plus UI components focused on Blazor WASM/Hybrid(MAUI) that are extremely fast yet lightweight.\",\n            Type = ItemType.Blazor\n        });\n\n        Items.Add(new Item\n        {\n            Name = \"BlazorBindings.Maui\",\n            Url = \"https://github.com/Dreamescaper/BlazorBindings.Maui\",\n            Description = \"Use Blazor syntax to build native MAUI applications.\",\n            Type = ItemType.Blazor\n        });\n\n        Items.Add(new Item\n        {\n            Name = \"BlazorUI\",\n            Url = \"https://github.com/StoicDreams/BlazorUI\",\n            Description = \"UI Framework and component library for Blazor based Websites and Maui projects.\",\n            Type = ItemType.Blazor\n        });\n\n        Items.Add(new Item\n        {\n            Name = \"Cropper.Blazor\",\n            Url = \"https://github.com/CropperBlazor/Cropper.Blazor\",\n            Description = \"Cropper.Blazor is a component that wraps around Cropper.js for cropping images in Blazor. Support Blazor Server, Blazor WebAssembly, Blazor Server Hybrid with MVC and MAUI Blazor Hybrid.\",\n            Type = ItemType.Blazor\n        });\n\n        Items.Add(new Item\n        {\n            Name = \"MASA.Blazor\",\n            Url = \"https://github.com/BlazorComponent/MASA.Blazor\",\n            Description = \"Blazor component library based on Material Design. Support Blazor Server and Blazor WebAssembly.\",\n            Type = ItemType.Blazor\n        });\n\n        Items.Add(new Item\n        {\n            Name = \"Radzen.Blazor\",\n            Url = \"https://github.com/radzenhq/radzen-blazor\",\n            Description = \"Robust Blazor component library supporting WASM and Server and multiple themes. Also available is a WYSIWYG desktop application (Radzen Blazor Studio) with auto-CRUD builders. Freemium options for additional themes and functionality.\",\n            Type = ItemType.Blazor\n        });\n\n        Items.Add(new Item\n        {\n            Name = \"Taiizor.Essentials.Blazor\",\n            Url = \"https://github.com/Taiizor/Taiizor.Essentials.Blazor\",\n            Description = \"Taiizor.Essentials.Blazor is an essentials library for projects using .NET Blazor. It provides convenience with various functions it offers.\",\n            Type = ItemType.Blazor\n        });\n\n        return Task.CompletedTask;\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/Services/Implementations/IHomeService.cs",
    "content": "﻿namespace MAUIsland.Home;\n\npublic interface IHomeService\n{\n\n    Task<IEnumerable<ApplicationNew>> GetApplicationNews();\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Home/Services/Interfaces/HomeService.cs",
    "content": "﻿namespace MAUIsland.Home;\n\npublic class HomeService : IHomeService\n{\n    #region [ Fields ]\n\n    private readonly IControlsService mauiControlsService;\n    #endregion\n\n    #region [ CTor ]\n\n    public HomeService(IControlsService mauiControlsService)\n    {\n        this.mauiControlsService = mauiControlsService;\n    }\n    #endregion\n\n    #region [ Methods ]\n\n    public async Task<IEnumerable<ApplicationNew>> GetApplicationNews()\n    {\n        return await Task.Run(async () =>\n        {\n            var activites = new List<ApplicationNew>();\n\n            var controlGroups = await mauiControlsService.GetControlGroupsAsync();\n\n            string issuesListNews = \"Every control and layout now comes with an included GitHub Issues List, enabling quick tracking of issues related to the control or layout you are exploring on the official MAUI repository.\";\n\n            string mauiToolkitNews = \"The .NET MAUI Community Toolkit now include 4 new controls, 9 converters and 3 layouts\";\n\n            string repoCachedNews = \"The Community gallery has been cached locally to provide a faster and more responsive experience when browsing controls and layouts. This cache is updated every 1 hours to ensure you have the latest information available.\";\n\n            string materialUINews = \"The Material Component group has been added to MAUIsland with 9 controls to explore\";\n\n            activites.Add(new ApplicationNew()\n            {\n                Title = \"Issues List\",\n                AuthorName = \"Strypper\",\n                AuthorImageUrl = \"https://i.imgur.com/vc9FudE.jpg\",\n                SecondImage = \"dotnet_bot.png\",\n                Activity = NewActivity.AddFeature,\n                NewLog = issuesListNews,\n                Date = new DateTime(2024, 3, 22),\n                NewsRoute = AppRoutes.CardsByGroupPage,\n                Arg = controlGroups.FirstOrDefault(x => x.Name == ControlGroupInfo.BuiltInControls)\n            });\n\n            activites.Add(new ApplicationNew()\n            {\n                Title = \"Community Toolkit\",\n                AuthorName = \"Long\",\n                AuthorImageUrl = \"member_long.png\",\n                SecondImage = \"mauitoolkit_logo.png\",\n                Activity = NewActivity.AddFeature,\n                NewLog = mauiToolkitNews,\n                Date = new DateTime(2024, 2, 01),\n                NewsRoute = AppRoutes.CardsByGroupPage,\n                Arg = controlGroups.FirstOrDefault(x => x.Name == ControlGroupInfo.CommunityToolkit)\n            });\n\n            activites.Add(new ApplicationNew()\n            {\n                Title = \"Repository Cache\",\n                AuthorName = \"Tân\",\n                AuthorImageUrl = \"member_tan.png\",\n                SecondImage = \"github_logo.png\",\n                Activity = NewActivity.AddFeature,\n                Date = new DateTime(2024, 2, 18),\n                NewLog = repoCachedNews,\n                NewsRoute = AppRoutes.CardsByGroupPage,\n                Arg = controlGroups.FirstOrDefault(x => x.Name == ControlGroupInfo.GitHubCommunity)\n            });\n\n            activites.Add(new ApplicationNew()\n            {\n                Title = \"Material Components\",\n                AuthorName = \"Strypper\",\n                AuthorImageUrl = \"https://i.imgur.com/vc9FudE.jpg\",\n                SecondImage = \"materialuilogo.png\",\n                Activity = NewActivity.AddFeature,\n                Date = new DateTime(2023, 11, 10),\n                NewLog = materialUINews,\n                NewsRoute = AppRoutes.CardsByGroupPage,\n                Arg = controlGroups.FirstOrDefault(x => x.Name == ControlGroupInfo.MaterialComponent)\n            });\n\n            return (IEnumerable<ApplicationNew>)activites;\n        });\n    }\n    #endregion\n\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/ContentViews/AddButtonContentView/AddButtonContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Mockup.AddButtonContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:mockup=\"clr-namespace:MAUIsland.Mockup\"\n    x:Name=\"root\"\n    x:DataType=\"mockup:MockupPreviewItemModel\">\n\n    <ContentView.Resources>\n\n        <FontImageSource\n            x:Key=\"AddButtonContentViewAddIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_add_square_24_regular}\"\n            Size=\"100\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n    </ContentView.Resources>\n    <Border\n        Padding=\"16\"\n        HeightRequest=\"400\"\n        MinimumHeightRequest=\"400\"\n        MinimumWidthRequest=\"155\"\n        StrokeShape=\"RoundRectangle 8\"\n        StrokeThickness=\"1\"\n        WidthRequest=\"195\">\n        <Grid>\n            <Grid.GestureRecognizers>\n                <DropGestureRecognizer\n                    AllowDrop=\"True\"\n                    BindingContext=\"{x:Reference root}\"\n                    Drop=\"DropGestureRecognizer_Drop\" />\n            </Grid.GestureRecognizers>\n            <VerticalStackLayout\n                HorizontalOptions=\"Center\"\n                Spacing=\"16\"\n                VerticalOptions=\"Center\">\n                <Image\n                    Margin=\"0,0,8,0\"\n                    HeightRequest=\"80\"\n                    HorizontalOptions=\"Center\"\n                    Source=\"{x:StaticResource AddButtonContentViewAddIcon}\"\n                    VerticalOptions=\"Center\"\n                    WidthRequest=\"80\" />\n                <Label\n                    HorizontalOptions=\"Center\"\n                    HorizontalTextAlignment=\"Center\"\n                    Text=\"Or drag the image here to add\" />\n            </VerticalStackLayout>\n        </Grid>\n    </Border>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/ContentViews/AddButtonContentView/AddButtonContentView.xaml.cs",
    "content": "namespace MAUIsland.Mockup;\n\npublic partial class AddButtonContentView : ContentView\n{\n    #region [ CTors ]\n\n    public AddButtonContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnBindingContextChanged()\n    {\n        base.OnBindingContextChanged();\n        this.BindingContext = (ScreenshotModel)BindingContext;\n    }\n    #endregion\n\n    #region [ Delegates ]\n\n    public delegate void ImageDropEventHandler(Object sender, DropEventArgs e, DroppedImage model);\n    public event ImageDropEventHandler ImageDrop;\n    #endregion\n\n    #region [ Event Handler ]\n\n    private void DropGestureRecognizer_Drop(System.Object sender, Microsoft.Maui.Controls.DropEventArgs e)\n    {\n        if (ImageDrop is null)\n            return;\n\n        if (this.BindingContext is null)\n            return;\n\n        var context = (ScreenshotModel)this.BindingContext;\n\n        DroppedImage eventModel = new()\n        {\n            Id = context.Id,\n            ImageSource = context.ImageSource,\n            CollectionViewId = context.CollectionViewId\n        };\n\n        ImageDrop.Invoke(sender, e, eventModel);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/ContentViews/AddButtonContentView/AddButtonEventModel.cs",
    "content": "﻿namespace MAUIsland.Mockup;\n\n\npublic partial class DroppedImage : BaseModel\n{\n    [ObservableProperty]\n    string id;\n    [ObservableProperty]\n    string imageSource;\n    [ObservableProperty]\n    string collectionViewId;\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/ContentViews/AddButtonContentView/ImageDropEventArgs.cs",
    "content": "﻿namespace MAUIsland.Mockup;\n\n\npublic class ImageDropEventArgs : EventArgs\n{\n    public DroppedImage EventModel { get; set; }\n\n    public ImageDropEventArgs(DroppedImage eventModel)\n    {\n        this.EventModel = eventModel;\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/ContentViews/MockupPreviewItemContentView/ScreenshotItemContentView.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Mockup.ScreenshotItemContentView\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:mockup=\"clr-namespace:MAUIsland.Mockup\"\n    x:DataType=\"mockup:ScreenshotModel\">\n\n    <ContentView.Resources>\n\n        <FontImageSource\n            x:Key=\"ScreenshotItemContentViewDeleteIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_delete_24_regular}\"\n            Size=\"28\"\n            Color=\"#ff0000\" />\n    </ContentView.Resources>\n\n    <Grid>\n        <Image\n            Margin=\"16,30,16,30\"\n            HeightRequest=\"480\"\n            HorizontalOptions=\"Center\"\n            Source=\"{x:Binding ImageSource}\"\n            VerticalOptions=\"Center\"\n            WidthRequest=\"240\" />\n        <ImageButton\n            x:Name=\"DeleteButton\"\n            Margin=\"8,16,0,0\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"#ff0000\"\n            BorderWidth=\"2\"\n            Clicked=\"DeleteButton_Clicked\"\n            CornerRadius=\"15\"\n            HeightRequest=\"30\"\n            HorizontalOptions=\"End\"\n            Source=\"{x:StaticResource ScreenshotItemContentViewDeleteIcon}\"\n            VerticalOptions=\"Start\"\n            WidthRequest=\"30\" />\n    </Grid>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/ContentViews/MockupPreviewItemContentView/ScreenshotItemContentView.xaml.cs",
    "content": "namespace MAUIsland.Mockup;\n\npublic partial class ScreenshotItemContentView : ContentView\n{\n\n    #region [ CTor ]\n\n    public ScreenshotItemContentView()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnBindingContextChanged()\n    {\n        base.OnBindingContextChanged();\n        this.BindingContext = (ScreenshotModel)BindingContext;\n    }\n    #endregion\n\n    #region [ Delegates ]\n\n    public delegate void ScreenShotDeleteEventHandler(ScreenshotModel payload);\n    public event ScreenShotDeleteEventHandler ScreenShotDeleteClicked;\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void DeleteButton_Clicked(System.Object sender, System.EventArgs e)\n    {\n        if (ScreenShotDeleteClicked is null)\n            return;\n\n        var context = (ScreenshotModel)this.BindingContext;\n\n        ScreenShotDeleteClicked.Invoke(context);\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/ContentViews/MockupScreenShotsContentView/DeviceListPageComponent.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Mockup.DeviceListPageComponent\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:mockup=\"clr-namespace:MAUIsland.Mockup\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\"\n    x:DataType=\"mockup:MockupPageViewModel\">\n    <ContentView.Resources>\n\n        <DataTemplate x:Key=\"ScreenshotItemContentView\" x:DataType=\"mockup:ScreenshotModel\">\n            <mockup:ScreenshotItemContentView BindingContext=\"{x:Binding}\" ScreenShotDeleteClicked=\"MockupPreviewItemContentView_ScreenShotDeleteClicked\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"AddButtonContentView\" x:DataType=\"mockup:ScreenshotModel\">\n            <mockup:AddButtonContentView BindingContext=\"{x:Binding}\" ImageDrop=\"AddButton_ImageDropped\" />\n        </DataTemplate>\n\n        <DataTemplate x:Key=\"DeviceItemTemplate\" x:DataType=\"mockup:DeviceItemModel\">\n            <VerticalStackLayout>\n                <CollectionView\n                    ItemTemplate=\"{x:StaticResource ScreenshotDataTemplateSelector}\"\n                    ItemsLayout=\"{x:StaticResource ScreenshotsItemLayout}\"\n                    ItemsSource=\"{x:Binding Screenshots}\"\n                    SelectedItem=\"{Binding Source={x:Reference root}, Path=BindingContext.SelectedScreenshot, Mode=TwoWay}\"\n                    SelectionMode=\"Single\" />\n                <HorizontalStackLayout HorizontalOptions=\"Center\" Spacing=\"16\">\n                    <Button\n                        x:Name=\"RemoveAllMockUpButton\"\n                        BackgroundColor=\"Transparent\"\n                        BorderColor=\"#861b2d\"\n                        BorderWidth=\"4\"\n                        Command=\"{Binding Source={x:Reference root}, Path=BindingContext.RemoveMockupsCommand}\"\n                        CornerRadius=\"4\"\n                        HorizontalOptions=\"Center\"\n                        Text=\"Remove All\"\n                        TextColor=\"#861b2d\" />\n                </HorizontalStackLayout>\n            </VerticalStackLayout>\n        </DataTemplate>\n\n        <mockup:ScreenshotDataTemplateSelector\n            x:Key=\"ScreenshotDataTemplateSelector\"\n            AddButton=\"{x:StaticResource AddButtonContentView}\"\n            Mockup=\"{x:StaticResource ScreenshotItemContentView}\" />\n\n        <LinearItemsLayout\n            x:Key=\"ScreenshotsItemLayout\"\n            ItemSpacing=\"16\"\n            Orientation=\"Horizontal\" />\n\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"16\">\n\n        <CollectionView ItemTemplate=\"{x:StaticResource DeviceItemTemplate}\" ItemsSource=\"{x:Binding DeviceList}\" />\n        <Button\n            x:Name=\"AddDeviceButton\"\n            BackgroundColor=\"Transparent\"\n            BorderColor=\"White\"\n            BorderWidth=\"4\"\n            Command=\"{x:Binding AddDeviceCommand}\"\n            CornerRadius=\"4\"\n            HorizontalOptions=\"Center\"\n            Text=\"Add Device\"\n            TextColor=\"White\" />\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/ContentViews/MockupScreenShotsContentView/DeviceListPageComponent.xaml.cs",
    "content": "using CommunityToolkit.Mvvm.Messaging;\n\nnamespace MAUIsland.Mockup;\n\npublic partial class DeviceListPageComponent : ContentView\n{\n\n    #region [ CTors ]\n    public DeviceListPageComponent()\n    {\n        InitializeComponent();\n    }\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnBindingContextChanged()\n    {\n        base.OnBindingContextChanged();\n        this.BindingContext = (MockupPageViewModel)BindingContext;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private void AddButton_ImageDropped(Object sender, DropEventArgs e, DroppedImage model)\n    {\n        WeakReferenceMessenger.Default.Send(new DropImageMessage(new()\n        {\n            Sender = sender,\n            Args = e,\n            CollectionViewId = model.CollectionViewId\n        }));\n    }\n\n    private void MockupPreviewItemContentView_ScreenShotDeleteClicked(ScreenshotModel payload)\n    {\n        WeakReferenceMessenger.Default.Send(new DeleteScreenShotMessage(payload));\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/ContentViews/ShowcaseInformationContentView/ShowcaseInformationPageComponent.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentView\n    x:Class=\"MAUIsland.Mockup.ShowcaseInformationPageComponent\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\">\n\n    <ContentView.Resources>\n\n        <FontImageSource\n            x:Key=\"ShowcaseInformationPageComponentInfoIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_info_24_regular}\"\n            Color=\"{AppThemeBinding Light='#d3724c',\n                                    Dark='#eaeaea'}\" />\n    </ContentView.Resources>\n\n    <VerticalStackLayout Spacing=\"16\">\n        <Label Text=\"Description\" />\n        <Editor />\n        <HorizontalStackLayout Spacing=\"8\">\n            <Label Text=\".csproj link\" />\n            <ImageButton\n                HeightRequest=\"1\"\n                Source=\"{x:StaticResource ShowcaseInformationPageComponentInfoIcon}\"\n                WidthRequest=\"1\" />\n        </HorizontalStackLayout>\n        <Entry />\n    </VerticalStackLayout>\n</ContentView>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/ContentViews/ShowcaseInformationContentView/ShowcaseInformationPageComponent.xaml.cs",
    "content": "namespace MAUIsland.Mockup;\n\npublic partial class ShowcaseInformationPageComponent : ContentView\n{\n\n    #region [ CTors ]\n\n    public ShowcaseInformationPageComponent()\n    {\n        InitializeComponent();\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/Converters/ListOfMockupPreviewItemModelToListStringConverter.cs",
    "content": "﻿\nnamespace MAUIsland.Mockup;\n\npublic class ListOfMockupPreviewItemModelToListStringConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        var previewImages = value as List<ScreenshotModel>;\n        if (previewImages is null)\n            return new ObservableCollection<string>();\n\n        return new ObservableCollection<string>(previewImages.Select(x => x.ImageSource));\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/Converters/SelectedScreenshotModelToStringConverter.cs",
    "content": "﻿\nnamespace MAUIsland.Mockup;\n\npublic class SelectedScreenshotModelToStringConverter : IValueConverter\n{\n    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        var selectedImage = value as ScreenshotModel;\n        if (selectedImage is null || selectedImage.ImageSource is null)\n            return string.Empty;\n\n        return selectedImage.ImageSource;\n    }\n\n    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)\n    {\n        throw new NotImplementedException();\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/DataTemplateSelectors/ScreenshotDataTemplateSelector.cs",
    "content": "﻿namespace MAUIsland.Mockup;\n\npublic class ScreenshotDataTemplateSelector : DataTemplateSelector\n{\n    #region [ Templates ]\n\n    public DataTemplate Mockup { get; set; }\n    public DataTemplate AddButton { get; set; }\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override DataTemplate OnSelectTemplate(object item, BindableObject container)\n     => ((ScreenshotModel)item).IsAddButton ? AddButton : Mockup;\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/Messages/DeleteScreenShotMessage.cs",
    "content": "﻿using CommunityToolkit.Mvvm.Messaging.Messages;\n\nnamespace MAUIsland.Mockup;\n\npublic class DeleteScreenShotMessage : ValueChangedMessage<ScreenshotModel>\n{\n    public DeleteScreenShotMessage(ScreenshotModel value) : base(value)\n    {\n\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/Messages/DropImageMessage.cs",
    "content": "﻿using CommunityToolkit.Mvvm.Messaging.Messages;\n\nnamespace MAUIsland.Mockup;\n\npublic class DropImageMessage : ValueChangedMessage<DropImageType>\n{\n    public DropImageMessage(DropImageType value) : base(value)\n    {\n    }\n}\n\npublic class DropImageType\n{\n    public string CollectionViewId { get; set; }\n    public Object Sender { get; set; }\n    public DropEventArgs Args { get; set; }\n    public DroppedImage Payload { get; set; }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/Models/DeviceItemModel.cs",
    "content": "﻿namespace MAUIsland.Mockup;\n\npublic partial class DeviceItemModel : BaseModel\n{\n    [ObservableProperty]\n    string deviceModel;\n\n    [ObservableProperty]\n    ObservableCollection<ScreenshotModel> screenshots;\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/Models/ScreenshotModel.cs",
    "content": "﻿namespace MAUIsland.Mockup;\n\npublic partial class ScreenshotModel : BaseModel\n{\n    [ObservableProperty]\n    string? collectionViewId;\n\n    [ObservableProperty]\n    string? imageSource;\n\n    [ObservableProperty]\n    bool isAddButton;\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/Pages/MockupPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.Mockup.MockupPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:mockup=\"clr-namespace:MAUIsland.Mockup\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\"\n    Padding=\"8\"\n    x:DataType=\"mockup:MockupPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.Resources>\n\n        <FontImageSource\n            x:Key=\"MockupPageExportMockupIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_phone_pagination_24_regular}\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n\n        <LinearItemsLayout\n            x:Key=\"PageTabBarItemLayout\"\n            ItemSpacing=\"16\"\n            Orientation=\"Horizontal\" />\n\n        <DataTemplate x:Key=\"PageTabBarTemplate\" x:DataType=\"x:String\">\n            <Label\n                FontSize=\"Title\"\n                HeightRequest=\"52\"\n                HorizontalOptions=\"Center\"\n                HorizontalTextAlignment=\"Center\"\n                Text=\"{x:Binding}\"\n                VerticalOptions=\"Center\"\n                VerticalTextAlignment=\"Center\" />\n        </DataTemplate>\n\n        <mockup:ListOfMockupPreviewItemModelToListStringConverter x:Key=\"ListOfMockupPreviewItemModelToListStringConverter\" />\n        <mockup:SelectedScreenshotModelToStringConverter x:Key=\"SelectedScreenshotModelToStringConverter\" />\n    </core:BasePage.Resources>\n\n    <Shell.TitleView>\n        <HorizontalStackLayout Padding=\"4\" Spacing=\"16\">\n            <Entry\n                FontAttributes=\"Bold\"\n                MinimumWidthRequest=\"140\"\n                Text=\"Untitled showcases\"\n                VerticalOptions=\"Center\" />\n            <Button CornerRadius=\"4\" Text=\"Save\" />\n        </HorizontalStackLayout>\n    </Shell.TitleView>\n\n    <Grid ColumnDefinitions=\"2*,*\" ColumnSpacing=\"8\">\n        <ScrollView>\n            <Border Padding=\"16\" StrokeShape=\"RoundRectangle 8\">\n                <VerticalStackLayout Spacing=\"16\">\n                    <CollectionView\n                        ItemTemplate=\"{x:StaticResource PageTabBarTemplate}\"\n                        ItemsLayout=\"{x:StaticResource PageTabBarItemLayout}\"\n                        ItemsSource=\"{x:Binding PageTabs}\"\n                        SelectedItem=\"{x:Binding SelectedTab,\n                                                 Mode=TwoWay}\"\n                        SelectionMode=\"Single\" />\n                    <Grid toolkit:StateContainer.CanStateChange=\"{x:Binding CanPageTabsChangeState, Mode=OneWay}\" toolkit:StateContainer.CurrentState=\"{x:Binding SelectedTab, Mode=OneWay}\">\n                        <toolkit:StateContainer.StateViews>\n                            <mockup:DeviceListPageComponent toolkit:StateView.StateKey=\"Devices\" BindingContext=\"{x:Binding}\" />\n                            <mockup:ShowcaseInformationPageComponent toolkit:StateView.StateKey=\"Showcase information\" BindingContext=\"{x:Binding Mode=TwoWay}\" />\n                        </toolkit:StateContainer.StateViews>\n                    </Grid>\n                </VerticalStackLayout>\n            </Border>\n        </ScrollView>\n        <Border\n            Grid.Column=\"1\"\n            Padding=\"16\"\n            StrokeShape=\"RoundRectangle 8\">\n            <Grid\n                BackgroundColor=\"Transparent\"\n                HorizontalOptions=\"Fill\"\n                RowDefinitions=\"auto, *\"\n                RowSpacing=\"8\"\n                VerticalOptions=\"Fill\">\n                <Grid\n                    ColumnDefinitions=\"auto, auto\"\n                    ColumnSpacing=\"8\"\n                    HorizontalOptions=\"Center\">\n                    <Picker\n                        Margin=\"8\"\n                        ItemsSource=\"{x:Binding DevicesList}\"\n                        SelectedItem=\"{x:Binding SelectedDevice,\n                                                 Mode=TwoWay}\"\n                        VerticalOptions=\"Fill\" />\n                    <Button\n                        Grid.Column=\"1\"\n                        Padding=\"8,0,8,0\"\n                        BackgroundColor=\"Transparent\"\n                        Clicked=\"ExportMockUpButton_Clicked\"\n                        CornerRadius=\"4\"\n                        HorizontalOptions=\"Center\"\n                        ImageSource=\"{x:StaticResource MockupPageExportMockupIcon}\"\n                        Text=\"Export\"\n                        TextColor=\"{x:Static core:AppColors.White}\"\n                        VerticalOptions=\"Center\" />\n                </Grid>\n                <Grid\n                    Grid.Row=\"1\"\n                    toolkit:StateContainer.CanStateChange=\"{x:Binding CanMockupFrameChangeState,\n                                                                      Mode=OneWay}\"\n                    toolkit:StateContainer.CurrentState=\"{x:Binding SelectedDevice,\n                                                                    Mode=OneWay}\"\n                    HorizontalOptions=\"Fill\"\n                    VerticalOptions=\"Fill\">\n                    <toolkit:StateContainer.StateViews>\n                        <core:Iphone13MiniContentView\n                            x:Name=\"iPhone13MiniMockup\"\n                            toolkit:StateView.StateKey=\"iPhone 13 Mini\"\n                            ItemsSource=\"{x:Binding Screenshots,\n                                                    Mode=OneWay,\n                                                    Converter={x:StaticResource ListOfMockupPreviewItemModelToListStringConverter}}\"\n                            SelectedMockUp=\"{x:Binding SelectedScreenshot,\n                                                       Mode=OneWay,\n                                                       Converter={x:StaticResource SelectedScreenshotModelToStringConverter}}\" />\n\n                        <core:SamsungGalaxyS22UltraContentView\n                            x:Name=\"SamsungGalaxyS22UltraMockup\"\n                            toolkit:StateView.StateKey=\"Samsung Galaxy S22 Ultra\"\n                            ItemsSource=\"{x:Binding Screenshots,\n                                                    Mode=OneWay,\n                                                    Converter={x:StaticResource ListOfMockupPreviewItemModelToListStringConverter}}\"\n                            SelectedMockUp=\"{x:Binding SelectedScreenshot,\n                                                       Mode=OneWay,\n                                                       Converter={x:StaticResource SelectedScreenshotModelToStringConverter}}\" />\n\n                        <core:GooglePixel6ProContentView\n                            x:Name=\"GooglePixel6ProMockup\"\n                            toolkit:StateView.StateKey=\"Google Pixel 6 Pro\"\n                            ItemsSource=\"{x:Binding Screenshots,\n                                                    Mode=OneWay,\n                                                    Converter={x:StaticResource ListOfMockupPreviewItemModelToListStringConverter}}\"\n                            SelectedMockUp=\"{x:Binding SelectedScreenshot,\n                                                       Mode=OneWay,\n                                                       Converter={x:StaticResource SelectedScreenshotModelToStringConverter}}\" />\n\n\n                        <core:GooglePixel5ContentView\n                            x:Name=\"GooglePixel5Mockup\"\n                            toolkit:StateView.StateKey=\"Google Pixel 5\"\n                            ItemsSource=\"{x:Binding Screenshots,\n                                                    Mode=OneWay,\n                                                    Converter={x:StaticResource ListOfMockupPreviewItemModelToListStringConverter}}\"\n                            SelectedMockUp=\"{x:Binding SelectedScreenshot,\n                                                       Mode=OneWay,\n                                                       Converter={x:StaticResource SelectedScreenshotModelToStringConverter}}\" />\n\n\n\n                        <core:AppleIphone15ProMaxContentView\n                            x:Name=\"AppleIphone15ProMaxMockup\"\n                            toolkit:StateView.StateKey=\"Apple iPhone 15 Pro Max\"\n                            ItemsSource=\"{x:Binding Screenshots,\n                                                    Mode=OneWay,\n                                                    Converter={x:StaticResource ListOfMockupPreviewItemModelToListStringConverter}}\"\n                            SelectedMockUp=\"{x:Binding SelectedScreenshot,\n                                                       Mode=OneWay,\n                                                       Converter={x:StaticResource SelectedScreenshotModelToStringConverter}}\" />\n                    </toolkit:StateContainer.StateViews>\n                </Grid>\n            </Grid>\n        </Border>\n    </Grid>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/Pages/MockupPage.xaml.cs",
    "content": "namespace MAUIsland.Mockup;\n\npublic partial class MockupPage\n{\n    #region [ Fields ]\n\n    private readonly MockupPageViewModel viewModel;\n    #endregion\n\n    #region [ CTors ]\n\n    public MockupPage(MockupPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n    #endregion\n\n    #region [ Event Handlers ]\n\n    private async void ExportMockUpButton_Clicked(System.Object sender, System.EventArgs e)\n    {\n        var result = await iPhone13MiniMockup.CaptureAsync();\n        using MemoryStream stream = new();\n\n        await result.CopyToAsync(stream);\n        File.WriteAllBytes(\"C:\\\\Users\\\\Strypper\\\\Desktop\\\\Bruh.png\", stream.ToArray());\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Mockup/Pages/MockupPageViewModel.cs",
    "content": "﻿using CommunityToolkit.Mvvm.Messaging;\n\n#if WINDOWS\nusing Windows.ApplicationModel.DataTransfer;\nusing Windows.Storage;\n#endif\n\n\nnamespace MAUIsland.Mockup;\n\npublic partial class MockupPageViewModel(IAppNavigator appNavigator,\n        Core.IFilePicker filePicker,\n        IDialogService dialogService) : NavigationAwareBaseViewModel(appNavigator)\n{\n    #region [ Fields ]\n\n    private readonly Core.IFilePicker filePicker = filePicker;\n    private readonly IDialogService dialogService = dialogService;\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        WeakReferenceMessenger.Default.Unregister<DropImageMessage>(this);\n        WeakReferenceMessenger.Default.Register<DropImageMessage>(this, async (r, m) =>\n        {\n            await DropImage(m.Value.Sender, m.Value.Args, m.Value.CollectionViewId);\n        });\n\n        WeakReferenceMessenger.Default.Unregister<DeleteScreenShotMessage>(this);\n        WeakReferenceMessenger.Default.Register<DeleteScreenShotMessage>(this, async (r, m) =>\n        {\n            await RemoveScreenShot(m.Value);\n        });\n\n        RefreshAsync().FireAndForget();\n    }\n\n    protected override void OnActivated()\n    {\n        base.OnActivated();\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    ObservableCollection<DeviceItemModel> deviceList;\n\n    [ObservableProperty]\n    ObservableCollection<ScreenshotModel> screenshots;\n\n    [ObservableProperty]\n    ScreenshotModel selectedScreenshot;\n\n    #endregion\n\n    #region [ Properties - Selected Tabs ]\n\n    [ObservableProperty]\n    List<string> pageTabs;\n\n    [ObservableProperty]\n    bool canPageTabsChangeState;\n\n    [ObservableProperty]\n    string selectedTab;\n\n    #endregion\n\n    #region [ Properties - Mockup Keys ]\n\n    [ObservableProperty]\n    List<string> devicesList;\n\n    [ObservableProperty]\n    bool canMockupFrameChangeState;\n\n    [ObservableProperty]\n    string selectedDevice;\n\n    [ObservableProperty]\n    string iphone13Mini = \"iPhone 13 Mini\";\n\n    [ObservableProperty]\n    string appleIphone15ProMax = \"Apple iPhone 15 Pro Max\";\n\n    [ObservableProperty]\n    string samsungGalaxyS22Ultra = \"Samsung Galaxy S22 Ultra\";\n\n    [ObservableProperty]\n    string googlePixel6Pro = \"Google Pixel 6 Pro\";\n\n    [ObservableProperty]\n    string googlePixel5 = \"Google Pixel 5\";\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    async Task OpenFileAsync()\n    {\n\n    }\n\n    [RelayCommand]\n    async Task AddDeviceAsync()\n        => AddDevice();\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    Task RemoveMockups()\n    {\n        var freshMockup = Screenshots.Where(x => x.IsAddButton);\n        Screenshots = new(freshMockup);\n\n        return Task.CompletedTask;\n    }\n\n    #endregion\n\n    #region [ Methods ]\n\n    async Task RefreshAsync()\n    {\n        string mockupItemGuid = Guid.NewGuid().ToString();\n\n        Screenshots = new()\n        {\n            new()\n            {\n                CollectionViewId = mockupItemGuid,\n                IsAddButton = true,\n            }\n        };\n\n        DeviceList = new()\n        {\n            new()\n            {\n                Id = mockupItemGuid,\n                DeviceModel = Iphone13Mini,\n                Screenshots = Screenshots\n            }\n        };\n\n        DevicesList = new()\n        {\n            Iphone13Mini,\n            AppleIphone15ProMax,\n            SamsungGalaxyS22Ultra,\n            GooglePixel6Pro,\n            GooglePixel5\n        };\n        CanMockupFrameChangeState = true;\n        SelectedDevice = DevicesList.FirstOrDefault();\n\n        PageTabs = new()\n        {\n            \"Devices\",\n            \"Showcase information\"\n        };\n        CanPageTabsChangeState = true;\n        SelectedTab = PageTabs.FirstOrDefault();\n\n    }\n\n    partial void OnSelectedDeviceChanged(string value)\n    {\n\n    }\n\n    async Task DropImage(Object sender, DropEventArgs e, string collectionViewId)\n    {\n#if WINDOWS\n        var args = e.PlatformArgs!.DragEventArgs;\n\n        var dv = e.PlatformArgs!.DragEventArgs.DataView;\n        if (!dv.Contains(StandardDataFormats.StorageItems))\n            return;\n\n        var items = await dv.GetStorageItemsAsync();\n        List<FileResult> filePaths = [];\n        items.OfType<StorageFile>().ToList().ForEach(f => filePaths.Add(new(f.Path)));\n\n        if (filePaths.Count > 0)\n        {\n            var mockupItem = DeviceList.FirstOrDefault(x => x.Id == collectionViewId);\n            if (mockupItem is null)\n                return;\n\n            mockupItem.Screenshots.Add(new()\n            {\n                Id = new Guid().ToString(),\n                ImageSource = filePaths.First().FullPath,\n                IsAddButton = false,\n                CollectionViewId = mockupItem.Id\n            });\n            SelectedScreenshot = Screenshots.LastOrDefault();\n            e.Handled = true;\n        }\n        else\n            return;\n#endif\n    }\n\n    async Task AddDevice()\n    {\n        string newMockupCollectionViewId = Guid.NewGuid().ToString();\n        DeviceList.Add(new()\n        {\n            Id = newMockupCollectionViewId,\n            DeviceModel = Iphone13Mini,\n            Screenshots = new()\n            {\n                new()\n                {\n                    CollectionViewId = newMockupCollectionViewId,\n                    IsAddButton = true\n                }\n            }\n        });\n    }\n\n    async Task RemoveScreenShot(ScreenshotModel screenshot)\n    {\n        string dialogTitle = \"Do you want to remove this screenshot ?\";\n        string dialogMessage = \"This screenshot will be removed\";\n        var wantToScreenShot = await this.dialogService.ShowConfirmationAsync(dialogTitle, dialogMessage);\n        if (!wantToScreenShot)\n            return;\n\n        if (screenshot.CollectionViewId is null)\n            return;\n\n        var mockupItem = DeviceList.FirstOrDefault(x => x.Id == screenshot.CollectionViewId);\n        if (mockupItem is null)\n            return;\n\n\n        mockupItem.Screenshots.Remove(screenshot);\n    }\n\n\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/ResumesTemplate/Blazor/Components/DotNetTemplate.razor",
    "content": "@page \"/resumes-template/dotnet-template\"\n@namespace MAUIsland.ResumesTemplate\n\n<script>\n    window.scrollToElement = function (elementId) {\n        const element = document.getElementById(elementId);\n        if (element) {\n            // Calculate the position to center the element\n            const elementTop = element.getBoundingClientRect().top + window.scrollY;\n            const viewportHeight = window.innerHeight;\n            const offset = (viewportHeight - element.clientHeight) / 2;\n            const scrollPosition = elementTop - offset;\n\n            window.scrollTo({\n                top: scrollPosition,\n                behavior: 'smooth'\n            });\n        }\n    };\n    window.scrollToSection = function (sectionId) {\n        const section = document.getElementById(sectionId);\n        if (section) {\n            // Calculate the top position of the section\n            const sectionTop = section.offsetTop;\n\n            window.scrollTo({\n                top: sectionTop,\n                behavior: 'smooth'\n            });\n        }\n    }\n\n</script>\n\n<head>\n    <link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>\n</head>\n\n<body>\n    \n    <header class=\"header\">\n        <a href=\"#home\" class=\"logo\">\n            <span>@ViewModel.Title</span>\n        </a>\n\n        <i class=\"bx bx-menu\" id=\"menu-icon\"></i>\n\n        <nav class=\"navbar\" >\n            @foreach (var page in ViewModel.Pages)\n            {\n                <a href=\"@(page.Value)\" \n                   class=\"@((ViewModel.SelectedPageIndex == page.Key) ? \"active\" : \"\")\"\n                   onclick=\"@(() => UpdatePageIndex(page.Key))\" >\n                    @(char.ToUpper(page.Value[1]) + page.Value.Substring(2))\n                </a>\n            }\n        </nav>\n    </header>\n\n    <section class=\"home-content\" id=\"home\">\n        <div class=\"user-info\">\n            <h1>Hi, I'm <span>@ViewModel.DisplayName</span></h1>\n            <h3 class=\"text-animation\">Position: <span></span></h3>\n            <p>@ViewModel.Bio</p>\n            <div class=\"social-icons\">\n                <a href=\"#a\" title=\"linkedin\">\n                    <i class=\"bx bxl-linkedin\" />\n                </a>\n                <a href=\"#b\" title=\"github\">\n                    <i class=\"bx bxl-github\" />\n                </a>\n                <a href=\"#c\" title=\"facebook\">\n                    <i class=\"bx bxl-facebook-circle\" />\n                </a>\n                <a href=\"#d\" title=\"twitter\">\n                    <i class=\"bx bxl-twitter\" />\n                </a>\n            </div>\n\n            <div class=\"btn-group\">\n                <a href=\"#e\" class=\"btn\">Hire</a>\n                <a href=\"#contact\" class=\"btn\">Contact</a>\n            </div>\n        </div>\n\n        <div class=\"home-img\">\n            <img src=\"https://i.pinimg.com/550x/62/82/41/628241b01dc7c4fa2bea6ea702713a87.jpg\" alt=\"\" width=\"300\" height=\"300\" />\n        </div>\n    </section>\n\n    <section class=\"history-content\" id=\"history\">\n        <h2 class=\"heading\">History</h2>\n\n        <div class=\"timeline-items\">\n            @foreach (var item in ViewModel.WorksHistory)\n            {\n                <div class=\"timeline-item\"\n                     id=\"@(\"history\" + item.Id)\"\n                     onclick=\"@(() => UpdateWorksHistoryItem(item))\">\n                    <div class=\"timeline-dot\">\n                    </div>\n                    <div class=\"timeline-date\">@item.StartDate.Year</div>\n                    <div class=\"timeline-content\">\n                        <h3>@item.Title</h3>\n                        <p>@item.Description</p>\n                    </div>\n                </div>\n            }\n\n        </div>\n    </section>\n\n    <section class=\"services-content\" id=\"services\">\n        <h2 class=\"heading\">Services</h2>\n\n        <div class=\"services-container\">\n            <div class=\"service-box\">\n                <div class=\"service-info\">\n                    <h4>Web development</h4>\n                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\n                </div>\n            </div>\n\n            <div class=\"service-box\">\n                <div class=\"service-info\">\n                    <h4>Mobile development</h4>\n                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\n                </div>\n            </div>\n\n            <div class=\"service-box\">\n                <div class=\"service-info\">\n                    <h4>Desktop development</h4>\n                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\n                </div>\n            </div>\n\n            <div class=\"service-box\">\n                <div class=\"service-info\">\n                    <h4>Database development</h4>\n                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\n                </div>\n            </div>\n        </div>\n\n    </section>\n\n    <section class=\"contact-content\" id=\"contact\">\n\n        <h2 class=\"heading\">Contact Me</h2>\n\n        <div class=\"contact-info\">\n            <span>Full Name:</span><span>Nghia Duong</span>\n            <span>Email:</span><span>seledy219@outlook.com</span>\n            <span>Phone:</span><span>+84 123 456 789</span>\n        </div>\n\n    </section>\n\n    <footer class=\"footer\">\n        <div class=\"social\">\n            <a href=\"#a\" title=\"linkedin\">\n                <i class=\"bx bxl-linkedin\" />\n            </a>\n            <a href=\"#b\" title=\"github\">\n                <i class=\"bx bxl-github\" />\n            </a>\n            <a href=\"#c\" title=\"facebook\">\n                <i class=\"bx bxl-facebook-circle\" />\n            </a>\n            <a href=\"#d\" title=\"twitter\">\n                <i class=\"bx bxl-twitter\" />\n            </a>\n        </div>\n\n        <p class=\"copyright\">\n            @@2024 Totechs. All rights reserved.\n        </p>\n    </footer>\n</body>\n\n<style>\n    :root {\n        --bg-color: #080808;\n        --second-bg-color: #131313;\n        --text-color: #ffffff;\n        --primary-color: #00ffee;\n    }\n\n    body {\n        background-color: var(--second-bg-color);\n        color: var(--text-color);\n        font-size: 14px;\n    }\n\n        body * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n            text-decoration: none;\n            border: none;\n            outline: none;\n            scroll-behavior: smooth;\n            font-family: \"Poppins\", sans-serif;\n        }\n\n    header {\n        position: fixed;\n        height: 60px;\n        top: 0;\n        left: 0;\n        right: 0;\n        padding: 24px 6% 24px;\n        background-color: #00000022;\n        display: flex;\n        flex-direction: row;\n        justify-content: space-between;\n        -webkit-backdrop-filter: blur(10px);\n        backdrop-filter: blur(10px);\n        align-items: center;\n        font-weight: 800;\n        z-index: 5;\n    }\n\n    section {\n        min-height: 100vh;\n        padding: 70px 6% 30px;\n        background-color: var(--second-bg-color);\n    }\n\n    h1 > span,\n    h2 > span {\n        color: var(--primary-color);\n    }\n\n    .logo {\n        font-size: 20px;\n        color: var(--text-color);\n        cursor: pointer;\n        transition: 0.3s ease;\n    }\n\n        .logo span {\n            color: var(--primary-color);\n            text-shadow: 0 0 25px var(--primary-color);\n        }\n\n        .logo:hover {\n            transform: scale(1.1);\n        }\n\n    .navbar a {\n        color: var(--text-color);\n        transition: 0.3s ease;\n        margin-left: 30px;\n        border-bottom: 3px solid transparent;\n        font-weight: 700;\n    }\n\n        .navbar a:hover,\n        .navbar a.active {\n            transform: scale(1.1);\n            color: var(--primary-color);\n            border-bottom: 3px solid var(--primary-color);\n        }\n\n    #menu-icon {\n        font-size: 20px;\n        color: var(--primary-color);\n        display: none;\n    }\n\n    .user-info {\n        display: flex;\n        flex-direction: column;\n        text-align: left;\n        min-width: 50%;\n    }\n\n    .home-content {\n        display: flex;\n        flex-direction: row;\n        justify-content: center;\n        align-items: center;\n        text-align: left;\n        gap: 80px;\n    }\n\n        .home-content h1 {\n            font-size: 40px;\n            font-weight: 700;\n            margin-top: 24px;\n            line-height: 1;\n        }\n\n        .home-content h3 {\n            margin-bottom: 32px;\n            margin-top: 16px;\n            font-size: 30px;\n            font-weight: 600;\n        }\n\n        .home-content p {\n            word-wrap: break-word;\n        }\n\n    .home-img {\n        border-radius: 50%;\n    }\n\n        .home-img img {\n            border-radius: 50%;\n            box-shadow: 0 0 25px var(--primary-color);\n            cursor: pointer;\n            transition: 0.4s ease-in-out;\n        }\n\n            .home-img img:hover {\n                box-shadow: 0 0 25px var(--primary-color), 0 0 50px var(--primary-color), 0 0 100px var(--primary-color);\n            }\n\n    .social-icons a {\n        display: inline-flex;\n        justify-content: center;\n        align-items: center;\n        width: 40px;\n        height: 40px;\n        background: transparent;\n        border: 2px solid var(--primary-color);\n        font-size: 20px;\n        border-radius: 50%;\n        color: var(--primary-color);\n        margin: 30px 15px 30px 0px;\n        transition: 0.3s ease-in-out;\n    }\n\n        .social-icons a:hover {\n            color: var(--text-color);\n            transform: scale(1.2) translateY(-4px);\n            box-shadow: 0 0 25px var(--primary-color);\n            background-color: var(--primary-color);\n        }\n\n    .btn {\n        display: inline-block;\n        padding: 10px 20px;\n        background: var(--primary-color);\n        box-shadow: 0 0 25px var(--primary-color);\n        border-radius: 20px;\n        font-size: 16px;\n        color: black;\n        border: 2px solid transparent;\n        letter-spacing: 1px;\n        font-weight: 600;\n        transition: 0.3s ease-in-out;\n        cursor: pointer;\n    }\n\n        .btn:hover {\n            transform: scale(1.05);\n            box-shadow: 0 0 50px var(--primary-color);\n        }\n\n    .btn-group {\n        display: flex;\n        gap: 20px;\n        flex-direction: row;\n    }\n\n            .btn-group a:nth-of-type(2) {\n                background-color: black;\n                color: var(--primary-color);\n                border: 2px solid var(--primary-color);\n                box-shadow: 0 0 25px transparent;\n            }\n\n                .btn-group a:nth-of-type(2):hover {\n                    background-color: var(--primary-color);\n                    color: black;\n                    box-shadow: 0 0 25px var(--primary-color);\n                }\n\n    .text-animation {\n        font-size: 30px;\n        font-weight: 600;\n        min-width: 280px;\n    }\n\n        .text-animation span {\n            position: relative;\n        }\n\n            .text-animation span::before {\n                content: \"Web Developer\";\n                color: var(--primary-color);\n                animation: words 16s infinite;\n            }\n\n            .text-animation span::after {\n                content: \"\";\n                position: absolute;\n                background-color: var(--second-bg-color);\n                width: calc(100% + 8px);\n                height: 105%;\n                border-left: 3px solid var(--primary-color);\n                right: -8px;\n                animation: cursor 0.6s infinite, typing steps(20) 16s 0s infinite;\n            }\n\n    @@keyframes cursor {\n        to {\n            border-left: 2px solid var(--primary-color);\n        }\n    }\n\n    @@keyframes words {\n        0%, 20% {\n            content: \"Web Developer\";\n        }\n\n        21%, 40% {\n            content: \"Frontend Developer\";\n        }\n\n        41%, 60% {\n            content: \"Backend Developer\";\n        }\n\n        61%, 80% {\n            content: \"Full Stack Developer\";\n        }\n\n        81%, 100% {\n            content: \"UI / UX Designer\";\n        }\n    }\n\n    @@keyframes typing {\n        10%, 15%, 30%, 35%, 50%, 55%, 70%, 75%, 90%, 95% {\n            width: 0px;\n        }\n\n        5%, 20%, 25%, 40%, 45%, 60%, 65%, 80%, 85% {\n            width: calc(100% + 8px);\n        }\n    }\n\n    .history-content {\n        background-color: var(--second-bg-color);\n    }\n\n    .heading {\n        font-size: 30px;\n        text-align: center;\n        margin-bottom: 50px;\n    }\n\n    .timeline-items {\n        max-width: 1200px;\n        margin: auto;\n        margin-bottom: 40px;\n        display: flex;\n        flex-wrap: wrap;\n        position: relative;\n    }\n\n        .timeline-items::before {\n            content: \"\";\n            position: absolute;\n            width: 5px;\n            height: 100%;\n            background-color: var(--primary-color);\n            left: calc(50% - 1px);\n        }\n\n    .timeline-item {\n        margin-bottom: 40px;\n        width: 100%;\n        position: relative;\n    }\n\n        .timeline-item:last-child {\n            margin-bottom: 0;\n        }\n\n        .timeline-item:nth-child(odd) {\n            padding-right: calc(50% + 30px);\n            text-align: right;\n        }\n\n        .timeline-item:nth-child(even) {\n            padding-left: calc(50% + 30px);\n            text-align: left;\n        }\n\n    .timeline-dot {\n        height: 21px;\n        width: 21px;\n        background-color: var(--primary-color);\n        box-shadow: 0 0 25px var(--primary-color), 0 0 50px var(--primary-color);\n        position: absolute;\n        left: calc(50% - 8px);\n        border-radius: 50%;\n        top: 10px\n    }\n\n    .timeline-date {\n        font-size: 18px;\n        font-weight: 800;\n        color: white;\n        margin: 6px 0 15px;\n    }\n\n    .timeline-content {\n        background-color: var(--bg-color);\n        border: 3px solid var(--primary-color);\n        box-shadow: 0 0 10px var(--primary-color);\n        padding: 30px 50px;\n        border-radius: 36px;\n        cursor: pointer;\n        transition: 0.3s ease-in-out;\n    }\n\n        .timeline-content:hover {\n            transform: scale(1.05);\n            box-shadow: 0 0 25px var(--primary-color);\n        }\n\n        .timeline-content h3 {\n            font-size: 18px;\n            color: white;\n            font-weight: 500;\n            margin-bottom: 10px;\n        }\n\n        .timeline-content p {\n            font-size: 14px;\n            color: white;\n            font-weight: 300;\n            line-height: 22px;\n        }\n\n    .services-content {\n    }\n\n    .services-container {\n        display: grid;\n        grid-template-columns: repeat(2, 1fr);\n        align-items: center;\n        color: black;\n        gap: 30px;\n    }\n\n    .service-box {\n        background-color: var(--primary-color);\n        height: 300px;\n        border-radius: 36px;\n        border: 5px solid transparent;\n        cursor: pointer;\n        transition: 0.4s ease-in-out;\n    }\n\n        .service-box:hover {\n            background: white;\n            color: black;\n            border: 5px solid var(--primary-color);\n            transform: scale(1.05);\n        }\n\n        .service-box .service-info {\n            display: flex;\n            flex-direction: column;\n            text-align: left;\n            max-height: 200px;\n            justify-content: left;\n            align-items: baseline;\n            padding: 50px;\n            gap: 15px;\n        }\n\n    .service-info h4 {\n        font-size: 24px;\n        font-weight: 800;\n        line-height: 1.3;\n    }\n\n    .service-info p {\n        font-size: 16px;\n        font-weight: 600;\n        max-height: 100px;\n        line-height: 1.4;\n        margin: auto;\n    }\n\n    .contact-content {\n        background-color: var(--second-bg-color);\n    }\n\n    .contact-info {\n        display: grid;\n        grid-template-columns: repeat(2, 1fr);\n        justify-items: self-start;\n        align-items: center;\n        width: 50%;\n        margin: auto;\n        gap: 30px;\n    }\n\n        .contact-info span {\n            font-size: 16px;\n            font-weight: 500;\n        }\n\n            .contact-info span:nth-child(even) {\n                color: var(--primary-color)\n            }\n\n            .contact-info span:nth-child(odd) {\n                color: white\n            }\n\n    .footer {\n        position: relative;\n        bottom: 0;\n        left: 0;\n        right: 0;\n        padding: 20px 0 10px;\n    }\n\n        .footer .social {\n            text-align: center;\n            padding-bottom: 25px;\n            color: var(--primary-color);\n        }\n\n            .footer .social a {\n                font-size: 25px;\n                color: var(--primary-color);\n                border: 2px solid var(--primary-color);\n                width: 42px;\n                height: 42px;\n                line-height: 42px;\n                display: inline-block;\n                text-align: center;\n                border-radius: 50%;\n                margin: 0 10px;\n                transition: 0.3s ease-in-out;\n            }\n\n                .footer .social a:hover {\n                    transform: scale(1.2)translateY(-10px);\n                    background-color: var(--primary-color);\n                    color: black;\n                    box-shadow: 0 0 25px var(--primary-color);\n                }\n\n        .footer .copyright {\n            text-align: center;\n            font-size: 16px;\n            color: white;\n        }\n\n\n    @@media only screen and (max-width: 1000px) {\n        .home-content h3 {\n            display: flex;\n            flex-direction: column;\n            align-items: start;\n        }\n    }\n\n</style>"
  },
  {
    "path": "src/Presentations/Windows/Features/ResumesTemplate/Blazor/Components/DotNetTemplate.razor.cs",
    "content": "﻿using Microsoft.AspNetCore.Components;\nusing Microsoft.JSInterop;\nusing Microsoft.Maui.Controls;\nusing System.Collections.Specialized;\nusing System.ComponentModel;\n\nnamespace MAUIsland.ResumesTemplate;\n\npublic partial class DotNetTemplate : ComponentBase\n{\n    [Inject] \n    protected IJSRuntime JS { get; private set; }\n\n    [Inject]\n    protected ResumeDetailPageViewModel ViewModel { get; private set; }\n\n    [Inject] \n    protected NavigationManager Navigation { get; private set; }\n\n    public DotNetTemplate()\n    {\n        \n    }\n\n    protected override async Task OnInitializedAsync()\n    {\n        ViewModel.PropertyChanged += ViewModel_PropertyChanged;\n        if (ViewModel.WorksHistory != null)\n            ViewModel.WorksHistory.CollectionChanged += WorksHistory_CollectionChanged;\n\n        await base.OnInitializedAsync();\n    }\n\n    private async void ViewModel_PropertyChanged(object sender, PropertyChangedEventArgs e)\n    {\n        if (e.PropertyName == nameof(ViewModel.SelectedPageIndex))\n        {\n            await ScrollToSectionAsync(ViewModel.Pages[ViewModel.SelectedPageIndex].Trim('#'));\n        }\n        if (e.PropertyName == nameof(ViewModel.SelectedWorksHistory))\n        {\n            await ScrollToElementAsync(ViewModel.SelectedWorksHistory.Id);\n        }\n        StateHasChanged();\n    }\n\n    private void WorksHistory_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)\n       => StateHasChanged();\n\n    private void UpdatePageIndex(int index)\n    {\n        ViewModel.UpdatePageIndexCommand.Execute(index);\n    }\n\n    private void UpdateWorksHistoryItem(WorkHistoryModel work)\n    {\n        ViewModel.UpdateWorkHistorySelectedItemCommand.Execute(work);\n    }\n\n    private async Task ScrollToSectionAsync(string itemId)\n    {\n        await JS.InvokeVoidAsync(\"scrollToSection\", (itemId));\n    }\n\n    private async Task ScrollToElementAsync(string itemId)\n    {\n        await JS.InvokeVoidAsync(\"scrollToElement\", (\"education\" + itemId));\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/ResumesTemplate/Blazor/ResumesTemplate.razor",
    "content": "﻿@page \"/resumes-template\"\n\n<h3>ResumesTemplate</h3>\n\n@code {\n\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/ResumesTemplate/Models/WorkHistoryModel.cs",
    "content": "﻿namespace MAUIsland.ResumesTemplate;\n\npublic partial class WorkHistoryModel : BaseModel\n{\n    [ObservableProperty]\n    string title;\n\n    [ObservableProperty]\n    string description;\n\n    [ObservableProperty]\n    DateTime startDate;\n\n    [ObservableProperty]\n    DateTime endDate;\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/ResumesTemplate/Pages/ResumeDetailPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ResumesTemplate.ResumeDetailPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:local=\"clr-namespace:MAUIsland.ResumesTemplate\"\n    x:Name=\"thisPage\"\n    x:DataType=\"local:ResumeDetailPageViewModel\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"OnSizeChanged\">\n    <core:BasePage.Resources>\n\n        <FontImageSource\n            x:Key=\"RemoveIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_delete_48_regular}\"\n            Color=\"{AppThemeBinding Light='#15161e',\n                                    Dark='#eaeaea'}\" />\n    </core:BasePage.Resources>\n\n    <Grid ColumnDefinitions=\"0.3*, 0.7*\">\n        <ScrollView x:Name=\"ResumeInputScrollView\" VerticalScrollBarVisibility=\"Never\" Scrolled=\"OnScrolled\" Padding=\"10\">\n            <VerticalStackLayout x:Name=\"ResumeInputStackLayout\" Padding=\"10\">\n                <VerticalStackLayout HorizontalOptions=\"FillAndExpand\" VerticalOptions=\"CenterAndExpand\">\n                    <VerticalStackLayout Spacing=\"4\" HorizontalOptions=\"FillAndExpand\">\n                        <Label Text=\"Title\" TextColor=\"White\" />\n                        <Entry BackgroundColor=\"#2F2F2F\"\n                               Placeholder=\"\"\n                               Text=\"{x:Binding Title}\" />\n                    </VerticalStackLayout>\n\n                    <VerticalStackLayout Spacing=\"4\" HorizontalOptions=\"FillAndExpand\">\n                        <Label Text=\"Your name\" TextColor=\"White\" />\n                        <Entry BackgroundColor=\"#2F2F2F\"\n                               Placeholder=\"\"\n                               Text=\"{x:Binding DisplayName}\" />\n                    </VerticalStackLayout>\n\n                    <VerticalStackLayout Spacing=\"4\" HorizontalOptions=\"FillAndExpand\">\n                        <Label Text=\"Description\" TextColor=\"White\" />\n                        <Editor BackgroundColor=\"#2F2F2F\"\n                                HeightRequest=\"250\"\n                                Text=\"{x:Binding Bio}\" />\n                    </VerticalStackLayout>\n                </VerticalStackLayout>\n\n                <VerticalStackLayout HorizontalOptions=\"FillAndExpand\" VerticalOptions=\"CenterAndExpand\" IsVisible=\"False\"\n                                     Spacing=\"10\">\n                    <CarouselView x:Name=\"WorkHistoryCarouselView\"\n                                  ItemsSource=\"{x:Binding WorksHistory, Mode=TwoWay}\"\n                                  IndicatorView=\"IndicatorView\"\n                                  CurrentItem=\"{x:Binding SelectedWorksHistory, Mode=TwoWay}\"\n                                  Position=\"{x:Binding SelectedIndexWorksHistory, Mode=TwoWay}\"\n                                  Loop=\"False\" \n                                  IsSwipeEnabled=\"True\"\n                                  IsBounceEnabled=\"True\"\n                                  ItemsUpdatingScrollMode=\"KeepLastItemInView\"\n                                  HorizontalScrollBarVisibility=\"Never\"\n                                  FlowDirection=\"LeftToRight\"\n                                  HorizontalOptions=\"FillAndExpand\" >\n                        <CarouselView.ItemsLayout>\n                            <LinearItemsLayout Orientation=\"Horizontal\" \n                                               SnapPointsType=\"MandatorySingle\"\n                                               SnapPointsAlignment=\"Center\" \n                                               ItemSpacing=\"100\"/>\n                        </CarouselView.ItemsLayout>\n                        <CarouselView.ItemTemplate>\n                            <DataTemplate x:DataType=\"local:WorkHistoryModel\">\n                                <Border StrokeShape=\"RoundRectangle 4\" \n                                        HorizontalOptions=\"FillAndExpand\" VerticalOptions=\"Center\">\n                                    <Grid ColumnDefinitions=\"0.8*, 0.2*\" ColumnSpacing=\"5\">\n                                        <VerticalStackLayout Padding=\"5\" Spacing=\"4\">\n                                            <Entry Text=\"{x:Binding Title, Mode=TwoWay}\" />\n                                            <HorizontalStackLayout >\n                                                <Label Text=\"Applied Date\" VerticalTextAlignment=\"Center\" Margin=\"5\"/>\n                                                <DatePicker Date=\"{x:Binding StartDate, Mode=TwoWay}\" HorizontalOptions=\"FillAndExpand\"/>\n                                            </HorizontalStackLayout>\n                                            <Editor Text=\"{x:Binding Description, Mode=TwoWay}\" AutoSize=\"TextChanges\" HeightRequest=\"300\"/>\n                                        </VerticalStackLayout>\n                                        <ImageButton Grid.Column=\"1\"\n                                                     Command=\"{x:Binding Source={x:Reference thisPage},\n                                                                         Path=BindingContext.RemoveWorkHistoryCommand}\"\n                                                     CommandParameter=\"{x:Binding Id}\"\n                                                     Source=\"{x:StaticResource RemoveIcon}\"\n                                                     HorizontalOptions=\"FillAndExpand\"\n                                                     VerticalOptions=\"FillAndExpand\" />\n                                    </Grid>\n                                    <VisualStateManager.VisualStateGroups>\n                                        <VisualStateGroup x:Name=\"CommonStates\">\n                                            <VisualState x:Name=\"CurrentItem\">\n                                                <VisualState.Setters>\n                                                    <Setter Property=\"Scale\" Value=\"1.1\" />\n                                                </VisualState.Setters>\n                                            </VisualState>\n                                            <VisualState x:Name=\"PreviousItem\">\n                                                <VisualState.Setters>\n                                                    <Setter Property=\"Opacity\" Value=\"0.5\" />\n                                                </VisualState.Setters>\n                                            </VisualState>\n                                            <VisualState x:Name=\"NextItem\">\n                                                <VisualState.Setters>\n                                                    <Setter Property=\"Opacity\" Value=\"0.5\" />\n                                                </VisualState.Setters>\n                                            </VisualState>\n                                            <VisualState x:Name=\"DefaultItem\">\n                                                <VisualState.Setters>\n                                                    <Setter Property=\"Opacity\" Value=\"0.25\" />\n                                                </VisualState.Setters>\n                                            </VisualState>\n                                        </VisualStateGroup>\n                                    </VisualStateManager.VisualStateGroups>\n                                </Border>\n                            </DataTemplate>\n                        </CarouselView.ItemTemplate>\n                    </CarouselView>\n                    <IndicatorView x:Name=\"IndicatorView\"\n                                   ItemsSource=\"{x:Binding WorksHistory}\"\n                                   Position=\"{x:Binding SelectedIndexWorksHistory, Mode=TwoWay}\"\n                                   IndicatorColor=\"LightGray\"\n                                   SelectedIndicatorColor=\"#25ffed\"\n                                   VerticalOptions=\"Center\" />\n                    <Button Command=\"{x:Binding AddWorkHistoryCommand}\" Text=\"Add more\" />\n                </VerticalStackLayout>\n\n                <VerticalStackLayout IsVisible=\"False\">\n                    <Label Text=\"Page 3\" />\n                </VerticalStackLayout>\n\n                <VerticalStackLayout IsVisible=\"False\">\n                    <Label Text=\"Page 4\" />\n                </VerticalStackLayout>\n            </VerticalStackLayout>\n        </ScrollView>\n\n        <BlazorWebView x:Name=\"BlazorWebViewElement\"\n                       Grid.Column=\"1\"\n                       HostPage=\"wwwroot\\index.html\"\n                       StartPath=\"{x:Binding BlazorWebViewStartPath}\"\n                       Loaded=\"BlazorWebViewElement_Loaded\">\n            <BlazorWebView.RootComponents>\n                <RootComponent ComponentType=\"{x:Type app:Routes}\" Selector=\"#app\" />\n            </BlazorWebView.RootComponents>\n        </BlazorWebView>\n    </Grid>\n</core:BasePage>\n"
  },
  {
    "path": "src/Presentations/Windows/Features/ResumesTemplate/Pages/ResumeDetailPage.xaml.cs",
    "content": "﻿using Microsoft.AspNetCore.Components;\nusing Octokit;\nusing System.ComponentModel;\nusing System.Diagnostics;\n\nnamespace MAUIsland.ResumesTemplate;\n\npublic partial class ResumeDetailPage\n{\n    #region [ Field ]\n    private bool IsAnimating = false;\n\n    protected ResumeDetailPageViewModel ViewModel;\n    #endregion\n\n    #region [ CTor ]\n\n    public ResumeDetailPage(ResumeDetailPageViewModel vm)\n    {\n        InitializeComponent();\n\n        this.BindingContext = ViewModel = vm;\n\n        SizeChanged += OnSizeChanged;\n        ViewModel.PropertyChanged += ViewModel_PropertyChanged;\n    }\n    #endregion\n\n    #region [ Events ]\n    private async void BlazorWebViewElement_Loaded(Object sender, EventArgs e)\n    {\n        await BlazorWebViewElement.TryDispatchAsync(sp =>\n        {\n            var navigationManager = sp.GetRequiredService<NavigationManager>();\n            navigationManager.NavigateTo(ViewModel.BlazorWebViewStartPath, true, true);\n        });\n    }\n\n    private void OnSizeChanged(object sender, EventArgs e)\n    {\n        AdjustLayout().FireAndForget();\n    }\n\n    private async void ViewModel_PropertyChanged(Object sender, PropertyChangedEventArgs e)\n    {\n        if (e.PropertyName == nameof(ViewModel.SelectedPageIndex))\n        {\n            await HandlePageIndexChangedByWebViewAsync();\n        }\n    }\n\n    private void OnScrolled(object sender, ScrolledEventArgs e)\n    {\n        if (IsAnimating)\n            return;\n\n        var scrollY = e.ScrollY;\n        var contentHeight = ResumeInputStackLayout.Height;\n        var visibleHeight = ResumeInputScrollView.Height;\n        var maxScrollY = contentHeight - visibleHeight;\n        var threshold = maxScrollY * 0.05;\n\n        if (scrollY > (maxScrollY - threshold))\n        {\n            if (ViewModel.SelectedPageIndex < (ResumeInputStackLayout.Children.Count - 1))\n            {\n                ChangePage(ViewModel.SelectedPageIndex + 1);\n            }\n        }\n        else if (scrollY < (threshold))\n        {\n            if (ViewModel.SelectedPageIndex > 0)\n            {\n                ChangePage(ViewModel.SelectedPageIndex - 1);\n            }\n        }\n    }\n    #endregion\n\n    #region [ Methods ]\n    private void ChangePage(int newPage)\n    {\n        ViewModel.PreviousSelectedPageIndex = ViewModel.SelectedPageIndex;\n        ViewModel.SelectedPageIndex = newPage;\n\n        //await BlazorWebViewElement.TryDispatchAsync(async sp =>\n        //{\n        //    var navigationManager = sp.GetRequiredService<NavigationManager>();\n        //    var newUri = ViewModel.BlazorWebViewStartPath + ViewModel.Pages[newPage];\n        //    if (navigationManager.Uri != navigationManager.ToAbsoluteUri(newUri).ToString())\n        //    {\n        //        await Task.Delay(800);\n        //        navigationManager.NavigateTo(newUri, true);\n        //        await Task.Delay(800);\n        //    }\n        //});\n    }\n\n    private async Task HandlePageIndexChangedByWebViewAsync()\n    {\n        IsAnimating = true;\n\n        var previousLayout = ResumeInputStackLayout.Children[ViewModel.PreviousSelectedPageIndex] as VisualElement;\n        var currentLayout = ResumeInputStackLayout.Children[ViewModel.SelectedPageIndex] as VisualElement;\n\n        if (previousLayout != null)\n        {\n            await Task.Delay(100);\n            await previousLayout.FadeTo(0, 300);\n            previousLayout.IsVisible = false;\n        }\n\n        if (currentLayout != null)\n        {\n            await Task.Delay(100);\n            currentLayout.IsVisible = true;\n            await currentLayout.FadeTo(1, 300);\n        }\n\n        await AdjustLayout();\n\n        IsAnimating = false;\n    }\n\n    private async Task AdjustLayout()\n    {\n        IsAnimating = true;\n        var currentPageHeight = 0.0;\n        var currentElement = ResumeInputStackLayout.Children[ViewModel.SelectedPageIndex] as VisualElement;\n\n        if (currentElement is VisualElement stackChildrenElement)\n        {\n            stackChildrenElement.Measure(double.PositiveInfinity, double.PositiveInfinity);\n            currentPageHeight = stackChildrenElement.DesiredSize.Height;\n        }\n\n        var desiredHeight = ResumeInputScrollView.Height;\n\n        var remainingHeight = desiredHeight - currentPageHeight;\n        if (remainingHeight > 0)\n        {\n            ResumeInputStackLayout.Padding = new Thickness(0, remainingHeight / 2 + desiredHeight * 0.1);\n        }\n        else\n        {\n            ResumeInputStackLayout.Padding = new Thickness(0, desiredHeight * 0.1);\n        }\n\n        await Task.Delay(300);\n        //await ResumeInputScrollView.ScrollToAsync(0, desiredHeight * 0.1, true);\n        await ResumeInputScrollView.ScrollToAsync(currentElement, ScrollToPosition.Center, true);\n\n        IsAnimating = false;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/ResumesTemplate/Pages/ResumeDetailPageViewModel.cs",
    "content": "﻿namespace MAUIsland.ResumesTemplate;\n\npublic partial class ResumeDetailPageViewModel(IAppNavigator appNavigator) : NavigationAwareBaseViewModel(appNavigator)\n{\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    string blazorWebViewStartPath = \"/resumes-template/dotnet-template\";\n\n    [ObservableProperty]\n    Dictionary<int, string> pages;\n\n    [ObservableProperty]\n    int previousSelectedPageIndex = 0;\n\n    [ObservableProperty]\n    int selectedPageIndex = 0;\n\n    [ObservableProperty]\n    string title = string.Empty;\n\n    [ObservableProperty]\n    string displayName = string.Empty;\n\n    [ObservableProperty]\n    string bio = string.Empty;\n\n    [ObservableProperty]\n    ObservableCollection<WorkHistoryModel> worksHistory;\n\n    [ObservableProperty]\n    WorkHistoryModel selectedWorksHistory;\n\n    [ObservableProperty]\n    int selectedIndexWorksHistory;\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        base.OnInit(query);\n\n        LoadDataAsync()\n            .FireAndForget();\n    }\n    #endregion\n\n    #region [ Methods ]\n\n    async Task LoadDataAsync()\n    {\n        Pages = new Dictionary<int, string>\n        {\n            { 0, \"#home\" }, \n            { 1, \"#history\" }, \n            { 2, \"#services\" }, \n            { 3, \"#contact\" } \n        };\n\n        WorksHistory = new()\n            {\n                new()\n                {\n                    Id = Guid.NewGuid().ToString(),\n                    Title = \"iDealogic\",\n                    Description = \"Full stack .NET Developer\",\n                    StartDate = new DateTime(2019, 8, 15),\n                    EndDate = new DateTime(2024, 11, 01)\n                },\n                new()\n                {\n                    Id = Guid.NewGuid().ToString(),\n                    Title = \"Tech Innovators\",\n                    Description = \"Senior Software Engineer\",\n                    StartDate = new DateTime(2017, 5, 1),\n                    EndDate = new DateTime(2019, 7, 31)\n                },\n                new()\n                {\n                    Id = Guid.NewGuid().ToString(),\n                    Title = \"Web Solutions\",\n                    Description = \"Software Engineer\",\n                    StartDate = new DateTime(2015, 3, 15),\n                    EndDate = new DateTime(2017, 4, 30)\n                },\n                new()\n                {\n                    Id = Guid.NewGuid().ToString(),\n                    Title = \"Code Creators\",\n                    Description = \"Junior Developer\",\n                    StartDate = new DateTime(2013, 1, 10),\n                    EndDate = new DateTime(2015, 3, 14)\n                },\n                new()\n                {\n                    Id = Guid.NewGuid().ToString(),\n                    Title = \"Startup Hub\",\n                    Description = \"Intern Developer\",\n                    StartDate = new DateTime(2012, 6, 1),\n                    EndDate = new DateTime(2012, 12, 31)\n                }\n            };\n    }\n\n    #endregion\n\n    #region [ Relay commands ]\n\n    [RelayCommand]\n    void AddWorkHistory()\n        => WorksHistory.Add(new()\n        {\n            Id = Guid.NewGuid().ToString(),\n            Title = string.Empty,\n            Description = string.Empty,\n            StartDate = DateTime.Now\n        });\n\n    [RelayCommand]\n    void RemoveWorkHistory(string id)\n    {\n        var removeWork = WorksHistory.FirstOrDefault(x => x.Id == id);\n        if (removeWork is null)\n            return;\n\n        WorksHistory.Remove(removeWork);\n    }\n\n    [RelayCommand]\n    void UpdatePageIndex(int index)\n    {\n        PreviousSelectedPageIndex = SelectedPageIndex;\n        SelectedPageIndex = index;\n    }\n\n    [RelayCommand]\n    void UpdateWorkHistorySelectedItem(WorkHistoryModel work)\n    {\n        SelectedWorksHistory = work;\n        SelectedIndexWorksHistory = WorksHistory.IndexOf(work);\n    }\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/ResumesTemplate/Pages/ResumesPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.ResumesTemplate.ResumesPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:local=\"clr-namespace:MAUIsland.ResumesTemplate\"\n    Title=\"ResumesPage\"\n    x:DataType=\"local:ResumesPageViewModel\">\n    <VerticalStackLayout>\n        <Button\n            Command=\"{x:Binding NavigateUrlCommand}\"\n            CommandParameter=\"{x:Static app:AppRoutes.ResumeDetailPage}\"\n            Text=\"Navigate to detail\" />\n    </VerticalStackLayout>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/ResumesTemplate/Pages/ResumesPage.xaml.cs",
    "content": "namespace MAUIsland.ResumesTemplate;\n\npublic partial class ResumesPage\n{\n\n    #region [ CTors ]\n\n    public ResumesPage(ResumesPageViewModel vm)\n    {\n        InitializeComponent();\n\n        this.BindingContext = vm;\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/ResumesTemplate/Pages/ResumesPageViewModel.cs",
    "content": "﻿namespace MAUIsland.ResumesTemplate;\n\npublic partial class ResumesPageViewModel(IAppNavigator appNavigator) : NavigationAwareBaseViewModel(appNavigator)\n{\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    async Task NavigateUrlAsync(string url)\n        => await AppNavigator.NavigateAsync(url);\n    #endregion\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/SecureStorage/Implementations/SecureStorageService.cs",
    "content": "﻿namespace MAUIsland;\n\npublic class SecureStorageService : ISecureStorageService\n{\n    public Task<string> ReadValueAsync(string key)\n        => Task.Run(() => SecureStorage.Default.GetAsync(key));\n\n    public Task WriteValueAsync(string key, string value)\n        => Task.Run(() => SecureStorage.Default.SetAsync(key, value));\n\n    public Task RemoveAllValueAsync()\n        => Task.Run(() => SecureStorage.Default.RemoveAll());\n\n    public Task<bool> RemoveValueAsync(string key)\n        => Task.Run(() => SecureStorage.Default.Remove(key));\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/SecureStorage/Interfaces/ISecureStorageService.cs",
    "content": "﻿namespace MAUIsland;\n\npublic interface ISecureStorageService\n{\n    Task WriteValueAsync(string key, string value);\n\n    Task<string> ReadValueAsync(string key);\n\n    Task<bool> RemoveValueAsync(string key);\n\n    Task RemoveAllValueAsync();\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Features/Settings/Pages/SettingsPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.Settings.SettingsPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:local=\"clr-namespace:MAUIsland.Settings\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    Title=\"SettingsPage\"\n    Padding=\"8\"\n    x:DataType=\"local:SettingsPageViewModel\"\n    BackgroundColor=\"Transparent\">\n\n    <core:BasePage.Resources>\n        <x:String x:Key=\"RepositoryLink\">\n            https://github.com/Strypper/mauisland\n        </x:String>\n\n        <x:String x:Key=\"LicenseLink\">\n            https://github.com/Strypper/mauisland?tab=MIT-1-ov-file#readme\n        </x:String>\n    </core:BasePage.Resources>\n\n    <ScrollView>\n        <VerticalStackLayout Spacing=\"16\">\n            <Border Padding=\"16\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"8\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"MAUIsland\" />\n                    <Label>\n                        <Label.FormattedText>\n                            <FormattedString>\n                                <Span Text=\"Version: \" />\n                                <Span Text=\"{x:Binding AppVersion}\" />\n                                <Span Text=\" - Dragon Version\" />\n                            </FormattedString>\n                        </Label.FormattedText>\n                    </Label>\n                </VerticalStackLayout>\n            </Border>\n            <Border Padding=\"16\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"8\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\".NET MAUI\" />\n                    <Label>\n                        <Label.FormattedText>\n                            <FormattedString>\n                                <Span Text=\"Version: \" />\n                                <Span Text=\"{x:Binding MauiVersion}\" />\n                            </FormattedString>\n                        </Label.FormattedText>\n                    </Label>\n                </VerticalStackLayout>\n            </Border>\n            <Border Padding=\"16\" StrokeShape=\"RoundRectangle 4\">\n                <VerticalStackLayout Spacing=\"8\">\n                    <Label Style=\"{x:StaticResource DocumentSectionTitleStyle}\" Text=\"Source Code\" />\n                    <ImageButton\n                        Padding=\"10\"\n                        BackgroundColor=\"#323232\"\n                        Command=\"{x:Binding OpenUrlCommand}\"\n                        CommandParameter=\"{x:StaticResource RepositoryLink}\"\n                        CornerRadius=\"10\"\n                        HeightRequest=\"80\"\n                        HorizontalOptions=\"Start\"\n                        Source=\"github_logo.png\"\n                        VerticalOptions=\"Start\"\n                        WidthRequest=\"80\" />\n                    <Label\n                        Text=\"MIT License\"\n                        TextColor=\"#60aeff\"\n                        TextDecorations=\"Underline\">\n                        <Label.GestureRecognizers>\n                            <TapGestureRecognizer Command=\"{x:Binding OpenUrlCommand}\" CommandParameter=\"{x:StaticResource LicenseLink}\" />\n                        </Label.GestureRecognizers>\n                    </Label>\n                </VerticalStackLayout>\n            </Border>\n            <Label HorizontalOptions=\"Center\" Text=\"Copyright (c) 2023 Strypper Vandel Jason\" />\n        </VerticalStackLayout>\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Settings/Pages/SettingsPage.xaml.cs",
    "content": "namespace MAUIsland.Settings;\n\npublic partial class SettingsPage\n{\n    public SettingsPage(SettingsPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = vm;\n\n        //vm.TitleBar = Window.TitleBar as TitleBar;\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Settings/Pages/SettingsPageViewModel.cs",
    "content": "﻿using CommunityToolkit.Diagnostics;\nusing System.Reflection;\n\nnamespace MAUIsland.Settings;\n\npublic partial class SettingsPageViewModel(IAppNavigator appNavigator,\n                                             IUserServices userService,\n                                             Core.IFilePicker filePicker,\n                                             IAppInfo appInfo) : NavigationAwareBaseViewModel(appNavigator)\n{\n    #region [ Fields ]\n\n    private readonly IAppInfo _appInfo = appInfo;\n    private readonly Core.IFilePicker _filePicker = filePicker;\n    private readonly IUserServices _userService = userService;\n\n    public TitleBar? TitleBar;\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        AppVersion = _appInfo.VersionString;\n        MauiVersion = GetMauiVersion();\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    ImageSource avatarImageSource;\n\n    [ObservableProperty]\n    UserModel currentUser;\n\n    [ObservableProperty]\n    FileResult file;\n\n    [ObservableProperty]\n    string appVersion = string.Empty;\n\n    [ObservableProperty]\n    string mauiVersion = string.Empty;\n\n    #endregion\n\n    #region [ Properties - Title Bar ]\n\n    [ObservableProperty]\n    string title = \"MAUIsland\";\n\n    [ObservableProperty]\n    string subtitle = \"Everything about .NET MAUI\";\n\n    [ObservableProperty]\n    bool isShownTitleBar = true;\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n    => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    private async Task OpenFileAsync()\n    {\n        File = await _filePicker.OpenMediaPickerAsync();\n        var imagefile = await _filePicker.UploadImageFile(File);\n        AvatarImageSource = ImageSource.FromStream(() =>\n            _filePicker.ByteArrayToStream(_filePicker.StringToByteBase64(imagefile?.byteBase64))\n        );\n    }\n\n    [RelayCommand]\n    private async Task SaveAsync()\n    {\n        Guard.IsNotNull(File);\n\n        await _userService.UploadCurrentUserAvatar(File);\n    }\n\n    [RelayCommand]\n    private async Task NavigateAsync(string route)\n        => await AppNavigator.NavigateAsync(route);\n\n    #endregion\n\n    #region [ Methods ]\n\n    public void InitTitleBar()\n    {\n        if (TitleBar is null)\n            return;\n\n        TitleBar.Icon = \"mauisland_logo\";\n    }\n\n    async Task GetCurrentUser()\n    {\n        CurrentUser = await _userService.GetCurrentUser();\n        AvatarImageSource = CurrentUser.AvatarUrl;\n    }\n\n    private string GetMauiVersion()\n    {\n        var attr = typeof(MauiApp).Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>();\n        string versionWithSuffix = attr.InformationalVersion;\n\n        // Split the version string using '+' as delimiter and take the first part\n        string[] parts = versionWithSuffix.Split('+');\n        string version = parts[0].Trim();\n\n        return version;\n    }\n\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Showcases/Pages/ShowcasesPage.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<core:BasePage\n    x:Class=\"MAUIsland.Showcases.ShowcasesPage\"\n    xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n    xmlns:acrylic=\"clr-namespace:Xe.AcrylicView;assembly=Xe.AcrylicView\"\n    xmlns:app=\"clr-namespace:MAUIsland\"\n    xmlns:core=\"clr-namespace:MAUIsland.Core;assembly=MAUIsland.Core\"\n    xmlns:lvc=\"clr-namespace:LiveChartsCore.SkiaSharpView.Maui;assembly=LiveChartsCore.SkiaSharpView.Maui\"\n    xmlns:mockup=\"clr-namespace:MAUIsland.Mockup\"\n    xmlns:over=\"clr-namespace:OverFlower;assembly=OverFlower\"\n    xmlns:showcases=\"clr-namespace:MAUIsland.Showcases\"\n    xmlns:toolkit=\"http://schemas.microsoft.com/dotnet/2022/maui/toolkit\"\n    x:Name=\"root\"\n    x:DataType=\"showcases:ShowcasesPageViewModel\"\n    Appearing=\"BasePage_Appearing\"\n    BackgroundColor=\"Transparent\"\n    Loaded=\"root_Loaded\"\n    Shell.NavBarIsVisible=\"False\"\n    SizeChanged=\"BasePage_SizeChanged\">\n\n    <core:BasePage.Resources>\n\n        <mockup:ListOfMockupPreviewItemModelToListStringConverter x:Key=\"ListOfMockupPreviewItemModelToListStringConverter\" />\n\n        <x:String x:Key=\"TopContributorsMessage\">\n            Explore the possibilities of .NET MAUI! See how others in the community have used this technology to create beautiful, open-source apps.\n        </x:String>\n\n        <x:String x:Key=\"ContributeMessage\">\n            Showcase your MAUI skills! Learn about the requirements to submit your .NET MAUI project to MAUIsland and connect with thousands of developers eager to learn from your expertise.\n        </x:String>\n\n        <x:String x:Key=\"SubmitMessage\">\n            Submit your app here, and we'll review it. Once approved, we'll frame it with your desired device frame and include your open-source app information in the next MAUIsland update.\n        </x:String>\n\n        <x:String x:Key=\"ShowcasesUrl\">\n            https://github.com/Strypper/mauisland/blob/main/showcases/version_2.0/Contribute.md\n        </x:String>\n\n        <FontImageSource\n            x:Key=\"ShowcasesIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_star_emphasis_20_regular}\"\n            Color=\"Yellow\" />\n\n        <FontImageSource\n            x:Key=\"HeartIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_heart_20_regular}\"\n            Color=\"DeepPink\" />\n\n        <FontImageSource\n            x:Key=\"PullRequestIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_arrow_reply_all_20_regular}\"\n            Color=\"#004D4D\" />\n\n        <FontImageSource\n            x:Key=\"MockUpIcon\"\n            FontFamily=\"{x:Static core:FontNames.FluentSystemIconsRegular}\"\n            Glyph=\"{Static core:FluentUIIcon.Ic_fluent_phone_vertical_scroll_20_regular}\"\n            Color=\"#004D4D\" />\n\n        <LinearGradientBrush x:Key=\"PullRequestGradient\" StartPoint=\"0,0\" EndPoint=\"1,1\">\n            <GradientStop Offset=\"0.0\" Color=\"#FFEDC9\" />\n            <!--  Light Sand  -->\n            <GradientStop Offset=\"1.0\" Color=\"#9AD3BC\" />\n            <!--  Light Ocean Blue  -->\n        </LinearGradientBrush>\n\n        <LinearGradientBrush x:Key=\"MockUpGradient\" StartPoint=\"0,0\" EndPoint=\"1,1\">\n            <GradientStop Offset=\"0.0\" Color=\"#49A8DE\" />\n            <!--  Light Sand  -->\n            <GradientStop Offset=\"1.0\" Color=\"#3B5998\" />\n            <!--  Light Ocean Blue  -->\n        </LinearGradientBrush>\n\n\n        <LinearGradientBrush x:Key=\"HighLightGridBackgroundGradient\" StartPoint=\"0,0\" EndPoint=\"1,1\">\n            <GradientStop Offset=\"0.0\" Color=\"#059212\" />\n            <GradientStop Offset=\"0.3\" Color=\"#06D001\" />\n            <GradientStop Offset=\"0.6\" Color=\"#9BEC00\" />\n            <GradientStop Offset=\"1.0\" Color=\"#F3FF90\" />\n        </LinearGradientBrush>\n\n        <ControlTemplate x:Key=\"ShowcasesControlTemplate\">\n            <Border\n                Padding=\"16\"\n                HorizontalOptions=\"Center\"\n                StrokeShape=\"RoundRectangle 14\"\n                VerticalOptions=\"Center\"\n                WidthRequest=\"360\">\n                <Grid\n                    ColumnDefinitions=\"260, auto\"\n                    ColumnSpacing=\"16\"\n                    RowDefinitions=\"*, auto, auto\"\n                    RowSpacing=\"16\">\n                    <ContentPresenter MinimumHeightRequest=\"520\" MinimumWidthRequest=\"260\" />\n                    <Label\n                        Grid.Row=\"1\"\n                        Grid.ColumnSpan=\"2\"\n                        FontAttributes=\"Bold\"\n                        FontSize=\"18\"\n                        HorizontalOptions=\"Center\"\n                        Text=\"{TemplateBinding Content.BindingContext.AppName}\"\n                        VerticalOptions=\"End\" />\n                    <CollectionView\n                        Grid.Row=\"2\"\n                        Grid.ColumnSpan=\"2\"\n                        HorizontalOptions=\"Center\"\n                        ItemsSource=\"{TemplateBinding Content.BindingContext.Platforms}\"\n                        VerticalOptions=\"Center\">\n                        <CollectionView.ItemsLayout>\n                            <LinearItemsLayout ItemSpacing=\"16\" Orientation=\"Horizontal\" />\n                        </CollectionView.ItemsLayout>\n                        <CollectionView.ItemTemplate>\n                            <DataTemplate x:DataType=\"x:String\">\n                                <Image\n                                    HeightRequest=\"32\"\n                                    Source=\"{x:Binding}\"\n                                    WidthRequest=\"32\" />\n                            </DataTemplate>\n                        </CollectionView.ItemTemplate>\n                    </CollectionView>\n                    <VerticalStackLayout\n                        Grid.Column=\"1\"\n                        Margin=\"0,16,0,0\"\n                        Spacing=\"16\"\n                        VerticalOptions=\"Start\">\n                        <Border\n                            HeightRequest=\"44\"\n                            StrokeShape=\"RoundRectangle 24\"\n                            WidthRequest=\"44\">\n                            <Image\n                                HorizontalOptions=\"Fill\"\n                                Source=\"{TemplateBinding Content.BindingContext.AuthorAvatar}\"\n                                VerticalOptions=\"Fill\" />\n                        </Border>\n                        <VerticalStackLayout>\n                            <ImageButton\n                                CornerRadius=\"25\"\n                                HeightRequest=\"44\"\n                                Source=\"{x:StaticResource ShowcasesIcon}\"\n                                WidthRequest=\"44\" />\n                            <Label\n                                HorizontalOptions=\"Center\"\n                                Text=\"{TemplateBinding Content.BindingContext.RepoStarsCount}\"\n                                VerticalOptions=\"Center\" />\n                        </VerticalStackLayout>\n                        <VerticalStackLayout>\n                            <ImageButton\n                                Padding=\"0\"\n                                CornerRadius=\"25\"\n                                HeightRequest=\"44\"\n                                Source=\"dotnet_maui_logo.png\"\n                                ToolTipProperties.Text=\".NET MAUI\"\n                                WidthRequest=\"44\" />\n                            <Label\n                                HorizontalOptions=\"Center\"\n                                Text=\"Tech\"\n                                VerticalOptions=\"Center\" />\n                        </VerticalStackLayout>\n                        <VerticalStackLayout>\n                            <ImageButton\n                                Padding=\"8\"\n                                Command=\"{Binding Source={x:Reference root}, Path=BindingContext.OpenUrlCommand}\"\n                                CommandParameter=\"{TemplateBinding Content.BindingContext.RepoUrl}\"\n                                CornerRadius=\"25\"\n                                HeightRequest=\"44\"\n                                Source=\"github_logo.png\"\n                                WidthRequest=\"44\" />\n                            <Label\n                                HorizontalOptions=\"Center\"\n                                Text=\"Source\"\n                                VerticalOptions=\"Center\" />\n                        </VerticalStackLayout>\n                    </VerticalStackLayout>\n                </Grid>\n            </Border>\n        </ControlTemplate>\n\n        <DataTemplate x:Key=\"ShowcasesItemTemplate\" x:DataType=\"core:BaseMockup\">\n            <ContentView ControlTemplate=\"{x:StaticResource ShowcasesControlTemplate}\">\n                <Grid\n                    toolkit:StateContainer.CanStateChange=\"{x:Binding CanMockupFrameChangeState,\n                                                                      Mode=OneWay}\"\n                    toolkit:StateContainer.CurrentState=\"{x:Binding CurrentMockupFrameState,\n                                                                    Mode=OneWay}\"\n                    BindingContext=\"{x:Binding}\">\n                    <toolkit:StateContainer.StateViews>\n                        <core:Iphone13MiniContentView\n                            x:Name=\"iPhone13MiniMockup\"\n                            toolkit:StateView.StateKey=\"iPhone 13 Mini\"\n                            ItemsSource=\"{x:Binding Mockups,\n                                                    Mode=OneWay}\" />\n\n                        <core:SamsungGalaxyS22UltraContentView\n                            x:Name=\"SamsungGalaxyS22UltraMockup\"\n                            toolkit:StateView.StateKey=\"Samsung Galaxy S22 Ultra\"\n                            ItemsSource=\"{x:Binding Mockups,\n                                                    Mode=OneWay}\" />\n\n                        <core:GooglePixel6ProContentView\n                            x:Name=\"GooglePixel6ProMockup\"\n                            toolkit:StateView.StateKey=\"Google Pixel 6 Pro\"\n                            ItemsSource=\"{x:Binding Mockups,\n                                                    Mode=OneWay}\" />\n\n\n                        <core:GooglePixel5ContentView\n                            x:Name=\"GooglePixel5Mockup\"\n                            toolkit:StateView.StateKey=\"Google Pixel 5\"\n                            ItemsSource=\"{x:Binding Mockups,\n                                                    Mode=OneWay}\" />\n\n                        <core:AppleIphone15ProMaxContentView\n                            x:Name=\"AppleIphone15ProMaxContentView\"\n                            toolkit:StateView.StateKey=\"Apple iPhone 15 Pro Max\"\n                            ItemsSource=\"{x:Binding Mockups,\n                                                    Mode=OneWay}\" />\n                    </toolkit:StateContainer.StateViews>\n                </Grid>\n            </ContentView>\n        </DataTemplate>\n\n        <GridItemsLayout\n            x:Key=\"ShowcasesItemLayout\"\n            HorizontalItemSpacing=\"8\"\n            Orientation=\"Vertical\"\n            Span=\"{x:Binding CollectionViewSpan,\n                             Mode=OneWay}\"\n            VerticalItemSpacing=\"8\" />\n    </core:BasePage.Resources>\n\n    <ScrollView>\n\n        <Grid RowDefinitions=\"200, *\">\n            <Grid\n                Padding=\"16,16,16,8\"\n                ColumnDefinitions=\"190,190,*,*\"\n                ColumnSpacing=\"16\">\n\n                <Frame Grid.ColumnSpan=\"2\" Padding=\"0\">\n                    <Grid\n                        Background=\"{x:StaticResource HighLightGridBackgroundGradient}\"\n                        HeightRequest=\"200\"\n                        IsClippedToBounds=\"True\"\n                        WidthRequest=\"400\">\n                        <over:OverFlower\n                            x:Name=\"DemoOverFlower\"\n                            ImageHeight=\"500\"\n                            ImageSource=\"apps_grid.png\"\n                            ImageWidth=\"500\"\n                            Reverse=\"false\"\n                            ScrollDirection=\"Left\"\n                            ScrollDuration=\"10000\" />\n                        <VerticalStackLayout Margin=\"16\" Spacing=\"12\">\n                            <Label\n                                FontAttributes=\"Bold\"\n                                FontSize=\"24\"\n                                Text=\"TOP CONTRIBUTORS\"\n                                TextDecorations=\"Underline\" />\n                            <Label\n                                HorizontalOptions=\"Start\"\n                                HorizontalTextAlignment=\"Start\"\n                                MaximumWidthRequest=\"240\"\n                                Text=\"{x:StaticResource TopContributorsMessage}\" />\n                        </VerticalStackLayout>\n                    </Grid>\n                </Frame>\n                <Border\n                    Grid.Column=\"2\"\n                    Grid.ColumnSpan=\"1\"\n                    Padding=\"16\"\n                    StrokeShape=\"RoundRectangle 14\">\n                    <Grid ColumnDefinitions=\"2*, *\">\n                        <VerticalStackLayout Spacing=\"8\">\n                            <Label\n                                FontSize=\"Title\"\n                                Text=\"Contribute\"\n                                TextDecorations=\"Underline\" />\n                            <Label\n                                HorizontalOptions=\"Start\"\n                                HorizontalTextAlignment=\"Start\"\n                                MaximumWidthRequest=\"236\"\n                                Text=\"{x:StaticResource ContributeMessage}\" />\n                        </VerticalStackLayout>\n                        <Button\n                            Grid.Column=\"1\"\n                            Background=\"{x:StaticResource PullRequestGradient}\"\n                            BorderColor=\"#004D4D\"\n                            BorderWidth=\"3\"\n                            Command=\"{x:Binding OpenUrlCommand}\"\n                            CommandParameter=\"{x:StaticResource ShowcasesUrl}\"\n                            ImageSource=\"{x:StaticResource PullRequestIcon}\" />\n                    </Grid>\n                </Border>\n                <Border\n                    Grid.Column=\"3\"\n                    Grid.ColumnSpan=\"1\"\n                    Padding=\"16\"\n                    StrokeShape=\"RoundRectangle 14\">\n                    <Grid ColumnDefinitions=\"2*, *\">\n                        <VerticalStackLayout Spacing=\"8\">\n                            <Label\n                                FontSize=\"Title\"\n                                Text=\"Submit\"\n                                TextDecorations=\"Underline\" />\n                            <Label\n                                HorizontalOptions=\"Start\"\n                                HorizontalTextAlignment=\"Start\"\n                                MaximumWidthRequest=\"236\"\n                                Text=\"{x:StaticResource SubmitMessage}\" />\n                        </VerticalStackLayout>\n                        <Button\n                            Grid.Column=\"1\"\n                            Background=\"{x:StaticResource MockUpGradient}\"\n                            BorderColor=\"#004D4D\"\n                            BorderWidth=\"3\"\n                            Command=\"{x:Binding NavigateCommand}\"\n                            CommandParameter=\"{x:Static app:AppRoutes.MockupPage}\"\n                            ImageSource=\"{x:StaticResource MockUpIcon}\" />\n                    </Grid>\n                </Border>\n            </Grid>\n            <CollectionView\n                Grid.Row=\"1\"\n                Margin=\"16,0,16,16\"\n                ItemTemplate=\"{x:StaticResource ShowcasesItemTemplate}\"\n                ItemsLayout=\"{x:StaticResource ShowcasesItemLayout}\"\n                ItemsSource=\"{x:Binding Mockups}\" />\n        </Grid>\n\n    </ScrollView>\n</core:BasePage>"
  },
  {
    "path": "src/Presentations/Windows/Features/Showcases/Pages/ShowcasesPage.xaml.cs",
    "content": "namespace MAUIsland.Showcases;\n\npublic partial class ShowcasesPage\n{\n    #region [ Fields ]\n\n    Dictionary<(int min, int max), int> widthRanges = new()\n    {\n        { (1, 676), 1 },\n        { (677, 1142), 2 },\n        { (1143, 1444), 3 },\n        { (1445, 1863), 4 }\n    };\n\n    private readonly ShowcasesPageViewModel viewModel;\n\n    #endregion\n\n    #region [ CTor ]\n\n    public ShowcasesPage(ShowcasesPageViewModel vm)\n    {\n        InitializeComponent();\n\n        BindingContext = viewModel = vm;\n    }\n\n    #endregion\n\n    #region [ Methods ]\n\n    private void BasePage_Appearing(System.Object sender, System.EventArgs e)\n    {\n\n        ResizeWindows();\n    }\n\n    private void BasePage_SizeChanged(object sender, EventArgs e)\n    {\n        var page = sender as Page; // Assuming your BasePage is derived from Page\n        if (page != null)\n        {\n            double width = page.Width;\n            double height = page.Height;\n\n            viewModel.CollectionViewSpan = GetCorrespondingValue(widthRanges, width);\n            System.Diagnostics.Debug.WriteLine($\"Window size changed - Width: {width}, Height: {height}\");\n        }\n\n    }\n\n    private void ResizeWindows()\n    {\n\n        if (Window is not null)\n        {\n            Window.Width = 1200;\n        }\n    }\n\n    int GetCorrespondingValue(Dictionary<(int min, int max), int> widthRanges, double width)\n    {\n        foreach (var range in widthRanges)\n        {\n            if (width >= range.Key.min && width <= range.Key.max)\n            {\n                return range.Value;\n            }\n        }\n\n        // Handle case where width is greater than 1563\n        if (width > 1563)\n        {\n            return 5;\n        }\n\n        throw new ArgumentOutOfRangeException(nameof(width), \"Width is out of range.\");\n    }\n\n    async Task CreateBackgroundImage()\n    {\n    }\n    private async void root_Loaded(System.Object sender, System.EventArgs e)\n    {\n\n        DemoOverFlower.Rotation = -45;\n        await DemoOverFlower.TranslateTo(110, 90, 1000);\n    }\n    #endregion\n\n}"
  },
  {
    "path": "src/Presentations/Windows/Features/Showcases/Pages/ShowcasesPageViewModel.cs",
    "content": "﻿using MAUIsland.GitHubFeatures;\nusing MAUIsland.Mockup;\n\nnamespace MAUIsland.Showcases;\n\npublic partial class ShowcasesPageViewModel : NavigationAwareBaseViewModel\n{\n    #region [ Fields ]\n\n    private readonly IGitHubService gitHubService;\n    #endregion\n\n    #region [ CTor ]\n\n    public ShowcasesPageViewModel(IAppNavigator appNavigator,\n                                  IGitHubService gitHubService) : base(appNavigator)\n    {\n        this.gitHubService = gitHubService;\n    }\n\n    #endregion\n\n    #region [ Overrides ]\n\n    protected override void OnInit(IDictionary<string, object> query)\n    {\n        Mockups = new List<BaseMockup>()\n        {\n            MauiPlanetApp,\n            ChickAndPaddyApp,\n            MauiTrackizerApp,\n            EcommerceApp,\n            RealStateApp,\n            StarBuckApp,\n        };\n\n        RefreshAsync().FireAndForget();\n    }\n\n    public override async Task OnAppearingAsync()\n    {\n        await base.OnAppearingAsync();\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    [ObservableProperty]\n    int collectionViewSpan = 3;\n\n    [ObservableProperty]\n    ICollection<BaseMockup> mockups;\n\n    [ObservableProperty]\n    BaseMockup mauiPlanetApp = new IPhone13MiniModel()\n    {\n        AppName = \"MAUI Planet\",\n        Mockups = new()\n        {\n            \"maui_planets_001.png\",\n            \"maui_planets_002.png\",\n            \"maui_planets_003.png\"\n        },\n        CurrentMockupFrameState = \"iPhone 13 Mini\",\n        AuthorGitHubUserName = \"naweed\",\n        GitHubRepoName = \"MauiPlanets\",\n        Platforms = new()\n        {\n            \"android_logo.png\",\n            \"ios_logo.png\"\n        }\n    };\n\n    [ObservableProperty]\n    BaseMockup mauiTrackizerApp = new AppleIphone15ProMaxModel()\n    {\n        AppName = \"MAUI Trackizer\",\n        Mockups =\n        {\n            \"maui_trackizer_7.jpg\",\n            \"maui_trackizer_1.jpg\",\n            \"maui_trackizer_2.jpg\",\n            \"maui_trackizer_3.jpg\",\n            \"maui_trackizer_4.jpg\",\n            \"maui_trackizer_5.jpg\",\n            \"maui_trackizer_6.jpg\",\n        },\n\n        CurrentMockupFrameState = \"Apple iPhone 15 Pro Max\",\n        AuthorGitHubUserName = \"chsakell\",\n        GitHubRepoName = \"maui-trackizer\",\n        Platforms = new()\n        {\n            \"android_logo.png\",\n            \"ios_logo.png\"\n        }\n    };\n\n    [ObservableProperty]\n    BaseMockup ecommerceApp = new SamsungGalaxyS22UltraModel()\n    {\n        AppName = \"Ecommerce\",\n        Mockups =\n        {\n            \"ecommerce_1.jpg\",\n            \"ecommerce_2.jpg\",\n            \"ecommerce_3.jpg\",\n            \"ecommerce_4.jpg\",\n            \"ecommerce_5.jpg\",\n            \"ecommerce_6.jpg\",\n            \"ecommerce_7.jpg\",\n        },\n        CurrentMockupFrameState = \"Samsung Galaxy S22 Ultra\",\n        AuthorGitHubUserName = \"exendahal\",\n        GitHubRepoName = \"ecommerce_maui\",\n        Platforms = new()\n        {\n            \"android_logo.png\",\n            \"ios_logo.png\"\n        }\n    };\n\n    [ObservableProperty]\n    BaseMockup realStateApp = new GooglePixel6ProModel()\n    {\n        AppName = \"Real State App\",\n        Mockups = new()\n        {\n            \"real_state_app_1.png\",\n            \"real_state_app_2.png\",\n            \"real_state_app_3.png\",\n            \"real_state_app_4.png\",\n            \"real_state_app_5.png\"\n        },\n        CurrentMockupFrameState = \"Google Pixel 6 Pro\",\n        AuthorGitHubUserName = \"marcfabregatb\",\n        GitHubRepoName = \"RealEstate.App\",\n        Platforms = new()\n        {\n            \"android_logo.png\",\n            \"ios_logo.png\"\n        }\n    };\n\n    [ObservableProperty]\n    BaseMockup starBuckApp = new GooglePixel5Model()\n    {\n        AppName = \"Starbuck\",\n        Mockups = new()\n        {\n            \"starbuck_1.png\",\n            \"starbuck_2.png\"\n        },\n        CurrentMockupFrameState = \"Google Pixel 5\",\n        AuthorGitHubUserName = \"sattasundar\",\n        GitHubRepoName = \"maui-starbucks-ui\",\n        Platforms = new()\n        {\n            \"android_logo.png\",\n            \"ios_logo.png\"\n        }\n    };\n\n    [ObservableProperty]\n    BaseMockup chickAndPaddyApp = new IPhone13MiniModel()\n    {\n        AppName = \"Chick And Paddy\",\n        Mockups = new()\n        {\n            \"chick_and_paddy_1.png\",\n            \"chick_and_paddy_2.png\",\n            \"chick_and_paddy_3.png\",\n            \"chick_and_paddy_4.png\",\n        },\n        CurrentMockupFrameState = \"iPhone 13 Mini\",\n        AuthorGitHubUserName = \"tuyen-vuduc\",\n        GitHubRepoName = \"chick-and-paddy-dotnet-maui\",\n        Platforms = new()\n        {\n            \"android_logo.png\",\n            \"ios_logo.png\"\n        }\n    };\n\n    #endregion\n\n    #region [ Relay Commands ]\n\n    [RelayCommand]\n    Task OpenUrlAsync(string url)\n        => AppNavigator.OpenUrlAsync(url);\n\n    [RelayCommand]\n    Task NavigateAsync(string url)\n        => AppNavigator.NavigateAsync(url);\n    #endregion\n\n    #region [ Methods ]\n    async Task RefreshAsync()\n    {\n        var mauiPlanetAppTask = this.gitHubService.GetRepository(MauiPlanetApp.AuthorGitHubUserName, MauiPlanetApp.GitHubRepoName);\n        var starBuckAppTask = this.gitHubService.GetRepository(StarBuckApp.AuthorGitHubUserName, StarBuckApp.GitHubRepoName);\n        var mauiTrackizerAppTask = this.gitHubService.GetRepository(MauiTrackizerApp.AuthorGitHubUserName, MauiTrackizerApp.GitHubRepoName);\n        var ecommerceAppTask = this.gitHubService.GetRepository(EcommerceApp.AuthorGitHubUserName, EcommerceApp.GitHubRepoName);\n        var chickAndPaddyAppTask = this.gitHubService.GetRepository(ChickAndPaddyApp.AuthorGitHubUserName, ChickAndPaddyApp.GitHubRepoName);\n        var realStateAppTask = this.gitHubService.GetRepository(RealStateApp.AuthorGitHubUserName, RealStateApp.GitHubRepoName);\n\n        var results = await Task.WhenAll(mauiPlanetAppTask,\n                                         starBuckAppTask,\n                                         mauiTrackizerAppTask,\n                                         ecommerceAppTask,\n                                         chickAndPaddyAppTask,\n                                         realStateAppTask);\n\n        foreach (var result in results)\n        {\n            result.Match(\n                success =>\n                {\n                    var repositoryInformation = success.AttachedData as GitHubRepositoryModel;\n                    if (repositoryInformation is null)\n                        return Task.CompletedTask;\n\n                    var mockup = Mockups.FirstOrDefault(x => x.GitHubRepoName == repositoryInformation.Name);\n                    if (mockup is null)\n                        return Task.CompletedTask;\n\n                    mockup.RepoStarsCount = repositoryInformation.StarCount;\n                    mockup.AuthorAvatar = repositoryInformation.AuthorAvatarUrl;\n                    mockup.AuthorLinkUrl = repositoryInformation.AuthorUrl;\n                    mockup.RepoUrl = repositoryInformation.SvnUrl;\n                    return Task.CompletedTask;\n                },\n                error =>\n                {\n                    var errorMessage = error.ErrorMessage;\n                    return Task.CompletedTask;\n                }\n            );\n        }\n    }\n\n\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/GlobalUsings.cs",
    "content": "﻿global using CommunityToolkit.Mvvm.ComponentModel;\nglobal using CommunityToolkit.Mvvm.Input;\nglobal using MAUIsland.Core;\nglobal using System;\nglobal using System.Collections.Generic;\nglobal using System.Collections.ObjectModel;\nglobal using System.ComponentModel.DataAnnotations;\nglobal using System.Globalization;\nglobal using System.Linq;\nglobal using System.Windows.Input;\n"
  },
  {
    "path": "src/Presentations/Windows/MAUIsland - Backup.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk.Razor\">\n\n\t<PropertyGroup>\n\t\t<TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>\n\t\t<TargetFrameworks Condition=\"$([MSBuild]::IsOSPlatform('windows'))\">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks>\n\t\t<OutputType>Exe</OutputType>\n\t\t<UseMaui>true</UseMaui>\n\t\t<SingleProject>true</SingleProject>\n\t\t<ImplicitUsings>enable</ImplicitUsings>\n\t\t<!--<UseRidGraph>true</UseRidGraph>-->\n\t\t<_MauiForceXamlCForDebug>false</_MauiForceXamlCForDebug>\n\n\t\t<!-- Display name -->\n\t\t<ApplicationTitle>MAUIsland</ApplicationTitle>\n\n\t\t<!-- App Identifier -->\n\t\t<ApplicationId>com.companyname.mauisland</ApplicationId>\n\t\t<ApplicationIdGuid>337d7a98-7b00-487e-88d9-3b1a317456c7</ApplicationIdGuid>\n\n\t\t<!-- Versions -->\n\t\t<ApplicationDisplayVersion>2.0</ApplicationDisplayVersion>\n\t\t<ApplicationVersion>2</ApplicationVersion>\n\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'\">11.0</SupportedOSPlatformVersion>\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'\">13.1</SupportedOSPlatformVersion>\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'\">21.0</SupportedOSPlatformVersion>\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'\">6.5</SupportedOSPlatformVersion>\n\t\t<SupportedOSPlatformVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'\">10.0.17763.0</SupportedOSPlatformVersion>\n\t\t<TargetPlatformMinVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'\">10.0.17763.0</TargetPlatformMinVersion>\n\t\t<GenerateAppInstallerFile>False</GenerateAppInstallerFile>\n\t\t<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>\n\t\t<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>\n\t\t<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>\n\t\t<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>\n\t\t<GenerateTestArtifacts>True</GenerateTestArtifacts>\n\t\t<AppInstallerUri>https://totechsintranet.blob.core.windows.net/installers</AppInstallerUri>\n\t\t<HoursBetweenUpdateChecks>1</HoursBetweenUpdateChecks>\n\t\t<GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate>\n\t\t<SignAssembly>False</SignAssembly>\n\t\t<PackageCertificateThumbprint>B90CE38E464032DB4247C5C0662ABB5BEEA5938C</PackageCertificateThumbprint>\n\t\t<Platforms>AnyCPU;x64</Platforms>\n\t</PropertyGroup>\n\n\t<ItemGroup>\n\t\t<RuntimeHostConfigurationOption Include=\"System.Runtime.Loader.UseRidGraph\" Value=\"true\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t\t<!-- App Icon -->\n\t\t<MauiIcon Include=\"Resources\\AppIcon\\appicon.svg\" ForegroundFile=\"Resources\\AppIcon\\appiconfg.svg\" BaseSize=\"1200, 1200\" Color=\"#512BD4\" />\n\t\t<MauiIcon Include=\"Resources\\AppIcon\\square44x44logo.svg\" />\n\n\t\t<!-- Splash Screen -->\n\t\t<MauiSplashScreen Include=\"Resources\\Splash\\splash.svg\" Color=\"#512BD4\" BaseSize=\"128,128\" />\n\n\t\t<!-- Images -->\n\t\t<MauiImage Include=\"Resources\\Images\\*\" />\n\t\t<MauiImage Update=\"Resources\\Images\\dotnet_bot.svg\" BaseSize=\"168,208\" />\n\n\t\t<!-- Custom Fonts -->\n\t\t<MauiFont Include=\"Resources\\Fonts\\*\" />\n\n\t\t<!-- Raw Assets (also remove the \"Resources\\Raw\" prefix) -->\n\t\t<MauiAsset Include=\"Resources\\Raw\\**\" LogicalName=\"%(RecursiveDir)%(Filename)%(Extension)\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <AndroidResource Remove=\"Features\\Settings\\Models\\**\" />\n\t  <Compile Remove=\"Features\\Settings\\Models\\**\" />\n\t  <EmbeddedResource Remove=\"Features\\Settings\\Models\\**\" />\n\t  <MauiCss Remove=\"Features\\Settings\\Models\\**\" />\n\t  <MauiXaml Remove=\"Features\\Settings\\Models\\**\" />\n\t  <None Remove=\"Features\\Settings\\Models\\**\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <MauiCss Remove=\"Features\\ResumesTemplate\\Blazor\\wwwroot\\css\\app.css\" />\n\t  <MauiCss Remove=\"Features\\ResumesTemplate\\Blazor\\wwwroot\\css\\bootstrap\\bootstrap.min.css\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <None Remove=\"appsettings.Development.json\" />\n\t  <None Remove=\"Features\\ResumesTemplate\\Blazor\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map\" />\n\t  <None Remove=\"Features\\ResumesTemplate\\Blazor\\wwwroot\\favicon.png\" />\n\t  <None Remove=\"Features\\ResumesTemplate\\Blazor\\wwwroot\\index.html\" />\n\t  <None Remove=\"Resources\\Images\\backgrounds\\abstract_background.jpg\" />\n\t  <None Remove=\"Resources\\Images\\backgrounds\\abstract_background_1.jpg\" />\n\t  <None Remove=\"Resources\\Images\\books\\dotnet_developers_cross_platform_applications_ebook.png\" />\n\t  <None Remove=\"Resources\\Images\\books\\dotnet_maui_in_action.png\" />\n\t  <None Remove=\"Resources\\Images\\books\\enterprise_app_patterns_ebook.png\" />\n\t  <None Remove=\"Resources\\Images\\logos\\dotnet_maui_logo.svg\" />\n\t  <None Remove=\"Resources\\Images\\mockups\\apple_iphone_13_mini.png\" />\n\t  <None Remove=\"Resources\\Images\\mockups\\apple_iphone_15_pro_max.png\" />\n\t  <None Remove=\"Resources\\Images\\mockups\\google_pixel_5.png\" />\n\t  <None Remove=\"Resources\\Images\\mockups\\google_pixel_6_pro.png\" />\n\t  <None Remove=\"Resources\\Images\\mockups\\iphone_15.png\" />\n\t  <None Remove=\"Resources\\Images\\mockups\\samsung_galaxy_s22_ultra_2022.png\" />\n\t  <None Remove=\"Resources\\Images\\mockups\\samsung_s8.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\android_launcher_background_1.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\android_launcher_background_2.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\apps_grid.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\be_1.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\calculator_1.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\calculator_2.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\calling_app_1.gif\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\chick_and_paddy_1.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\chick_and_paddy_2.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\chick_and_paddy_3.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\chick_and_paddy_4.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\ecommerce_1.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\ecommerce_2.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\ecommerce_3.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\ecommerce_4.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\ecommerce_5.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\ecommerce_6.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\ecommerce_7.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\file_1.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\file_2.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\four_seasons_1.gif\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\gadgets_store_app_1.gif\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\gadgets_store_app_2.gif\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\gadgets_store_app_3.gif\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\grab_food_1.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\maui_planets_001.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\maui_planets_002.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\maui_planets_003.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\maui_trackizer_1.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\maui_trackizer_2.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\maui_trackizer_3.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\maui_trackizer_4.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\maui_trackizer_5.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\maui_trackizer_6.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\maui_trackizer_7.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\onelife_1.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\onelife_2.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\onelife_3.jpg\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\real_state_app_1.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\real_state_app_2.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\real_state_app_3.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\real_state_app_4.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\real_state_app_5.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\starbuck_1.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\starbuck_2.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\voice_recorder_1.png\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\youtube_1.png\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <Content Include=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\BlazorWebView\\Blazor\\hosting\\css\\app.css\" />\n\t  <Content Include=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\BlazorWebView\\Blazor\\hosting\\css\\bootstrap\\bootstrap.min.css\" />\n\t  <Content Include=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\BlazorWebView\\Blazor\\hosting\\css\\bootstrap\\bootstrap.min.css.map\" />\n\t  <Content Include=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\BlazorWebView\\Blazor\\hosting\\favicon.png\" />\n\t  <Content Include=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\BlazorWebView\\Blazor\\hosting\\index.html\" />\n\t  <Content Include=\"Features\\ResumesTemplate\\Blazor\\wwwroot\\css\\app.css\" />\n\t  <Content Include=\"Features\\ResumesTemplate\\Blazor\\wwwroot\\css\\bootstrap\\bootstrap.min.css\" />\n\t  <Content Include=\"Features\\ResumesTemplate\\Blazor\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map\" />\n\t  <Content Include=\"Features\\ResumesTemplate\\Blazor\\wwwroot\\favicon.png\" />\n\t  <Content Include=\"Features\\ResumesTemplate\\Blazor\\wwwroot\\index.html\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t\t<PackageReference Include=\"Microsoft.Maui.Controls\" Version=\"8.0.70\" />\n\t\t<PackageReference Include=\"Microsoft.Maui.Controls.Compatibility\" Version=\"8.0.70\" />\n\t\t<PackageReference Include=\"Microsoft.AspNetCore.SignalR.Client\" Version=\"8.0.7\" />\n\t\t<PackageReference Include=\"Microsoft.Extensions.Configuration.Binder\" Version=\"8.0.2\" />\n\t\t<PackageReference Include=\"Microsoft.Extensions.Configuration.Json\" Version=\"9.0.0-preview.1.24080.9\" />\n\t\t<PackageReference Include=\"Microsoft.Extensions.Logging.Debug\" Version=\"8.0.0\" />\n\t\t<PackageReference Include=\"Newtonsoft.Json\" Version=\"13.0.3\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t\t<Folder Include=\"Features\\Gallery\\Pages\\Community\\Layouts\\\" />\n\t\t<Folder Include=\"Features\\Showcases\\Models\\\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t\t<Compile Update=\"Features\\Chat\\ContentViews\\ChatBubbleContentView.xaml.cs\">\n\t\t\t<DependentUpon>ChatBubbleContentView.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Chat\\Popups\\AuthenticatePopup.xaml.cs\">\n\t\t\t<DependentUpon>AuthenticatePopup.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\ContentViews\\BrandIconContentView.xaml.cs\">\n\t\t\t<DependentUpon>BrandIconContentView.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\ContentViews\\GithubCardContentView.xaml.cs\">\n\t\t\t<DependentUpon>GithubCardContentView.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Layouts\\AbsoluteLayout\\AbsoluteLayoutPage.xaml.cs\">\n\t\t  <DependentUpon>AbsoluteLayoutPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Layouts\\AbsoluteLayout\\ContentViews\\DotNetRoadMap.xaml.cs\">\n\t\t  <DependentUpon>DotNetRoadMap.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\TabbedPage\\TabbedPages\\CommunityPage.xaml.cs\">\n\t\t\t<DependentUpon>CommunityPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\CardsByGroupPage.xaml.cs\">\n\t\t\t<DependentUpon>CardsByGroupPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Community\\Helpers\\OCR\\OCRPage.xaml.cs\">\n\t\t  <DependentUpon>OCRPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Community\\Helpers\\SQLite-net\\SQLiteNETPage.xaml.cs\">\n\t\t  <DependentUpon>SQLiteNETPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Community\\Controls\\DataGrid\\DataGridPage.xaml.cs\">\n\t\t  <DependentUpon>DataGridPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Material\\Controls\\MaterialProgressIndicator\\MaterialProgressIndicatorPage.xaml.cs\">\n\t\t  <DependentUpon>MaterialProgressIndicatorPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Material\\Controls\\MaterialRadioButton\\MaterialRadioButtonPage.xaml.cs\">\n\t\t  <DependentUpon>MaterialRadioButtonPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfMaps\\SfMapsViewPage.xaml.cs\">\n\t\t\t<DependentUpon>SfMapsViewPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Toolkit\\Layouts\\DockLayout\\DockLayoutPage.xaml.cs\">\n\t\t  <DependentUpon>DockLayoutPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Toolkit\\Layouts\\StateContainer\\StateContainerPage.xaml.cs\">\n\t\t  <DependentUpon>StateContainerPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Toolkit\\Layouts\\UniformLayout\\UniformItemsLayoutPage.xaml.cs\">\n\t\t  <DependentUpon>UniformItemsLayoutPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Toolkit\\MediaElement\\MediaElementPage.xaml.cs\">\n\t\t\t<DependentUpon>MediaElementPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Syncfusion\\ListView\\Pages\\SyncfusionListViewPage.xaml.cs\">\n\t\t\t<DependentUpon>SyncfusionListViewPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Condition=\" '$(EnableDefaultCompileItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfListView\\SyncfusionListViewPage.xaml.cs\">\n\t\t\t<DependentUpon>SfListViewPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Home\\ContentViews\\ControlActivityCardContentView.xaml.cs\">\n\t\t\t<DependentUpon>ControlActivityCardContentView.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Home\\Pages\\HomePage.xaml.cs\">\n\t\t\t<DependentUpon>HomePage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Mockup\\ContentViews\\MockupPreviewItemContentView\\ScreenshotItemContentView.xaml.cs\">\n\t\t  <DependentUpon>ScreenshotItemContentView.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Mockup\\ContentViews\\MockupScreenShotsContentView\\DeviceListPageComponent.xaml.cs\">\n\t\t  <DependentUpon>DeviceListPageComponent.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Mockup\\Pages\\MockupPage.xaml.cs\">\n\t\t  <DependentUpon>MockupPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Showcases\\Pages\\ShowcasesPage.xaml.cs\">\n\t\t  <DependentUpon>ShowcasesPage.xaml</DependentUpon>\n\t\t</Compile>\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t\t<MauiXaml Update=\"Features\\Chat\\ContentViews\\ChatBubbleContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\ContentViews\\LoginFormContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\ContentViews\\RegisterFormContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\Pages\\ChatPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\ContentViews\\ChatPageDesktopLayout.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\ContentViews\\ChatPagePhoneLayout.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\ContentViews\\ChatPageTabletLayout.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\Popups\\AuthenticatePopup.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\Styles\\ChatStyles.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\ContentViews\\BrandIconContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\ContentViews\\ControlCardContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\ContentViews\\GithubCardContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\ContentViews\\MaterialUICardContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\ContentViews\\SyncfusionCardContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\MAUI\\Label\\LabelPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\BlazorWebView\\BlazorWebViewPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Border\\BorderPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Button\\ButtonPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CheckBox\\CheckBoxPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\DatePicker\\DatePickerPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Editor\\EditorPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Entry\\EntryPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Layouts\\AbsoluteLayout\\AbsoluteLayoutPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Layouts\\AbsoluteLayout\\ContentViews\\DotNetRoadMap.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\TabbedPage\\TabbedPages\\CommunityPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\TabbedPage\\TabbedPages\\NewsPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Community\\Helpers\\OCR\\OCRPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Community\\Helpers\\SQLite-net\\SQLiteNETPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Community\\Controls\\DataGrid\\DataGridPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\GalleryPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Material\\Controls\\MaterialRadioButton\\MaterialRadioButtonPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Material\\Controls\\MaterialProgressIndicator\\MaterialProgressIndicatorPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfMaps\\SfMapsViewPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Toolkit\\Helpers\\RelayCommand\\RelayCommandPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Toolkit\\Layouts\\DockLayout\\DockLayoutPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Toolkit\\Layouts\\StateContainer\\StateContainerPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Toolkit\\Layouts\\UniformLayout\\UniformItemsLayoutPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Toolkit\\MediaElement\\MediaElementPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Styles\\Colors.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Syncfusion\\ListView\\Pages\\SyncfusionListViewPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Home\\ContentViews\\ControlActivityCardContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Mockup\\ContentViews\\AddButtonContentView\\AddButtonContentView.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Mockup\\ContentViews\\MockupPreviewItemContentView\\ScreenshotItemContentView.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Mockup\\ContentViews\\MockupScreenShotsContentView\\DeviceListPageComponent.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Mockup\\ContentViews\\ShowcaseInformationContentView\\ShowcaseInformationPageComponent.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Mockup\\Pages\\MockupPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\ResumesTemplate\\Pages\\ResumesPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Settings\\Pages\\SettingsPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\MAUIAllControlsPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\ImageButton\\ImageButtonPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\ActivityIndicator\\ActivityIndicatorPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\SearchBar\\Pages\\SearchBarPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\TableView\\Pages\\TableViewPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\TimePicker\\Pages\\TimePickerPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\RefreshView\\Pages\\RefreshViewPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\CollectionView\\Pages\\CollectionViewPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\MenuBar\\Pages\\MenuBarPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Picker\\Pages\\PickerPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\CarouselView\\Pages\\CarouselViewPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Entry\\Pages\\EntryPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\DatePicker\\Pages\\DatePickerPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\CheckBox\\Pages\\CheckBoxPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Label\\Pages\\LabelPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Slider\\Pages\\SliderPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Stepper\\Pages\\StepperPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\ProgressBar\\Pages\\ProgressBarPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\RaditoButton\\Pages\\RadioButtonPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Button\\Pages\\ButtonPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\SwipeView\\Pages\\SwipeViewPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Switch\\Pages\\SwitchPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\IndicatorView\\Pages\\IndicatorViewPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Editor\\Pages\\EditorPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\CarouselView\\CarouselViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\CollectionView\\CollectionViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\IndicatorView\\IndicatorViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Label\\LabelPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\MenuBar\\MenuBarPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Picker\\PickerPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\ProgressBar\\ProgressBarPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\RadioButton\\RadioButtonPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\RefreshView\\RefreshViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\SearchBar\\SearchBarPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Slider\\SliderPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Stepper\\StepperPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\SwipeView\\SwipeViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Switch\\SwitchPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\TimePicker\\Pages\\TimePickerPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\TableView\\TableViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfListView\\SyncfusionListViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Xxxx\\XxxxPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Showcases\\Pages\\ShowcasesPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t</ItemGroup>\n\n\n\t<ItemGroup>\n\t\t<EmbeddedResource Include=\"appsettings.Development.json\">\n\t\t  <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>\n\t\t</EmbeddedResource>\n\t\t<EmbeddedResource Include=\"Features\\Gallery\\Pages\\BuiltIn\\Helpers\\AppSettingsJson\\JsonFiles\\appsettings.json\">\n\t\t  <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>\n\t\t</EmbeddedResource>\n\t\t<EmbeddedResource Include=\"Resources\\Raw\\australia.shp\" />\n\t\t<EmbeddedResource Include=\"Resources\\Raw\\river.json\" />\n\t\t<EmbeddedResource Include=\"Resources\\Raw\\usa_state.shp\" />\n\t\t<EmbeddedResource Include=\"Resources\\Raw\\world-map.json\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t\t<MauiImage Include=\"Resources\\Images\\backgrounds\\abstract_background.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\backgrounds\\abstract_background_1.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\backgrounds\\maui_homepage_background.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\backgrounds\\pattern_background_image.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\banners\\builtin_banner.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\banners\\devexpress_banner.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\banners\\github_banner.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\banners\\mauitoolkit_banner.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\banners\\syncfusion_banner.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\books\\dotnet_developers_cross_platform_applications_ebook.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\books\\dotnet_maui_in_action.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\books\\enterprise_app_patterns_ebook.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\android_logo.svg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\community_toolkit_logo.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\devexpress_logo.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\dotnet_maui_logo.svg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\github_logo.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\ios_logo.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\jamesmontemagnologo.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\banners\\materialui_banner.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\materialuilogo.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\mauilogo.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\mauisland_logo.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\mauitoolkit_logo.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\syncfusionlogo.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\tizen_logo.svg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\windowslogo.svg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\members\\member_long.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\members\\member_tan.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\mrincredibleblackwhite.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\mrincredibleblackwhite1.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\mrincredibleblackwhite2.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\mrincredibleblackwhite3.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\mrincredibleblackwhite4.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\mrincredibleblackwhite5.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\mrincrediblesmile.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\mrincrediblesmile1.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\mrincrediblesmile2.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\mrincrediblesmile3.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\mrincrediblesmile4.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\mrincrediblesmile5.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\mockups\\apple_iphone_13_mini.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\mockups\\apple_iphone_15_pro_max.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\mockups\\google_pixel_5.png\">\n\t\t  <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>\n\t\t</MauiImage>\n\t\t<MauiImage Include=\"Resources\\Images\\mockups\\google_pixel_6_pro.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\mockups\\iphone_15.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\mockups\\samsung_galaxy_s22_ultra_2022.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\mockups\\samsung_s8.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\android_launcher_background_1.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\android_launcher_background_2.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\apps_grid.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\be_1.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\calculator_1.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\calculator_2.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\calling_app_1.gif\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\chick_and_paddy_1.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\chick_and_paddy_2.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\chick_and_paddy_3.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\chick_and_paddy_4.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\ecommerce_1.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\ecommerce_2.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\ecommerce_3.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\ecommerce_4.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\ecommerce_5.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\ecommerce_6.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\ecommerce_7.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\file_1.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\file_2.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\four_seasons_1.gif\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\gadgets_store_app_1.gif\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\gadgets_store_app_2.gif\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\gadgets_store_app_3.gif\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\grab_food_1.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\maui_planets_001.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\maui_planets_002.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\maui_planets_003.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\maui_trackizer_1.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\maui_trackizer_2.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\maui_trackizer_3.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\maui_trackizer_4.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\maui_trackizer_5.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\maui_trackizer_6.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\maui_trackizer_7.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\onelife_1.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\onelife_2.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\onelife_3.jpg\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\real_state_app_1.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\real_state_app_2.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\real_state_app_3.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\real_state_app_4.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\real_state_app_5.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\starbuck_1.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\starbuck_2.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\voice_recorder_1.png\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\youtube_1.png\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <ProjectReference Include=\"..\\..\\Core\\MAUIsland.Core\\MAUIsland.Core.csproj\" />\n\t</ItemGroup>\n\n</Project>"
  },
  {
    "path": "src/Presentations/Windows/MAUIsland.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk.Razor\">\n\n\t<PropertyGroup>\n\t\t<TargetFrameworks Condition=\"$([MSBuild]::IsOSPlatform('windows'))\">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks>\n\t\t<OutputType>Exe</OutputType>\n\t\t<RootNamespace>MAUIsland</RootNamespace>\n\t\t<AssemblyName>MAUIsland</AssemblyName>\n\t\t<UseMaui>true</UseMaui>\n\t\t<SingleProject>true</SingleProject>\n\t\t<ImplicitUsings>enable</ImplicitUsings>\n\t\t<!--<UseRidGraph>true</UseRidGraph>-->\n\t\t<_MauiForceXamlCForDebug>false</_MauiForceXamlCForDebug>\n\n\t\t<!-- Display name -->\n\t\t<ApplicationTitle>MAUIsland</ApplicationTitle>\n\n\t\t<!-- App Identifier -->\n\t\t<ApplicationId>com.companyname.mauisland</ApplicationId>\n\t\t<ApplicationIdGuid>337d7a98-7b00-487e-88d9-3b1a317456c7</ApplicationIdGuid>\n\n\t\t<!-- Versions -->\n\t\t<ApplicationDisplayVersion>2.0</ApplicationDisplayVersion>\n\t\t<ApplicationVersion>2</ApplicationVersion>\n\n\t\t<TargetPlatformMinVersion Condition=\"$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'\">10.0.17763.0</TargetPlatformMinVersion>\n\t\t<GenerateAppInstallerFile>False</GenerateAppInstallerFile>\n\t\t<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>\n\t\t<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>\n\t\t<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>\n\t\t<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>\n\t\t<GenerateTestArtifacts>True</GenerateTestArtifacts>\n\t\t<AppInstallerUri>https://totechsintranet.blob.core.windows.net/installers</AppInstallerUri>\n\t\t<HoursBetweenUpdateChecks>1</HoursBetweenUpdateChecks>\n\t\t<GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate>\n\t\t<SignAssembly>False</SignAssembly>\n\t\t<PackageCertificateThumbprint>B90CE38E464032DB4247C5C0662ABB5BEEA5938C</PackageCertificateThumbprint>\n\t\t<Platforms>AnyCPU;x64</Platforms>\n\t</PropertyGroup>\n\n\t<ItemGroup>\n\t\t<RuntimeHostConfigurationOption Include=\"System.Runtime.Loader.UseRidGraph\" Value=\"true\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t\t<!-- App Icon -->\n\t\t<MauiIcon Include=\"Resources\\AppIcon\\appicon.svg\" ForegroundFile=\"Resources\\AppIcon\\appiconfg.svg\" BaseSize=\"1200, 1200\" Color=\"#512BD4\" />\n\t\t<MauiIcon Include=\"Resources\\AppIcon\\square44x44logo.svg\" />\n\n\t\t<!-- Splash Screen -->\n\t\t<MauiSplashScreen Include=\"Resources\\Splash\\splash.svg\" Color=\"#512BD4\" BaseSize=\"128,128\" />\n\n\t\t<!-- Images -->\n\t\t<MauiImage Include=\"Resources\\Images\\*\" />\n\t\t<MauiImage Update=\"Resources\\Images\\dotnet_bot.svg\" BaseSize=\"168,208\" />\n\n\t\t<!-- Custom Fonts -->\n\t\t<MauiFont Include=\"Resources\\Fonts\\*\" />\n\n\t\t<!-- Raw Assets (also remove the \"Resources\\Raw\" prefix) -->\n\t\t<MauiAsset Include=\"Resources\\Raw\\**\" LogicalName=\"%(RecursiveDir)%(Filename)%(Extension)\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <AndroidResource Remove=\"Features\\Settings\\Models\\**\" />\n\t  <Compile Remove=\"Features\\Settings\\Models\\**\" />\n\t  <EmbeddedResource Remove=\"Features\\Settings\\Models\\**\" />\n\t  <MauiCss Remove=\"Features\\Settings\\Models\\**\" />\n\t  <MauiXaml Remove=\"Features\\Settings\\Models\\**\" />\n\t  <None Remove=\"Features\\Settings\\Models\\**\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <Content Remove=\"appsettings.Development.json\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <None Remove=\"appsettings.Development.json\" />\n\t  <None Remove=\"Resources\\Images\\backgrounds\\*\" />\n\t  <None Remove=\"Resources\\Images\\books\\*\" />\n\t  <None Remove=\"Resources\\Images\\logos\\*\" />\n\t  <None Remove=\"Resources\\Images\\mockups\\*\" />\n\t  <None Remove=\"Resources\\Images\\showcases\\*\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t\t<PackageReference Include=\"Microsoft.AspNetCore.Components.WebView.Maui\" Version=\"9.0.10\" />\n\t\t<PackageReference Include=\"Microsoft.Maui.Controls\" Version=\"9.0.10\" />\n\t\t<PackageReference Include=\"Microsoft.AspNetCore.SignalR.Client\" Version=\"9.0.0\" />\n\t\t<PackageReference Include=\"Microsoft.Extensions.Configuration.Binder\" Version=\"9.0.0\" />\n\t\t<PackageReference Include=\"Microsoft.Extensions.Configuration.Json\" Version=\"9.0.0\" />\n\t\t<PackageReference Include=\"Microsoft.Extensions.Logging.Debug\" Version=\"9.0.0-rc.2.24473.5\" />\n\t\t<PackageReference Include=\"Newtonsoft.Json\" Version=\"13.0.3\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t\t<Folder Include=\"Features\\Gallery\\Pages\\Community\\Layouts\\\" />\n\t\t<Folder Include=\"Features\\Showcases\\Models\\\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t\t<Compile Update=\"Features\\Chat\\ContentViews\\ChatBubbleContentView.xaml.cs\">\n\t\t\t<DependentUpon>ChatBubbleContentView.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Chat\\Popups\\AuthenticatePopup.xaml.cs\">\n\t\t\t<DependentUpon>AuthenticatePopup.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\ContentViews\\BrandIconContentView.xaml.cs\">\n\t\t\t<DependentUpon>BrandIconContentView.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\ContentViews\\GithubCardContentView.xaml.cs\">\n\t\t\t<DependentUpon>GithubCardContentView.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Layouts\\AbsoluteLayout\\AbsoluteLayoutPage.xaml.cs\">\n\t\t  <DependentUpon>AbsoluteLayoutPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\Layouts\\AbsoluteLayout\\ContentViews\\DotNetRoadMap.xaml.cs\">\n\t\t  <DependentUpon>DotNetRoadMap.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\BuiltIn\\TabbedPage\\TabbedPages\\CommunityPage.xaml.cs\">\n\t\t\t<DependentUpon>CommunityPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\CardsByGroupPage.xaml.cs\">\n\t\t\t<DependentUpon>CardsByGroupPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Community\\Helpers\\OCR\\OCRPage.xaml.cs\">\n\t\t  <DependentUpon>OCRPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Community\\Helpers\\SQLite-net\\SQLiteNETPage.xaml.cs\">\n\t\t  <DependentUpon>SQLiteNETPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Community\\Controls\\DataGrid\\DataGridPage.xaml.cs\">\n\t\t  <DependentUpon>DataGridPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Material\\Controls\\MaterialProgressIndicator\\MaterialProgressIndicatorPage.xaml.cs\">\n\t\t  <DependentUpon>MaterialProgressIndicatorPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Material\\Controls\\MaterialRadioButton\\MaterialRadioButtonPage.xaml.cs\">\n\t\t  <DependentUpon>MaterialRadioButtonPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfMaps\\SfMapsViewPage.xaml.cs\">\n\t\t\t<DependentUpon>SfMapsViewPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Toolkit\\Layouts\\DockLayout\\DockLayoutPage.xaml.cs\">\n\t\t  <DependentUpon>DockLayoutPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Toolkit\\Layouts\\StateContainer\\StateContainerPage.xaml.cs\">\n\t\t  <DependentUpon>StateContainerPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Toolkit\\Layouts\\UniformLayout\\UniformItemsLayoutPage.xaml.cs\">\n\t\t  <DependentUpon>UniformItemsLayoutPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Pages\\Toolkit\\MediaElement\\MediaElementPage.xaml.cs\">\n\t\t\t<DependentUpon>MediaElementPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Gallery\\Syncfusion\\ListView\\Pages\\SyncfusionListViewPage.xaml.cs\">\n\t\t\t<DependentUpon>SyncfusionListViewPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Condition=\" '$(EnableDefaultCompileItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfListView\\SyncfusionListViewPage.xaml.cs\">\n\t\t\t<DependentUpon>SfListViewPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Home\\ContentViews\\ControlActivityCardContentView.xaml.cs\">\n\t\t\t<DependentUpon>ControlActivityCardContentView.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Home\\Pages\\HomePage.xaml.cs\">\n\t\t\t<DependentUpon>HomePage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Mockup\\ContentViews\\MockupPreviewItemContentView\\ScreenshotItemContentView.xaml.cs\">\n\t\t  <DependentUpon>ScreenshotItemContentView.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Mockup\\ContentViews\\MockupScreenShotsContentView\\DeviceListPageComponent.xaml.cs\">\n\t\t  <DependentUpon>DeviceListPageComponent.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Mockup\\Pages\\MockupPage.xaml.cs\">\n\t\t  <DependentUpon>MockupPage.xaml</DependentUpon>\n\t\t</Compile>\n\t\t<Compile Update=\"Features\\Showcases\\Pages\\ShowcasesPage.xaml.cs\">\n\t\t  <DependentUpon>ShowcasesPage.xaml</DependentUpon>\n\t\t</Compile>\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t\t<MauiXaml Update=\"Features\\Chat\\ContentViews\\ChatBubbleContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\ContentViews\\LoginFormContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\ContentViews\\RegisterFormContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\Pages\\ChatPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\ContentViews\\ChatPageDesktopLayout.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\ContentViews\\ChatPagePhoneLayout.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\ContentViews\\ChatPageTabletLayout.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\Popups\\AuthenticatePopup.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Chat\\Styles\\ChatStyles.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\ContentViews\\BrandIconContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\ContentViews\\ControlCardContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\ContentViews\\GithubCardContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\ContentViews\\MaterialUICardContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\ContentViews\\SyncfusionCardContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\MAUI\\Label\\LabelPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\BlazorWebView\\BlazorWebViewPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Border\\BorderPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Button\\ButtonPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\CheckBox\\CheckBoxPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\DatePicker\\DatePickerPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Editor\\EditorPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Entry\\EntryPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Layouts\\AbsoluteLayout\\AbsoluteLayoutPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Layouts\\AbsoluteLayout\\ContentViews\\DotNetRoadMap.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\TabbedPage\\TabbedPages\\CommunityPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\TabbedPage\\TabbedPages\\NewsPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Community\\Helpers\\OCR\\OCRPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Community\\Helpers\\SQLite-net\\SQLiteNETPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Community\\Controls\\DataGrid\\DataGridPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\GalleryPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Material\\Controls\\MaterialRadioButton\\MaterialRadioButtonPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Material\\Controls\\MaterialProgressIndicator\\MaterialProgressIndicatorPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfMaps\\SfMapsViewPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Toolkit\\Helpers\\RelayCommand\\RelayCommandPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Toolkit\\Layouts\\DockLayout\\DockLayoutPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Toolkit\\Layouts\\StateContainer\\StateContainerPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Toolkit\\Layouts\\UniformLayout\\UniformItemsLayoutPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\Toolkit\\MediaElement\\MediaElementPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Styles\\Colors.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Syncfusion\\ListView\\Pages\\SyncfusionListViewPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Home\\ContentViews\\ControlActivityCardContentView.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Mockup\\ContentViews\\AddButtonContentView\\AddButtonContentView.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Mockup\\ContentViews\\MockupPreviewItemContentView\\ScreenshotItemContentView.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Mockup\\ContentViews\\MockupScreenShotsContentView\\DeviceListPageComponent.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Mockup\\ContentViews\\ShowcaseInformationContentView\\ShowcaseInformationPageComponent.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Mockup\\Pages\\MockupPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\ResumesTemplate\\Pages\\ResumesPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Settings\\Pages\\SettingsPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\MAUIAllControlsPage.xaml\">\n\t\t\t<Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\ImageButton\\ImageButtonPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\ActivityIndicator\\ActivityIndicatorPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\SearchBar\\Pages\\SearchBarPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\TableView\\Pages\\TableViewPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\TimePicker\\Pages\\TimePickerPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\RefreshView\\Pages\\RefreshViewPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\CollectionView\\Pages\\CollectionViewPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\MenuBar\\Pages\\MenuBarPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Picker\\Pages\\PickerPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\CarouselView\\Pages\\CarouselViewPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Entry\\Pages\\EntryPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\DatePicker\\Pages\\DatePickerPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\CheckBox\\Pages\\CheckBoxPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Label\\Pages\\LabelPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Slider\\Pages\\SliderPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Stepper\\Pages\\StepperPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\ProgressBar\\Pages\\ProgressBarPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\RaditoButton\\Pages\\RadioButtonPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Button\\Pages\\ButtonPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\SwipeView\\Pages\\SwipeViewPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Switch\\Pages\\SwitchPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\IndicatorView\\Pages\\IndicatorViewPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\B\\Editor\\Pages\\EditorPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\CarouselView\\CarouselViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\CollectionView\\CollectionViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\IndicatorView\\IndicatorViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Label\\LabelPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\MenuBar\\MenuBarPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Picker\\PickerPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\ProgressBar\\ProgressBarPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\RadioButton\\RadioButtonPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\RefreshView\\RefreshViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\SearchBar\\SearchBarPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Slider\\SliderPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Stepper\\StepperPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\SwipeView\\SwipeViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\Switch\\SwitchPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\TimePicker\\Pages\\TimePickerPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\TableView\\TableViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Condition=\" '$(EnableDefaultXamlItems)' == 'true' \" Update=\"Features\\Gallery\\Pages\\Syncfusion\\SfListView\\SyncfusionListViewPage.xaml\">\n\t\t\t<SubType>Designer</SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Gallery\\Pages\\BuiltIn\\Xxxx\\XxxxPage.xaml\">\n\t\t\t<SubType></SubType>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"Features\\Showcases\\Pages\\ShowcasesPage.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t\t<MauiXaml Update=\"MAUIslandWindow.xaml\">\n\t\t  <Generator>MSBuild:Compile</Generator>\n\t\t</MauiXaml>\n\t</ItemGroup>\n\n\n\t<ItemGroup>\n\t\t<EmbeddedResource Include=\"appsettings.Development.json\">\n\t\t  <CopyToOutputDirectory>Always</CopyToOutputDirectory>\n\t\t</EmbeddedResource>\n\t\t<EmbeddedResource Include=\"Features\\Gallery\\Pages\\BuiltIn\\Helpers\\AppSettingsJson\\JsonFiles\\appsettings.json\">\n\t\t  <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>\n\t\t</EmbeddedResource>\n\t\t<EmbeddedResource Include=\"Resources\\Raw\\australia.shp\" />\n\t\t<EmbeddedResource Include=\"Resources\\Raw\\river.json\" />\n\t\t<EmbeddedResource Include=\"Resources\\Raw\\usa_state.shp\" />\n\t\t<EmbeddedResource Include=\"Resources\\Raw\\world-map.json\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t\t<MauiImage Include=\"Resources\\Images\\backgrounds\\*\" />\n\t\t<MauiImage Include=\"Resources\\Images\\banners\\*\" />\n\t\t<MauiImage Include=\"Resources\\Images\\books\\*\" />\n\t\t<MauiImage Include=\"Resources\\Images\\logos\\*\" />\n\t\t<MauiImage Include=\"Resources\\Images\\members\\*\" />\n\t\t<MauiImage Include=\"Resources\\Images\\memes\\*\" />\n\t\t<MauiImage Include=\"Resources\\Images\\mockups\\*\" />\n\t\t<MauiImage Include=\"Resources\\Images\\showcases\\*\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <Content Include=\"Blazor\\MainLayout.razor.css\">\n\t    <CustomToolNamespace>MAUIsland</CustomToolNamespace>\n\t  </Content>\n\t  <Content Include=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\BlazorWebView\\Blazor\\NavMenu.razor.css\">\n\t    <CustomToolNamespace>MAUIsland</CustomToolNamespace>\n\t  </Content>\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <MauiCss Include=\"wwwroot\\css\\app.css\" />\n\t  <MauiCss Include=\"wwwroot\\css\\bootstrap\\bootstrap.min.css\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <None Include=\"wwwroot\\css\\bootstrap\\bootstrap.min.css.map\" />\n\t  <None Include=\"wwwroot\\favicon.png\" />\n\t  <None Include=\"wwwroot\\index.html\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <ProjectReference Include=\"..\\..\\Core\\MAUIsland.Core\\MAUIsland.Core.csproj\" />\n\t</ItemGroup>\n\n\t<ItemGroup>\n\t  <Content Update=\"Blazor\\MainLayout.razor\">\n\t    <CustomToolNamespace>MAUIsland</CustomToolNamespace>\n\t  </Content>\n\t  <Content Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\BlazorWebView\\Blazor\\NavMenu.razor\">\n\t    <CustomToolNamespace>MAUIsland</CustomToolNamespace>\n\t  </Content>\n\t  <Content Update=\"Features\\Gallery\\Pages\\BuiltIn\\Controls\\BlazorWebView\\Blazor\\_Imports.razor\">\n\t    <ExcludeFromSingleFile>true</ExcludeFromSingleFile>\n\t  </Content>\n\t</ItemGroup>\n\n</Project>"
  },
  {
    "path": "src/Presentations/Windows/MAUIslandWindow.xaml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<Window xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n        xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n        xmlns:app=\"clr-namespace:MAUIsland\"\n        xmlns:settings=\"clr-namespace:MAUIsland.Settings\"\n        x:Class=\"MAUIsland.MAUIslandWindow\"\n    xmlns:skia=\"clr-namespace:SkiaSharp.Extended.UI.Controls;assembly=SkiaSharp.Extended.UI\"\n        x:DataType=\"settings:SettingsPageViewModel\">\n    <Window.Page>\n        <app:AppShell />\n    </Window.Page>\n    <Window.TitleBar>\n        <TitleBar x:Name=\"titleBar\"\n                  Title=\"{x:Binding Title}\"\n                  Subtitle=\"{x:Binding Subtitle} \"\n                  IsVisible=\"{x:Binding IsShownTitleBar}\"\n                  BackgroundColor=\"#512BD4\"\n                  ForegroundColor=\"White\"                  \n                  HeightRequest=\"48\">\n            <TitleBar.Content>\n                <skia:SKLottieView\n                    HeightRequest=\"32\"\n                    HorizontalOptions=\"Center\"\n                    RepeatCount=\"-1\"\n                    RepeatMode=\"Restart\"\n                    Source=\"totechs_logo.json\"\n                    VerticalOptions=\"Center\"\n                    WidthRequest=\"32\" />\n            </TitleBar.Content>\n        </TitleBar>\n    </Window.TitleBar>\n</Window>"
  },
  {
    "path": "src/Presentations/Windows/MAUIslandWindow.xaml.cs",
    "content": "using MAUIsland.Settings;\n\nnamespace MAUIsland;\n\npublic partial class MAUIslandWindow : Window\n{\n    #region [ Fields ]\n\n    private readonly SettingsPageViewModel viewModel;\n    #endregion\n\n    #region [ CTors ]\n\n    public MAUIslandWindow(SettingsPageViewModel vm)\n    {\n        InitializeComponent();\n\n        this.BindingContext = viewModel = vm;\n        _titleBar = this.TitleBar as TitleBar;\n        _titleBar.Icon = \"mauisland_logo.png\";\n        InitTitleBarTrail();\n    }\n    #endregion\n\n    #region [ Properties ]\n\n    TitleBar? _titleBar;\n    #endregion\n\n    #region [ Methods ]\n\n    void InitTitleBarTrail()\n    {\n        if (_titleBar is null)\n            return;\n\n        _titleBar.TrailingContent = new ImageButton()\n        {\n            CornerRadius = 20,\n            Margin = new() { Bottom = 2, Top = 2, Left = 2, Right = 2 },\n            Source = new FontImageSource()\n            {\n                FontFamily = FontNames.FluentSystemIconsRegular,\n                Size = 24,\n                Glyph = FluentUIIcon.Ic_fluent_settings_48_regular\n            },\n            Command = viewModel.NavigateCommand,\n            CommandParameter = AppRoutes.SettingsPage\n        };\n    }\n    #endregion\n}"
  },
  {
    "path": "src/Presentations/Windows/MauiProgram.cs",
    "content": "﻿using CommunityToolkit.Maui;\nusing CommunityToolkit.Maui.Alerts;\nusing CommunityToolkit.Maui.Core;\nusing CommunityToolkit.Maui.Storage;\nusing MAUIsland.Home;\nusing MAUIsland.ResumesTemplate;\nusing Microsoft.AspNetCore.Components.WebView.Maui;\nusing Microsoft.AspNetCore.Components;\nusing Microsoft.AspNetCore.SignalR.Client;\nusing Microsoft.Extensions.Configuration;\nusing Microsoft.Extensions.Logging;\nusing Refit;\nusing Syncfusion.Maui.Core.Hosting;\nusing System.Reflection;\nusing ZXing.Net.Maui.Controls;\n\nnamespace MAUIsland;\n\npublic static class MauiProgram\n{\n\n    public static MauiApp CreateMauiApp()\n    {\n\n        var isLocal = true;\n\n        var builder = MauiApp.CreateBuilder();\n\n        builder\n            .UseMauiCommunityToolkitCore()\n            .UseMauiCommunityToolkitMediaElement()\n            .UseMauiCommunityToolkit(options => options.SetShouldEnableSnackbarOnWindows(true))\n#if DEBUG\n            .RegisterAppSettingsFromJsonFile()\n#else\n            .RegisterAppSettingsFromCode()\n#endif\n            .UseMauiApp<App>()\n            .ConfigureFonts(fonts =>\n            {\n                fonts.AddFont(\"OpenSans-Regular.ttf\", \"OpenSansRegular\");\n                fonts.AddFont(\"OpenSans-Semibold.ttf\", \"OpenSansSemibold\");\n                fonts.AddFont(\"FluentSystemIcons-Regular.ttf\", FontNames.FluentSystemIconsRegular);\n            })\n            .ConfigureEssentials(essentials =>\n            {\n                essentials.UseVersionTracking();\n            })\n            .RegisterServices()\n            .RegisterPages()\n            .RegisterControlInfos()\n            .RegisterPopups()\n            .RegisterRefitApi(isLocal)\n            .RegisterRealTimeConnection(isLocal)\n            .ConfigureSyncfusionCore()\n            .UseBarcodeReader();\n\n\n#if DEBUG\n        builder.Logging.AddDebug();\n        builder.Services.AddBlazorWebViewDeveloperTools();\n\n        builder.Services.AddLogging(logging =>\n        {\n            logging.AddFilter(\"Microsoft.AspNetCore.Components.WebView\", LogLevel.Trace);\n            logging.AddDebug();\n        });\n#endif\n\n\n        var serviceProvider = builder.Services.BuildServiceProvider();\n        var appSettings = serviceProvider.GetRequiredService<AppSettings>();\n\n        builder.InitCore(gitHubFeatureAccessToken: appSettings.GitHubAccessToken);\n\n        //Temp way for blazor web view, razor and xaml shared states only work with singleton currently\n        builder.Services.AddSingleton<BlazorWebViewPageViewModel>();\n        builder.Services.AddSingleton<ResumeDetailPageViewModel>();\n\n        return builder.Build();\n    }\n\n    static MauiAppBuilder RegisterPopups(this MauiAppBuilder builder)\n    {\n        builder.Services.AddPopup<AuthenticatePopup, AuthenticatePopupViewModel>(AppRoutes.SignUp);\n        return builder;\n    }\n\n    static MauiAppBuilder RegisterRefitApi(this MauiAppBuilder builder, bool isLocal)\n    {\n        builder.Services.AddRefitClient<IIntranetAuthenticationRefit>()\n                        .ConfigureHttpClient(c => c.BaseAddress = new Uri(!isLocal\n                                                                          ? \"https://intranetcloud.azurewebsites.net/api\"\n                                                                          : \"https://localhost:44371/api\"));\n\n        builder.Services.AddRefitClient<IIntranetUserRefit>()\n                        .ConfigureHttpClient(c => c.BaseAddress = new Uri(!isLocal\n                                                                          ? \"https://intranetcloud.azurewebsites.net/api\"\n                                                                          : \"https://localhost:44371/api\"));\n\n        builder.Services.AddRefitClient<IIntranetConversationRefit>()\n                        .ConfigureHttpClient(c => c.BaseAddress = new Uri(!isLocal\n                                                                          ? \"https://intranetcloud.azurewebsites.net/api\"\n                                                                          : \"https://localhost:44371/api\"));\n        return builder;\n    }\n\n    static MauiAppBuilder RegisterControlInfos(this MauiAppBuilder builder)\n    {\n        var assemblies = new List<Assembly>\n    {\n        typeof(IGalleryCardInfo).Assembly, // Assuming IGalleryCardInfo is now in MAUIsland.Core\n    };\n\n        // Explicitly add the MAUIsland.Core assembly, ensuring it's considered.\n        var coreAssembly = AppDomain.CurrentDomain.GetAssemblies()\n                                                  .FirstOrDefault(x => x.GetName().Name == \"MAUIsland.Core\");\n        if (coreAssembly != null)\n        {\n            assemblies.Add(coreAssembly);\n        }\n\n        var allTypes = assemblies.SelectMany(assembly => assembly.GetTypes());\n        var galleryCardInfoTypes = allTypes.Where(type => !type.IsAbstract && !type.IsInterface && type.IsAssignableTo(typeof(IGalleryCardInfo)));\n        var distinctGalleryCardInfoTypes = galleryCardInfoTypes.Distinct();\n        var galleryCardInfoTypeList = distinctGalleryCardInfoTypes.ToList();\n\n        foreach (var controlInfoType in galleryCardInfoTypeList)\n        {\n            builder.Services.AddSingleton(typeof(IGalleryCardInfo), controlInfoType);\n        }\n\n        return builder;\n    }\n\n    static MauiAppBuilder RegisterServices(this MauiAppBuilder builder)\n    {\n        builder.Services.AddSingleton<IMrIncreadibleMemeService, MrIncreadibleMemeService>();\n        builder.Services.AddSingleton<IHomeService, HomeService>();\n        builder.Services.AddSingleton<IAppNavigator, AppNavigator>();\n        builder.Services.AddSingleton<IChatHubService, SignalRChatHubService>();\n        builder.Services.AddSingleton<ISecureStorageService, SecureStorageService>();\n        builder.Services.AddSingleton<IUserServices, RefitIntranetUserService>();\n        builder.Services.AddSingleton<IConversationService, RefitIntranetConversationService>();\n        builder.Services.AddSingleton<IAuthenticationServices, RefitAuthenticationService>();\n\n        builder.Services.AddSingleton<IAppInfo>(AppInfo.Current);\n        builder.Services.AddSingleton<IFolderPicker>(FolderPicker.Default);\n        builder.Services.AddMauiBlazorWebView();\n\n        builder.Configuration.GetSection(\"AppSettings\");\n\n        builder.Services.AddSingleton(_ =>\n        {\n            var appSettings = ServiceHelper.GetService<AppSettings>();\n\n            var client = new DiscordRPC.DiscordRpcClient(appSettings.DiscordApplicationId);\n\n            //Set the logger\n            client.Logger = new DiscordRPC.Logging.ConsoleLogger() { Level = DiscordRPC.Logging.LogLevel.Warning };\n\n            //Subscribe to events\n            client.OnReady += (sender, e) =>\n            {\n                Console.WriteLine(\"Received Ready from user {0}\", e.User.Username);\n            };\n\n            client.OnPresenceUpdate += (sender, e) =>\n            {\n                Console.WriteLine(\"Received Update! {0}\", e.Presence);\n            };\n\n            //Connect to the RPC\n            client.Initialize();\n\n            return client;\n        });\n\n\n        return builder;\n    }\n\n    static MauiAppBuilder RegisterRealTimeConnection(this MauiAppBuilder builder, bool isLocal)\n    {\n        builder.Services.AddScoped<HubConnection>((_) =>\n        {\n            var secureStorageService = ServiceHelper.GetService<ISecureStorageService>();\n\n            if (secureStorageService is null) return null;\n\n            var accessToken = secureStorageService.ReadValueAsync(\"accesstoken\")\n                                                  .GetAwaiter().GetResult();\n\n            if (accessToken is null) return null;\n\n            return isLocal ? new HubConnectionBuilder()\n                                .WithAutomaticReconnect()\n                                .WithUrl(ChatConstants.LocalBaseUrl, options =>\n                                {\n                                    options.AccessTokenProvider = () =>\n                                    {\n                                        return Task.FromResult(accessToken);\n                                    };\n\n                                }).Build()\n                            : new HubConnectionBuilder()\n                                .WithAutomaticReconnect()\n                                .WithUrl(ChatConstants.BaseUrl, options =>\n                                {\n                                    options.AccessTokenProvider = () =>\n                                    {\n                                        return Task.FromResult(accessToken);\n                                    };\n                                }).Build();\n        });\n\n        return builder;\n    }\n\n    static MauiAppBuilder RegisterPages(this MauiAppBuilder builder, string pattern = \"Page\")\n    {\n        var assemblies = new Assembly[] { typeof(MauiProgram).Assembly };\n        var coreAssemblies = AppDomain.CurrentDomain.GetAssemblies().Single(x => x.GetName().Name == \"MAUIsland.Core\");\n        var pageTypes = assemblies.SelectMany(a => a.GetTypes().Where(a => a.Name.EndsWith(pattern) && !a.IsAbstract && !a.IsInterface));\n        foreach (var pageType in pageTypes)\n        {\n            var viewModelFullName = $\"{pageType.FullName}ViewModel\";\n            var viewModelType = Type.GetType(viewModelFullName);\n\n            if (viewModelType is null)\n            {\n                var coreViewModelFullName = $\"MAUIsland.Core.{pageType.Name}ViewModel\";\n                var coreViewModelType = coreAssemblies.GetType(coreViewModelFullName);\n\n                if (coreViewModelType is null)\n                    continue;\n\n                builder.Services.AddTransient(pageType);\n                builder.Services.AddTransient(coreAssemblies.GetType(coreViewModelFullName));\n            }\n            else\n            {\n                builder.Services.AddTransient(pageType);\n\n                if (viewModelType is null)\n                    continue;\n\n                builder.Services.AddTransient(viewModelType);\n            }\n\n\n            if (pageType.IsAssignableTo(typeof(IGalleryPage)))\n                Routing.RegisterRoute(pageType.FullName, pageType);\n\n        }\n\n        return builder;\n    }\n\n    static MauiAppBuilder RegisterAppSettingsFromJsonFile(this MauiAppBuilder builder)\n    {\n        var assembly = Assembly.GetExecutingAssembly();\n        using var stream = assembly.GetManifestResourceStream(\"MAUIsland.appsettings.Development.json\");\n        using var appsettingspagestream = assembly.GetManifestResourceStream(\"MAUIsland.Features.Gallery.Pages.BuiltIn.Helpers.AppSettingsJson.JsonFiles.appsettings.json\");\n\n        if (stream is not null && appsettingspagestream is not null)\n        {\n            var systemConfig = new ConfigurationBuilder()\n                        .AddJsonStream(stream)\n                        .Build();\n\n            var appSettingsFeatureConfig = new ConfigurationBuilder()\n                        .AddJsonStream(appsettingspagestream)\n                        .Build();\n\n            builder.Configuration.AddConfiguration(systemConfig);\n            builder.Configuration.AddConfiguration(appSettingsFeatureConfig);\n\n            var systemSettings = new AppSettings();\n            systemConfig.GetSection(\"AppSettings\").Bind(systemSettings);\n            builder.Services.AddSingleton(systemSettings);\n        }\n        else\n        {\n            var options = new SnackbarOptions\n            {\n                BackgroundColor = AppColors.Purple,\n                TextColor = AppColors.White,\n                ActionButtonTextColor = AppColors.Pink,\n                CornerRadius = new CornerRadius(Dimensions.ButtonCornerRadius),\n                CharacterSpacing = 0.5\n            };\n            var message = \"Can't find app settings file\";\n\n            var snackbar = Snackbar.Make(message, null, \"OK\", TimeSpan.FromSeconds(5), options);\n            snackbar.Show();\n        }\n\n        return builder;\n    }\n\n    static IServiceCollection AddPopup<TPopup, TViewModel>(this IServiceCollection services, string name)\n    where TPopup : BasePopup where TViewModel : BaseViewModel\n    {\n        Routing.RegisterRoute(name, typeof(TPopup));\n        services.AddTransient<TPopup>();\n        services.AddTransient<TViewModel>();\n        return services;\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Platforms/Windows/AcrylicWindow.cs",
    "content": "﻿using Microsoft.UI.Composition.SystemBackdrops;\nusing Microsoft.UI.Xaml;\nusing WinRT;\n\nnamespace MAUIsland;\npublic class AcrylicWindow : Microsoft.Maui.Controls.Window\n{\n    private Microsoft.UI.Xaml.Window? appWindow;\n    private WindowsSystemDispatcherQueueHelper? m_wsdqHelper; // See separate sample below for implementation\n    private DesktopAcrylicController? m_acrylicController;\n    private SystemBackdropConfiguration? m_configurationSource;\n\n    /// <inheritdoc/>\n    protected override void OnHandlerChanged()\n    {\n        base.OnHandlerChanged();\n        this.SetupWindow();\n    }\n\n    private void SetupWindow()\n    {\n        var handler = this.Handler as Microsoft.Maui.Handlers.WindowHandler;\n        if (handler?.PlatformView is not Microsoft.UI.Xaml.Window window)\n        {\n            return;\n        }\n\n        this.appWindow = window;\n        this.TrySetMicaBackdrop();\n    }\n\n    private bool TrySetMicaBackdrop()\n    {\n        if (this.appWindow is null)\n        {\n            return false;\n        }\n\n        if (!MicaController.IsSupported())\n        {\n            return false;\n        }\n\n        this.m_wsdqHelper ??= new WindowsSystemDispatcherQueueHelper();\n        this.m_wsdqHelper.EnsureWindowsSystemDispatcherQueueController();\n\n        // Hooking up the policy object\n        this.m_configurationSource = new SystemBackdropConfiguration();\n        this.appWindow.Activated += this.AppWindow_Activated;\n        this.appWindow.Closed += this.AppWindow_Closed;\n\n        // Initial configuration state.\n        this.m_configurationSource.IsInputActive = true;\n\n        if (this.appWindow.Content is FrameworkElement { ActualTheme: var actualTheme })\n        {\n            this.m_configurationSource.Theme = actualTheme switch\n            {\n                ElementTheme.Dark => SystemBackdropTheme.Dark,\n                ElementTheme.Light => SystemBackdropTheme.Light,\n                ElementTheme.Default => SystemBackdropTheme.Default,\n                _ => SystemBackdropTheme.Default,\n            };\n        }\n\n        this.m_acrylicController = new DesktopAcrylicController();\n\n        // Enable the system backdrop.\n        // Note: Be sure to have \"using WinRT;\" to support the Window.As<...>() call.\n        this.m_acrylicController.AddSystemBackdropTarget(this.appWindow.As<Microsoft.UI.Composition.ICompositionSupportsSystemBackdrop>());\n        this.m_acrylicController.SetSystemBackdropConfiguration(this.m_configurationSource);\n\n        return true;\n    }\n\n    private void AppWindow_Closed(object sender, WindowEventArgs args)\n    {\n        // Make sure any Mica/Acrylic controller is disposed so it doesn't try to\n        // use this closed window.\n        if (this.m_acrylicController != null)\n        {\n            this.m_acrylicController.Dispose();\n            this.m_acrylicController = null;\n        }\n\n        if (this.appWindow is not null)\n        {\n            this.appWindow.Activated -= this.AppWindow_Activated;\n        }\n\n        this.m_configurationSource = null;\n    }\n\n    private void AppWindow_Activated(object sender, WindowActivatedEventArgs args)\n    {\n        if (this.appWindow is null || this.m_configurationSource is null)\n        {\n            return;\n        }\n\n        this.m_configurationSource.IsInputActive = args.WindowActivationState != WindowActivationState.Deactivated;\n\n        if (this.appWindow.Content is FrameworkElement frameworkElement)\n        {\n            frameworkElement.ActualThemeChanged += (sender, args) =>\n            {\n                this.m_configurationSource.Theme = frameworkElement.ActualTheme switch\n                {\n                    ElementTheme.Dark => SystemBackdropTheme.Dark,\n                    ElementTheme.Light => SystemBackdropTheme.Light,\n                    ElementTheme.Default => SystemBackdropTheme.Default,\n                    _ => SystemBackdropTheme.Default,\n                };\n            };\n        }\n    }\n}\n\n"
  },
  {
    "path": "src/Presentations/Windows/Platforms/Windows/App.xaml",
    "content": "﻿<maui:MauiWinUIApplication\n    x:Class=\"MAUIsland.WinUI.App\"\n    xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n    xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\"\n    xmlns:local=\"using:MAUIsland.WinUI\"\n    xmlns:maui=\"using:Microsoft.Maui\" />\n"
  },
  {
    "path": "src/Presentations/Windows/Platforms/Windows/App.xaml.cs",
    "content": "﻿namespace MAUIsland.WinUI;\n\npublic partial class App : MauiWinUIApplication\n{\n    public App()\n    {\n        this.InitializeComponent();\n    }\n\n    protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();\n}\n\n"
  },
  {
    "path": "src/Presentations/Windows/Platforms/Windows/MicaWindow.cs",
    "content": "﻿// <copyright file=\"MicaWindow.cs\" company=\"Drastic Actions\">\n// Copyright (c) Drastic Actions. All rights reserved.\n// </copyright>\n\nusing MAUIsland;\nusing Microsoft.UI.Composition.SystemBackdrops;\nusing Microsoft.UI.Xaml;\nusing WinRT;\n\nnamespace MAUIsland;    \n\n/// <summary>\n/// Mica Window.\n/// </summary>\npublic class MicaWindow : Microsoft.Maui.Controls.Window\n{\n    private Microsoft.UI.Xaml.Window? appWindow;\n    private WindowsSystemDispatcherQueueHelper? m_wsdqHelper; // See separate sample below for implementation\n    private MicaController? m_micaController;\n    private SystemBackdropConfiguration? m_configurationSource;\n\n    /// <inheritdoc/>\n    protected override void OnHandlerChanged()\n    {\n        base.OnHandlerChanged();\n        this.SetupWindow();\n    }\n\n    private void SetupWindow()\n    {\n        var handler = this.Handler as Microsoft.Maui.Handlers.WindowHandler;\n        if (handler?.PlatformView is not Microsoft.UI.Xaml.Window window)\n        {\n            return;\n        }\n\n        this.appWindow = window;\n        this.TrySetMicaBackdrop();\n    }\n\n    private bool TrySetMicaBackdrop()\n    {\n        if (this.appWindow is null)\n        {\n            return false;\n        }\n\n        if (!MicaController.IsSupported())\n        {\n            return false;\n        }\n\n        this.m_wsdqHelper ??= new WindowsSystemDispatcherQueueHelper();\n        this.m_wsdqHelper.EnsureWindowsSystemDispatcherQueueController();\n\n        // Hooking up the policy object\n        this.m_configurationSource = new SystemBackdropConfiguration();\n        this.appWindow.Activated += this.AppWindow_Activated;\n        this.appWindow.Closed += this.AppWindow_Closed;\n\n        // Initial configuration state.\n        this.m_configurationSource.IsInputActive = true;\n\n        if (this.appWindow.Content is FrameworkElement { ActualTheme: var actualTheme })\n        {\n            this.m_configurationSource.Theme = actualTheme switch\n            {\n                ElementTheme.Dark => SystemBackdropTheme.Dark,\n                ElementTheme.Light => SystemBackdropTheme.Light,\n                ElementTheme.Default => SystemBackdropTheme.Default,\n                _ => SystemBackdropTheme.Default,\n            };\n        }\n\n        this.m_micaController = new MicaController();\n\n        // Enable the system backdrop.\n        // Note: Be sure to have \"using WinRT;\" to support the Window.As<...>() call.\n        this.m_micaController.AddSystemBackdropTarget(this.appWindow.As<Microsoft.UI.Composition.ICompositionSupportsSystemBackdrop>());\n        this.m_micaController.SetSystemBackdropConfiguration(this.m_configurationSource);\n\n        return true;\n    }\n\n    private void AppWindow_Closed(object sender, WindowEventArgs args)\n    {\n        // Make sure any Mica/Acrylic controller is disposed so it doesn't try to\n        // use this closed window.\n        if (this.m_micaController != null)\n        {\n            this.m_micaController.Dispose();\n            this.m_micaController = null;\n        }\n\n        if (this.appWindow is not null)\n        {\n            this.appWindow.Activated -= this.AppWindow_Activated;\n        }\n\n        this.m_configurationSource = null;\n    }\n\n    private void AppWindow_Activated(object sender, WindowActivatedEventArgs args)\n    {\n        if (this.appWindow is null || this.m_configurationSource is null)\n        {\n            return;\n        }\n\n        this.m_configurationSource.IsInputActive = args.WindowActivationState != WindowActivationState.Deactivated;\n\n        if (this.appWindow.Content is FrameworkElement frameworkElement)\n        {\n            frameworkElement.ActualThemeChanged += (sender, args) =>\n            {\n                this.m_configurationSource.Theme = frameworkElement.ActualTheme switch\n                {\n                    ElementTheme.Dark => SystemBackdropTheme.Dark,\n                    ElementTheme.Light => SystemBackdropTheme.Light,\n                    ElementTheme.Default => SystemBackdropTheme.Default,\n                    _ => SystemBackdropTheme.Default,\n                };\n            };\n        }\n    }\n}"
  },
  {
    "path": "src/Presentations/Windows/Platforms/Windows/Package.appxmanifest",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Package\n  xmlns=\"http://schemas.microsoft.com/appx/manifest/foundation/windows10\"\n  xmlns:uap=\"http://schemas.microsoft.com/appx/manifest/uap/windows10\"\n  xmlns:rescap=\"http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities\"   \n  xmlns:com=\"http://schemas.microsoft.com/appx/manifest/com/windows10\"\n  xmlns:desktop=\"http://schemas.microsoft.com/appx/manifest/desktop/windows10\"\n  IgnorableNamespaces=\"uap rescap com desktop\">\n\n  <Identity Name=\"47268StrypperVandelJason.MAUIsland\" \n\t\t\tPublisher=\"CN=C5255E29-81AE-4129-9BC3-9E2C461A195A\" \n\t\t\tVersion=\"2.0.7.0\" />\n\n  <Properties>\n    <DisplayName>MAUIsland</DisplayName>\n    <PublisherDisplayName>Strypper Vandel Jason</PublisherDisplayName>\n    <Logo>$placeholder$.png</Logo>\n  </Properties>\n\n  <Dependencies>\n    <TargetDeviceFamily Name=\"Windows.Universal\" MinVersion=\"10.0.17763.0\" MaxVersionTested=\"10.0.19041.0\" />\n    <TargetDeviceFamily Name=\"Windows.Desktop\" MinVersion=\"10.0.17763.0\" MaxVersionTested=\"10.0.19041.0\" />\n  </Dependencies>\n\n  <Resources>\n    <Resource Language=\"x-generate\" />\n  </Resources>\n\n  <Applications>\n    <Application Id=\"App\" Executable=\"$targetnametoken$.exe\" EntryPoint=\"$targetentrypoint$\">\n      <uap:VisualElements\n        DisplayName=\"MAUIsland\"\n        Description=\"$placeholder$\"\n        Square150x150Logo=\"$placeholder$.png\"\n        Square44x44Logo=\"$placeholder$.png\"\n        BackgroundColor=\"transparent\">\n        <uap:DefaultTile Square71x71Logo=\"$placeholder$.png\" Wide310x150Logo=\"$placeholder$.png\" Square310x310Logo=\"$placeholder$.png\" />\n        <uap:SplashScreen Image=\"$placeholder$.png\" />\n        <uap:InitialRotationPreference>\n          <uap:Rotation Preference=\"portraitFlipped\"/>\n          <uap:Rotation Preference=\"portrait\"/>\n          <uap:Rotation Preference=\"landscape\"/></uap:InitialRotationPreference>\n      </uap:VisualElements>\n\t<Extensions>\n\t\t<desktop:Extension Category=\"windows.toastNotificationActivation\">\n\t\t\t<desktop:ToastNotificationActivation ToastActivatorCLSID=\"c3e1a5f6-8d4b-4e7a-9c1e-2b8c3d0f9a7f\" />\n\t\t</desktop:Extension>\n\t\t<com:Extension Category=\"windows.comServer\">\n\t\t\t<com:ComServer>\n\t\t\t\t<com:ExeServer Executable=\"MAUIsland\\MAUIsland.exe\" DisplayName=\"$targetnametoken$\" Arguments=\"----AppNotificationActivated:\">\n\t\t\t\t\t<!-- Example path to executable: CommunityToolkit.Maui.Sample\\CommunityToolkit.Maui.Sample.exe -->\n\t\t\t\t\t<com:Class Id=\"c3e1a5f6-8d4b-4e7a-9c1e-2b8c3d0f9a7f\" />\n\t\t\t\t</com:ExeServer>\n\t\t\t</com:ComServer>\n\t\t</com:Extension>\n\n\t</Extensions>\n    </Application>\n  </Applications>\n\n  <Capabilities>\n    <rescap:Capability Name=\"runFullTrust\" />\n    <Capability Name=\"internetClient\"/>\n    <Capability Name=\"internetClientServer\"/>\n  </Capabilities>\n\n\n</Package>\n"
  },
  {
    "path": "src/Presentations/Windows/Platforms/Windows/WindowsSystemDispatcherQueueHelper.cs",
    "content": "﻿using System.Runtime.InteropServices;\nusing Windows.System;\n\nnamespace MAUIsland;\n\n\n/// <summary>\n/// Windows System Dispatcher Queue Helper.\n/// </summary>\ninternal class WindowsSystemDispatcherQueueHelper\n{\n    [DllImport(\"CoreMessaging.dll\")]\n    private static extern int CreateDispatcherQueueController([In] DispatcherQueueOptions options, [In, Out, MarshalAs(UnmanagedType.IUnknown)] ref object? dispatcherQueueController);\n\n    private object? m_dispatcherQueueController = null;\n\n    [StructLayout(LayoutKind.Sequential)]\n    private struct DispatcherQueueOptions\n    {\n        internal int dwSize;\n        internal int threadType;\n        internal int apartmentType;\n    }\n\n    public void EnsureWindowsSystemDispatcherQueueController()\n    {\n        if (DispatcherQueue.GetForCurrentThread() != null)\n        {\n            // one already exists, so we'll just use it.\n            return;\n        }\n\n        if (this.m_dispatcherQueueController == null)\n        {\n            DispatcherQueueOptions options;\n            options.dwSize = Marshal.SizeOf(typeof(DispatcherQueueOptions));\n            options.threadType = 2;    // DQTYPE_THREAD_CURRENT\n            options.apartmentType = 2; // DQTAT_COM_STA\n\n            CreateDispatcherQueueController(options, ref this.m_dispatcherQueueController);\n        }\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/Platforms/Windows/app.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<assembly manifestVersion=\"1.0\" xmlns=\"urn:schemas-microsoft-com:asm.v1\">\n  <assemblyIdentity version=\"1.0.0.0\" name=\"MAUIsland.WinUI.app\"/>\n\n  <application xmlns=\"urn:schemas-microsoft-com:asm.v3\">\n    <windowsSettings>\n      <!-- The combination of below two tags have the following effect:\n           1) Per-Monitor for >= Windows 10 Anniversary Update\n           2) System < Windows 10 Anniversary Update\n      -->\n      <dpiAware xmlns=\"http://schemas.microsoft.com/SMI/2005/WindowsSettings\">true/PM</dpiAware>\n      <dpiAwareness xmlns=\"http://schemas.microsoft.com/SMI/2016/WindowsSettings\">PerMonitorV2, PerMonitor</dpiAwareness>\n    </windowsSettings>\n  </application>\n</assembly>\n"
  },
  {
    "path": "src/Presentations/Windows/Properties/launchSettings.json",
    "content": "{\n  \"profiles\": {\n    \"Windows Machine\": {\n      \"commandName\": \"MsixPackage\",\n      \"nativeDebugging\": false\n    }\n  }\n}"
  },
  {
    "path": "src/Presentations/Windows/Resources/Raw/AboutAssets.txt",
    "content": "﻿Any raw assets you want to be deployed with your application can be placed in\nthis directory (and child directories). Deployment of the asset to your application\nis automatically handled by the following `MauiAsset` Build Action within your `.csproj`.\n\n\t<MauiAsset Include=\"Resources\\Raw\\**\" LogicalName=\"%(RecursiveDir)%(Filename)%(Extension)\" />\n\nThese files will be deployed with you package and will be accessible using Essentials:\n\n\tasync Task LoadMauiAsset()\n\t{\n\t\tusing var stream = await FileSystem.OpenAppPackageFileAsync(\"AboutAssets.txt\");\n\t\tusing var reader = new StreamReader(stream);\n\n\t\tvar contents = reader.ReadToEnd();\n\t}\n"
  },
  {
    "path": "src/Presentations/Windows/Resources/Raw/dotnetbot.json",
    "content": "{\"v\":\"4.8.0\",\"meta\":{\"g\":\"LottieFiles AE \",\"a\":\"\",\"k\":\"\",\"d\":\"\",\"tc\":\"\"},\"fr\":60,\"ip\":0,\"op\":179,\"w\":600,\"h\":600,\"nm\":\"Lottie_Main_Comp\",\"ddd\":0,\"assets\":[],\"layers\":[{\"ddd\":0,\"ind\":1,\"ty\":4,\"nm\":\"Eye\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[385.679,254.648,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[221.39,160.615,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.667,0.667,0.667],\"y\":[1,1,1]},\"o\":{\"x\":[0.333,0.333,0.333],\"y\":[0,0,0]},\"t\":30,\"s\":[133.33,133.33,100]},{\"i\":{\"x\":[0.667,0.667,0.667],\"y\":[1,1,1]},\"o\":{\"x\":[0.333,0.333,0.333],\"y\":[0,0,0]},\"t\":45,\"s\":[133.33,0,100]},{\"i\":{\"x\":[0.667,0.667,0.667],\"y\":[1,1,1]},\"o\":{\"x\":[0.333,0.333,0.333],\"y\":[0,0,0]},\"t\":60,\"s\":[133.33,133.33,100]},{\"i\":{\"x\":[0.667,0.667,0.667],\"y\":[1,1,1]},\"o\":{\"x\":[0.333,0.333,0.333],\"y\":[0,0,0]},\"t\":120,\"s\":[133.33,133.33,100]},{\"i\":{\"x\":[0.667,0.667,0.667],\"y\":[1,1,1]},\"o\":{\"x\":[0.333,0.333,0.333],\"y\":[0,0,0]},\"t\":135,\"s\":[133.33,0,100]},{\"t\":150,\"s\":[133.33,133.33,100]}],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[-2.23,-0.19],[0.04,-3.77],[0.44,-1.67],[2.09,2.07],[-3.02,3.04]],\"o\":[[1.7,-1.7],[1.43,2.53],[-0.02,1.93],[-2.63,0.78],[-3.04,-3.02],[0,0]],\"v\":[[221.25,153.21],[227.45,150.94],[229.69,160.68],[228.98,166.11],[221.3,164.19],[221.25,153.21]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.5,0.40000000596,0.879999995232,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[4.59,0.05],[0.08,-7.71],[-4.58,-0.05],[-0.08,7.71]],\"o\":[[0.08,-7.71],[-4.58,-0.05],[-0.08,7.71],[4.58,0.05],[0,0]],\"v\":[[229.69,160.7],[221.53,146.66],[213.09,160.53],[221.24,174.57],[229.69,160.7]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.319999992847,0.170000001788,0.829999983311,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":2,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"surface23549\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":245,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":2,\"ty\":4,\"nm\":\"Eye\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[296.535,255.101,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[154.53,160.955,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.667,0.667,0.667],\"y\":[1,1,1]},\"o\":{\"x\":[0.333,0.333,0.333],\"y\":[0,0,0]},\"t\":30,\"s\":[133.33,133.33,100]},{\"i\":{\"x\":[0.667,0.667,0.667],\"y\":[1,1,1]},\"o\":{\"x\":[0.333,0.333,0.333],\"y\":[0,0,0]},\"t\":45,\"s\":[133.33,0,100]},{\"i\":{\"x\":[0.667,0.667,0.667],\"y\":[1,1,1]},\"o\":{\"x\":[0.333,0.333,0.333],\"y\":[0,0,0]},\"t\":60,\"s\":[133.33,133.33,100]},{\"i\":{\"x\":[0.667,0.667,0.667],\"y\":[1,1,1]},\"o\":{\"x\":[0.333,0.333,0.333],\"y\":[0,0,0]},\"t\":120,\"s\":[133.33,133.33,100]},{\"i\":{\"x\":[0.667,0.667,0.667],\"y\":[1,1,1]},\"o\":{\"x\":[0.333,0.333,0.333],\"y\":[0,0,0]},\"t\":135,\"s\":[133.33,0,100]},{\"t\":150,\"s\":[133.33,133.33,100]}],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[-2.22,-0.18],[-0.07,-3.49],[0.49,-1.85],[2.08,2.05],[-3.02,3.04]],\"o\":[[1.68,-1.7],[1.32,2.43],[0.04,2.18],[-2.62,0.76],[-3.05,-3.01],[0,0]],\"v\":[[154.43,153.97],[160.62,151.7],[162.83,160.79],[162.12,166.88],[154.48,164.94],[154.43,153.97]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.5,0.40000000596,0.879999995232,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0.15,7.71],[4.59,-0.09],[-0.15,-7.71],[-4.59,0.09]],\"o\":[[4.58,-0.09],[-0.15,-7.71],[-4.58,0.09],[0.15,7.71],[0,0]],\"v\":[[154.8,174.91],[162.83,160.79],[154.25,147],[146.23,161.12],[154.8,174.91]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.319999992847,0.170000001788,0.829999983311,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":2,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"surface23549\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":245,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":3,\"ty\":4,\"nm\":\"Ball\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[185.644,267.308,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[71.36,170.11,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[133.33,133.33,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,10.77],[10.76,0],[0,-10.76],[-10.77,0]],\"o\":[[10.76,0],[0,-10.76],[-10.77,0],[0,10.77],[0,0]],\"v\":[[71.36,189.6],[90.85,170.11],[71.36,150.62],[51.87,170.11],[71.36,189.6]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"gf\",\"o\":{\"a\":0,\"k\":100,\"ix\":10},\"r\":1,\"bm\":0,\"g\":{\"p\":3,\"k\":{\"a\":0,\"k\":[0,0.568,0.473,0.894,0.5,0.447,0.329,0.855,1,0.325,0.186,0.816],\"ix\":9}},\"s\":{\"a\":0,\"k\":[67.76,163.55],\"ix\":5},\"e\":{\"a\":0,\"k\":[87.26,163.46],\"ix\":6},\"t\":2,\"h\":{\"a\":0,\"k\":0,\"ix\":7},\"a\":{\"a\":0,\"k\":0,\"ix\":8},\"nm\":\"Gradient Fill 1\",\"mn\":\"ADBE Vector Graphic - G-Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"surface23549\",\"np\":1,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":245,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":4,\"ty\":4,\"nm\":\"Hand\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.667],\"y\":[1]},\"o\":{\"x\":[0.333],\"y\":[0]},\"t\":0,\"s\":[0]},{\"i\":{\"x\":[0.667],\"y\":[1]},\"o\":{\"x\":[0.333],\"y\":[0]},\"t\":45,\"s\":[11]},{\"i\":{\"x\":[0.667],\"y\":[1]},\"o\":{\"x\":[0.333],\"y\":[0]},\"t\":89,\"s\":[0]},{\"i\":{\"x\":[0.667],\"y\":[1]},\"o\":{\"x\":[0.333],\"y\":[0]},\"t\":135,\"s\":[11]},{\"t\":179,\"s\":[0]}],\"ix\":10},\"p\":{\"a\":0,\"k\":[185.644,267.308,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[71.36,170.11,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[133.33,133.33,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,10.93],[10.94,0],[0,-10.94],[-10.94,0]],\"o\":[[10.94,0],[0,-10.94],[-10.94,0],[0,10.93],[0,0]],\"v\":[[19.8,286.43],[39.61,266.63],[19.8,246.83],[0,266.63],[19.8,286.43]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"gf\",\"o\":{\"a\":0,\"k\":100,\"ix\":10},\"r\":1,\"bm\":0,\"g\":{\"p\":3,\"k\":{\"a\":0,\"k\":[0,0.568,0.473,0.894,0.5,0.447,0.329,0.855,1,0.325,0.186,0.816],\"ix\":9}},\"s\":{\"a\":0,\"k\":[19.35,258.78],\"ix\":5},\"e\":{\"a\":0,\"k\":[39.16,258.78],\"ix\":6},\"t\":2,\"h\":{\"a\":0,\"k\":0,\"ix\":7},\"a\":{\"a\":0,\"k\":0,\"ix\":8},\"nm\":\"Gradient Fill 1\",\"mn\":\"ADBE Vector Graphic - G-Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[-3.67,3.72],[3.72,3.67],[0,0]],\"o\":[[0,0],[3.73,3.67],[3.67,-3.73],[0,0],[0,0]],\"v\":[[19.54,272.8],[38.85,291.77],[52.23,291.66],[52.14,278.28],[32.47,258.97]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.540000021458,0.439999997616,0.910000026226,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":2,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[-4.4,2.82],[2.82,4.4],[0,0]],\"o\":[[0,0],[2.82,4.4],[4.4,-2.82],[0,0],[0,0]],\"v\":[[11.64,281.24],[26.14,304.07],[39.21,306.94],[42.07,293.87],[31.35,276.86]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.540000021458,0.439999997616,0.910000026226,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":3,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[-5.17,0.75],[0.75,5.17],[0,0]],\"o\":[[0,0],[0.76,5.17],[5.17,-0.76],[0,0],[0,0]],\"v\":[[2.8,275.39],[5.52,294.81],[16.25,302.79],[24.23,292.06],[21.45,272.14]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.540000021458,0.439999997616,0.910000026226,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":4,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[0.69,-5.15],[-5.15,-0.69],[0,0],[-0.69,5.15],[5.14,0.68]],\"o\":[[0,0],[-5.15,-0.68],[-0.68,5.16],[0,0],[5.15,0.68],[0.68,-5.16],[0,0]],\"v\":[[54.01,250.82],[25.1,246.98],[14.53,255.06],[22.61,265.64],[51.52,269.48],[62.09,261.4],[54.01,250.82]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.540000021458,0.439999997616,0.910000026226,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":5,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[-20.29,30.93],[-27.27,2.91],[0,0],[8.33,-12.64],[-0.11,-0.34]],\"o\":[[-0.54,-1.73],[11.72,-17.87],[0,0],[-21.08,2.25],[-15.2,23.05],[0,0]],\"v\":[[8.73,267.76],[15.99,194.18],[74.75,162.86],[76.84,182.46],[32.52,204.9],[27.54,261.89]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"gf\",\"o\":{\"a\":0,\"k\":100,\"ix\":10},\"r\":1,\"bm\":0,\"g\":{\"p\":3,\"k\":{\"a\":0,\"k\":[0,0.568,0.473,0.894,0.5,0.447,0.329,0.855,1,0.325,0.186,0.816],\"ix\":9}},\"s\":{\"a\":0,\"k\":[40.64,162.87],\"ix\":5},\"e\":{\"a\":0,\"k\":[40.64,267.77],\"ix\":6},\"t\":1,\"nm\":\"Gradient Fill 1\",\"mn\":\"ADBE Vector Graphic - G-Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":6,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"surface23549\",\"np\":6,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":245,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":5,\"ty\":4,\"nm\":\"ball\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[90.5,40.5,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[133.33,133.33,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0.2,0.89],[9.86,-1.09],[0.02,-9.7],[-0.91,0.1]],\"o\":[[0.91,-0.11],[-2.12,-9.46],[-9.86,1.08],[0,0.92],[0,0]],\"v\":[[147.66,59.54],[149.01,57.68],[128.08,42.75],[110.9,61.88],[112.62,63.4]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"gf\",\"o\":{\"a\":0,\"k\":100,\"ix\":10},\"r\":1,\"bm\":0,\"g\":{\"p\":3,\"k\":{\"a\":0,\"k\":[0,0.568,0.473,0.894,0.5,0.447,0.329,0.855,1,0.325,0.186,0.816],\"ix\":9}},\"s\":{\"a\":0,\"k\":[126.83,50.52],\"ix\":5},\"e\":{\"a\":0,\"k\":[140.21,42.1],\"ix\":6},\"t\":2,\"h\":{\"a\":0,\"k\":0,\"ix\":7},\"a\":{\"a\":0,\"k\":0,\"ix\":8},\"nm\":\"Gradient Fill 1\",\"mn\":\"ADBE Vector Graphic - G-Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"surface23549\",\"np\":1,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":245,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":6,\"ty\":4,\"nm\":\"Head\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.667],\"y\":[1]},\"o\":{\"x\":[0.333],\"y\":[0]},\"t\":0,\"s\":[0]},{\"i\":{\"x\":[0.667],\"y\":[1]},\"o\":{\"x\":[0.333],\"y\":[0]},\"t\":45,\"s\":[11]},{\"i\":{\"x\":[0.667],\"y\":[1.043]},\"o\":{\"x\":[0.333],\"y\":[0]},\"t\":89,\"s\":[0]},{\"i\":{\"x\":[0.667],\"y\":[1]},\"o\":{\"x\":[0.333],\"y\":[0.041]},\"t\":135,\"s\":[-11]},{\"t\":179,\"s\":[0]}],\"ix\":10},\"p\":{\"a\":0,\"k\":[256.663,106.923,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[124.625,49.819,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[133.33,133.33,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[1.59,7.83],[7.83,-1.59],[-1.59,-7.83],[-7.83,1.59]],\"o\":[[7.83,-1.59],[-1.59,-7.83],[-7.83,1.59],[1.59,7.83],[0,0]],\"v\":[[127.51,31.23],[138.8,14.18],[121.74,2.89],[110.45,19.95],[127.51,31.23]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.850000023842,0.810000002384,0.97000002861,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[138.55,47.72],[118.36,49.94],[118.92,28.91],[133.41,27.31]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.540000021458,0.439999997616,0.910000026226,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":2,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"surface23549\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":245,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":7,\"ty\":4,\"nm\":\"body\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[276.861,248.435,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[139.774,155.955,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[133.33,133.33,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[7.25,1.55],[0,0],[0.29,2.44],[-0.01,-1.79],[-2.47,-0.32],[-0.25,0],[0,0]],\"o\":[[0,0],[0,-0.03],[-2.52,0.01],[0.01,1.75],[0.02,3.7],[0.25,0.02],[0,0],[0,0]],\"v\":[[240.56,192.11],[236.46,184.76],[128.2,185.17],[122.13,181.25],[122.17,186.57],[127.41,192.52],[128.16,192.58],[135.55,192.55]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.319999992847,0.170000001788,0.829999983311,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[-3.29,2.5],[-3.04,-2.6],[0,0]],\"o\":[[0,0],[3.29,-2.5],[3.04,2.6],[0,0]],\"v\":[[170.77,185.1],[190.93,169.12],[200.15,169.08],[220.21,184.88]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.629999995232,0.550000011921,0.910000026226,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":2,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0.11,0.52],[0,0],[-0.03,-6.34],[-0.09,-19.8],[-2.62,0.02],[-2.75,4.41]],\"o\":[[6.8,-26.62],[0,0],[0,0],[0.04,6.34],[0.02,4.07],[0.01,0],[0,0]],\"v\":[[236.46,184.75],[238.73,136.35],[128.61,136.85],[121.7,142.51],[122.16,186.56],[128.15,192.56],[236.46,184.75]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":3,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],\"v\":[[204.33,215.82],[201.97,215.83],[201.99,223.05],[200.62,223.05],[200.61,215.83],[198.26,215.84],[198.26,214.64],[204.32,214.63]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":4,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],\"v\":[[197.8,223.06],[193.19,223.07],[193.18,214.66],[197.6,214.64],[197.6,215.84],[194.54,215.84],[194.55,218.23],[197.37,218.22],[197.37,219.4],[194.55,219.41],[194.56,221.89],[197.8,221.89]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":5,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[0,0],[0.06,0.17],[0,0],[0,-0.59],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.05,-0.09],[0,0],[0,0.53],[0,0],[0,0]],\"o\":[[0,0],[0,0],[-0.1,-0.15],[0,0],[0.03,0.18],[0,0],[0,0],[0,0],[0,0],[0,0],[0.16,0.25],[0,0],[-0.04,-0.22],[0,0],[0,0],[0,0]],\"v\":[[191.39,223.07],[189.91,223.07],[185.98,216.9],[185.73,216.41],[185.7,216.41],[185.74,217.57],[185.75,223.08],[184.43,223.08],[184.42,214.67],[186,214.67],[189.8,220.7],[190.11,221.21],[190.13,221.21],[190.08,220.08],[190.07,214.66],[191.38,214.66]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":6,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0.16,0.15],[0,0.21],[-0.16,0.15],[-0.23,0],[-0.16,-0.15],[0,-0.22],[0.16,-0.15],[0.23,0]],\"o\":[[-0.23,0],[-0.16,-0.15],[0,-0.22],[0.16,-0.16],[0.23,0],[0.16,0.15],[0,0.21],[-0.17,0.14],[0,0]],\"v\":[[182.25,223.22],[181.66,223],[181.43,222.44],[181.66,221.88],[182.25,221.64],[182.84,221.88],[183.09,222.44],[182.84,223],[182.25,223.22]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":7,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[176.3,234.59],[210.69,234.44],[210.55,204.02],[176.16,204.17]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.319999992847,0.170000001788,0.829999983311,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":8,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[-5.57,-5.81],[0,0],[-4.08,7]],\"o\":[[0,0],[4.14,6.96],[0,0],[5.52,-5.87],[0,0]],\"v\":[[232.68,209.28],[49.41,210.11],[64.03,229.32],[218.23,228.62],[232.68,209.28]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.850000023842,0.810000002384,0.97000002861,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":9,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[0,0],[0,0],[52.04,-0.24],[-0.27,-58.62],[-58.62,0.27],[-14.34,41.35],[5.11,1.09]],\"o\":[[6.89,-26.96],[0,0],[0,0],[-9.3,-49.37],[-58.61,0.26],[0.27,58.61],[46.25,-0.21],[0.43,-1.76],[0,0]],\"v\":[[236.23,184.76],[238.51,136.33],[244.84,136.3],[244.99,136.18],[140.21,49.82],[34.56,156.43],[141.18,262.09],[240.98,190.76],[236.23,184.76]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"gf\",\"o\":{\"a\":0,\"k\":100,\"ix\":10},\"r\":1,\"bm\":0,\"g\":{\"p\":3,\"k\":{\"a\":0,\"k\":[0,0.568,0.473,0.894,0.5,0.447,0.329,0.855,1,0.325,0.186,0.816],\"ix\":9}},\"s\":{\"a\":0,\"k\":[164.41,115.45],\"ix\":5},\"e\":{\"a\":0,\"k\":[63.21,109.93],\"ix\":6},\"t\":2,\"h\":{\"a\":0,\"k\":0,\"ix\":7},\"a\":{\"a\":0,\"k\":0,\"ix\":8},\"nm\":\"Gradient Fill 1\",\"mn\":\"ADBE Vector Graphic - G-Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":10,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"surface23549\",\"np\":10,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":245,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":8,\"ty\":4,\"nm\":\"Hand\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.667],\"y\":[1.075]},\"o\":{\"x\":[0.333],\"y\":[0]},\"t\":0,\"s\":[0]},{\"i\":{\"x\":[0.667],\"y\":[2.442]},\"o\":{\"x\":[0.333],\"y\":[0.72]},\"t\":45,\"s\":[94.185]},{\"i\":{\"x\":[0.667],\"y\":[1]},\"o\":{\"x\":[0.333],\"y\":[-0.167]},\"t\":90,\"s\":[84.42]},{\"i\":{\"x\":[0.667],\"y\":[1]},\"o\":{\"x\":[0.333],\"y\":[0]},\"t\":135,\"s\":[0]},{\"t\":178,\"s\":[0]}],\"ix\":10},\"p\":{\"a\":0,\"k\":[374.611,273.255,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[213.089,174.57,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[133.33,133.33,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,10.93],[10.94,0],[0,-10.94],[-10.94,0]],\"o\":[[10.94,0],[0,-10.94],[-10.94,0],[0,10.93],[0,0]],\"v\":[[286.33,106.7],[306.14,86.89],[286.33,67.09],[266.53,86.89],[286.33,106.7]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"gf\",\"o\":{\"a\":0,\"k\":100,\"ix\":10},\"r\":1,\"bm\":0,\"g\":{\"p\":3,\"k\":{\"a\":0,\"k\":[0,0.568,0.473,0.894,0.5,0.447,0.329,0.855,1,0.325,0.186,0.816],\"ix\":9}},\"s\":{\"a\":0,\"k\":[286.5,77.59],\"ix\":5},\"e\":{\"a\":0,\"k\":[306.31,77.59],\"ix\":6},\"t\":2,\"h\":{\"a\":0,\"k\":0,\"ix\":7},\"a\":{\"a\":0,\"k\":0,\"ix\":8},\"nm\":\"Gradient Fill 1\",\"mn\":\"ADBE Vector Graphic - G-Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[5.09,-1.2],[-1.2,-5.09],[0,0]],\"o\":[[0,0],[-1.2,-5.09],[-5.09,1.2],[0,0],[0,0]],\"v\":[[289.84,81.8],[283.6,55.46],[272.23,48.42],[265.18,59.79],[271.53,86.61]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.540000021458,0.439999997616,0.910000026226,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":2,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[5.23,-0.04],[-0.04,-5.22],[0,0]],\"o\":[[0,0],[-0.04,-5.22],[-5.23,0.04],[0,0],[0,0]],\"v\":[[301.02,78.88],[300.93,51.84],[291.4,42.45],[282,51.97],[282.01,72.08]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.540000021458,0.439999997616,0.910000026226,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":3,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[4.77,2.12],[2.12,-4.78],[0,0]],\"o\":[[0,0],[2.11,-4.77],[-4.78,-2.11],[0,0],[0,0]],\"v\":[[305.38,88.55],[313.44,70.67],[308.62,58.19],[296.13,63.01],[287.88,81.35]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.540000021458,0.439999997616,0.910000026226,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":1,\"cix\":2,\"bm\":0,\"ix\":4,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[-3.33,3.99],[3.99,3.33],[0,0],[3.33,-3.99],[-3.99,-3.32]],\"o\":[[0,0],[3.99,3.32],[3.32,-3.99],[0,0],[-3.99,-3.32],[-3.32,4],[0,0]],\"v\":[[248.96,82.02],[271.37,100.68],[284.62,99.48],[283.42,86.23],[261.02,67.56],[247.76,68.77],[248.96,82.02]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.540000021458,0.439999997616,0.910000026226,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":5,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[-11.21,13.8],[0.08,0.39],[0,0],[25.92,-31.89],[30.21,-0.5]],\"o\":[[0,0],[24.27,-0.41],[20.32,-25.01],[0,0],[0.37,1.95],[-14.97,18.42],[0,0]],\"v\":[[213.32,185.68],[213,166.41],[266.48,145],[279.59,80.75],[298.51,77.12],[281.43,157.15],[213.32,185.68]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.540000021458,0.439999997616,0.910000026226,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":6,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"surface23549\",\"np\":6,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":245,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":9,\"ty\":4,\"nm\":\"surface23553\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[249.802,366.5,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[119.48,244.506,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[133.33,133.33,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[-0.02,0.34],[-2.43,0.02],[0,0],[-0.18,-0.85],[-0.03,-0.37],[0,0],[0.93,-0.63],[0.71,-0.01],[0,0],[0,0],[0,0],[0.63,0.63],[0.01,0.96]],\"o\":[[0,-0.36],[0.11,-1.11],[0,0],[1.77,0.06],[0.02,0.38],[0,0],[0.01,1.2],[-0.55,0.38],[0,0],[0,0],[0,0],[-0.96,0.01],[-0.64,-0.62],[0,0]],\"v\":[[83.1,372.86],[83.12,371.8],[86.16,369.44],[135.16,369.21],[137.69,371.48],[137.77,372.61],[137.86,385.36],[136.33,388.25],[134.38,388.86],[133.42,388.87],[87.6,389.08],[86.64,389.09],[84.18,388.07],[83.14,385.61]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"gf\",\"o\":{\"a\":0,\"k\":100,\"ix\":10},\"r\":1,\"bm\":0,\"g\":{\"p\":3,\"k\":{\"a\":0,\"k\":[0,0.539,0.441,0.886,0.5,0.429,0.305,0.859,1,0.318,0.169,0.831],\"ix\":9}},\"s\":{\"a\":0,\"k\":[110.72,369.395],\"ix\":5},\"e\":{\"a\":0,\"k\":[110.916,390.191],\"ix\":6},\"t\":2,\"h\":{\"a\":0,\"k\":0,\"ix\":7},\"a\":{\"a\":0,\"k\":0,\"ix\":8},\"nm\":\"Gradient Fill 1\",\"mn\":\"ADBE Vector Graphic - G-Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":1,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[-0.94,3.26],[0,0],[0,0],[-14.92,-39.69],[-0.15,-2.39],[0,0],[1.92,-0.01],[0,0],[0,0],[0,0],[0.01,1.93]],\"o\":[[-0.02,-2.22],[14.57,-39.82],[0,0],[0,0],[1.18,2.82],[0,0],[0.01,1.92],[0,0],[0,0],[0,0],[-1.93,0.01],[0,0]],\"v\":[[83.1,372.86],[84.34,365.42],[100.14,305.52],[120,305.43],[136.29,364.82],[137.75,372.62],[137.84,385.36],[134.37,388.87],[133.41,388.88],[87.59,389.09],[86.62,389.09],[83.11,385.62]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"gf\",\"o\":{\"a\":0,\"k\":100,\"ix\":10},\"r\":1,\"bm\":0,\"g\":{\"p\":3,\"k\":{\"a\":0,\"k\":[0,0.539,0.441,0.886,0.5,0.429,0.305,0.859,1,0.318,0.169,0.831],\"ix\":9}},\"s\":{\"a\":0,\"k\":[110.05,305.48],\"ix\":5},\"e\":{\"a\":0,\"k\":[110.43,388.97],\"ix\":6},\"t\":1,\"nm\":\"Gradient Fill 1\",\"mn\":\"ADBE Vector Graphic - G-Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":1,\"cix\":2,\"bm\":0,\"ix\":2,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[-16.97,28.52],[0,0],[-0.48,-13.09],[9.77,2.14]],\"o\":[[-0.34,-16.69],[0,0],[-15.39,25.87],[0.04,1.09],[0,0]],\"v\":[[100.16,305.6],[118.87,226.5],[135.8,236.57],[119.99,305.57],[100.16,305.6]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"gf\",\"o\":{\"a\":0,\"k\":100,\"ix\":10},\"r\":1,\"bm\":0,\"g\":{\"p\":3,\"k\":{\"a\":0,\"k\":[0,0.568,0.473,0.894,0.5,0.447,0.329,0.855,1,0.325,0.186,0.816],\"ix\":9}},\"s\":{\"a\":0,\"k\":[124.55,227.62],\"ix\":5},\"e\":{\"a\":0,\"k\":[108.57,307.28],\"ix\":6},\"t\":1,\"nm\":\"Gradient Fill 1\",\"mn\":\"ADBE Vector Graphic - G-Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":3,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"surface23549\",\"np\":3,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":245,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":10,\"ty\":4,\"nm\":\"surface23552\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[307.115,364.908,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[162.465,243.312,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[133.33,133.33,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0.89,1.85],[0,0],[0.15,-2.41],[0,0],[-2.02,0.02],[0,0],[-0.12,1.79]],\"o\":[[0.15,-2.28],[0,0],[1.12,1.65],[0,0],[-0.14,2.03],[0,0],[1.79,-0.01],[0,0]],\"v\":[[232.36,375.09],[231.67,368.79],[190.98,368.97],[192.42,374.48],[192.2,384.84],[195.63,388.49],[228.25,388.35],[231.72,385.08]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"gf\",\"o\":{\"a\":0,\"k\":100,\"ix\":10},\"r\":1,\"bm\":0,\"g\":{\"p\":3,\"k\":{\"a\":0,\"k\":[0,0.568,0.473,0.894,0.5,0.447,0.329,0.855,1,0.325,0.186,0.816],\"ix\":9}},\"s\":{\"a\":0,\"k\":[212.595,367.17],\"ix\":5},\"e\":{\"a\":0,\"k\":[212.839,388.386],\"ix\":6},\"t\":2,\"h\":{\"a\":0,\"k\":0,\"ix\":7},\"a\":{\"a\":0,\"k\":0,\"ix\":8},\"nm\":\"Gradient Fill 1\",\"mn\":\"ADBE Vector Graphic - G-Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0.21,-3.26],[0,0],[1.79,-0.01],[0,0],[-0.14,2.02],[0,0],[2.91,3.55],[-1.4,21.52],[0,0],[-25.8,-20.35]],\"o\":[[2.7,2.14],[0,0],[-0.12,1.79],[0,0],[-2.03,0.01],[0,0],[0.25,-3.77],[-4.99,-6.06],[0,0],[1.08,12.77],[0,0]],\"v\":[[229.93,366.61],[232.38,375.09],[231.72,385.09],[228.25,388.36],[195.62,388.51],[192.2,384.86],[192.41,374.5],[188.48,365.81],[170.13,305.2],[186.19,305.12],[229.93,366.61]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"gf\",\"o\":{\"a\":0,\"k\":100,\"ix\":10},\"r\":1,\"bm\":0,\"g\":{\"p\":3,\"k\":{\"a\":0,\"k\":[0,0.568,0.473,0.894,0.5,0.447,0.329,0.855,1,0.325,0.186,0.816],\"ix\":9}},\"s\":{\"a\":0,\"k\":[173.75,303.11],\"ix\":5},\"e\":{\"a\":0,\"k\":[206.475,363.039],\"ix\":6},\"t\":1,\"nm\":\"Gradient Fill 1\",\"mn\":\"ADBE Vector Graphic - G-Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":2,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[0,0],[0,0],[0,0],[-0.16,2.39]],\"o\":[[0,0],[0,0],[0,0],[-2.39,0.01],[0,0]],\"v\":[[166.38,305.2],[181.98,305.13],[196.54,388.55],[165.23,388.7],[161.2,384.4]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.319999992847,0.170000001788,0.839999973774,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"undefined\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":3,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[17.23,28.37],[0,0],[0.36,-13.1],[-9.75,2.21]],\"o\":[[0.18,-16.69],[0,0],[15.63,25.73],[-0.03,1.08],[0,0]],\"v\":[[186.2,305.23],[166.78,226.3],[149.94,236.53],[166.38,305.39],[186.2,305.23]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"gf\",\"o\":{\"a\":0,\"k\":100,\"ix\":10},\"r\":1,\"bm\":0,\"g\":{\"p\":3,\"k\":{\"a\":0,\"k\":[0,0.568,0.473,0.894,0.5,0.447,0.329,0.855,1,0.325,0.186,0.816],\"ix\":9}},\"s\":{\"a\":0,\"k\":[168.33,257.611],\"ix\":5},\"e\":{\"a\":0,\"k\":[177.53,307.13],\"ix\":6},\"t\":1,\"nm\":\"Gradient Fill 1\",\"mn\":\"ADBE Vector Graphic - G-Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"undefined\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":4,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"surface23549\",\"np\":4,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":245,\"st\":0,\"bm\":0}],\"markers\":[]}"
  },
  {
    "path": "src/Presentations/Windows/Resources/Raw/island.json",
    "content": "{\"v\":\"5.5.4\",\"fr\":30,\"ip\":0,\"op\":120,\"w\":800,\"h\":800,\"nm\":\"daynightisland\",\"ddd\":0,\"assets\":[],\"layers\":[{\"ddd\":0,\"ind\":1,\"ty\":4,\"nm\":\"Shape Layer 4\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[367,439,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[-33,39,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":1,\"k\":[{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":74,\"s\":[{\"i\":[[0,0],[-0.312,0.125],[-15.969,-8.062],[3,-3],[15.338,-6.763],[5.5,-6.25],[-31.921,2.456],[-33.75,18.75],[-5,-9],[57.69,23.512]],\"o\":[[0,0],[80.875,19.5],[25.75,13],[-3,3],[-31.75,14],[-17.049,19.374],[55.25,-4.25],[25.531,-14.184],[5,9],[-59.5,-24.25]],\"v\":[[-22.062,39.063],[-40.875,39],[81,86],[23,102],[74,108],[36,116],[133,120],[181.5,90],[136,59],[95.5,68.25]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":90,\"s\":[{\"i\":[[0,0],[-0.312,0.125],[13.437,-11.809],[-3.83,-1.826],[15.338,-6.763],[-6.259,-5.49],[-31.921,2.455],[-33.75,18.75],[9.5,-5.5],[11.875,28]],\"o\":[[0,0],[3.875,24.5],[-16.5,14.5],[21.5,10.25],[-31.75,14],[14.25,12.5],[55.25,-4.25],[25.531,-14.184],[-8.91,5.158],[-6.531,-15.4]],\"v\":[[-22.062,39.062],[-40.875,39],[-50.75,73.5],[-114.5,83.25],[-63.75,87],[-101.75,95],[-46.75,99.5],[26.25,88],[13.25,76],[-18.125,57]],\"c\":true}]},{\"t\":104,\"s\":[{\"i\":[[0,0],[-0.312,0.125],[12.848,-12.447],[0.302,-4.232],[5.75,-2],[-3.937,-7.335],[-30.335,-10.238],[-33.75,18.75],[9.5,-5.5],[-25.844,16.035]],\"o\":[[0,0],[-72.875,7.5],[-24,23.25],[-0.75,10.5],[-25.92,9.016],[18.25,34],[20,6.75],[25.531,-14.184],[-8.91,5.158],[37.875,-23.5]],\"v\":[[-22.062,39.062],[-40.875,39],[-149.25,70],[-211.25,79.75],[-179.75,90.5],[-221.5,82],[-162.25,98.5],[-89.75,91.5],[-123.75,93.75],[-125.625,69.75]],\"c\":true}]}],\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0,0,0,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":74,\"s\":[0]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":90,\"s\":[20]},{\"t\":104,\"s\":[0]}],\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Shape 1\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":74,\"op\":105,\"st\":59,\"bm\":0},{\"ddd\":0,\"ind\":2,\"ty\":4,\"nm\":\"Shape Layer 3\",\"sr\":1,\"ks\":{\"o\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":15,\"s\":[0]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":30,\"s\":[100]},{\"t\":45,\"s\":[0]}],\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[491.5,262.5,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[-255.802,-195.103,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.833,0.833,0.833],\"y\":[0.833,0.833,0.833]},\"o\":{\"x\":[0.167,0.167,0.167],\"y\":[0.167,0.167,0.167]},\"t\":15,\"s\":[62.935,62.935,100]},{\"i\":{\"x\":[0.833,0.833,0.833],\"y\":[0.833,0.833,0.833]},\"o\":{\"x\":[0.167,0.167,0.167],\"y\":[0.167,0.167,0.167]},\"t\":22,\"s\":[24.7,24.7,100]},{\"i\":{\"x\":[0.833,0.833,0.833],\"y\":[0.833,0.833,0.833]},\"o\":{\"x\":[0.167,0.167,0.167],\"y\":[0.167,0.167,0.167]},\"t\":30,\"s\":[62.935,62.935,100]},{\"i\":{\"x\":[0.833,0.833,0.833],\"y\":[0.833,0.833,0.833]},\"o\":{\"x\":[0.167,0.167,0.167],\"y\":[0.167,0.167,0.167]},\"t\":38,\"s\":[24.7,24.7,100]},{\"t\":45,\"s\":[62.935,62.935,100]}],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":1,\"k\":[{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":15,\"s\":[{\"i\":[[1.713,-0.381],[8.75,-0.125],[0.25,-11.5],[-0.154,14.138],[7.577,0.455]],\"o\":[[-1.125,0.25],[-9.054,0.129],[-0.184,8.466],[0.13,-11.896],[-12.5,-0.75]],\"v\":[[-256,-215.75],[-265.25,-195.625],[-256.625,-184.125],[-254.255,-183.479],[-244.75,-195.375]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":23,\"s\":[{\"i\":[[1.713,-0.381],[8.751,0],[0,-16.375],[0,14.139],[12,0]],\"o\":[[-1.125,0.25],[-12.375,0],[0,8.468],[0,-17.896],[-12.522,0]],\"v\":[[-256,-222.125],[-265.25,-195.625],[-256.63,-179.375],[-254.259,-178.729],[-244.75,-195.375]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":30,\"s\":[{\"i\":[[1.713,-0.381],[8.75,-0.125],[0.25,-11.5],[-0.154,14.138],[7.577,0.455]],\"o\":[[-1.125,0.25],[-9.054,0.129],[-0.184,8.466],[0.13,-11.896],[-12.5,-0.75]],\"v\":[[-256,-215.75],[-265.25,-195.625],[-256.625,-184.125],[-254.255,-183.479],[-244.75,-195.375]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":38,\"s\":[{\"i\":[[1.713,-0.381],[8.751,0],[0,-16.375],[0,14.139],[12,0]],\"o\":[[-1.125,0.25],[-12.375,0],[0,8.468],[0,-17.896],[-12.522,0]],\"v\":[[-256,-222.125],[-265.25,-195.625],[-256.63,-179.375],[-254.259,-178.729],[-244.75,-195.375]],\"c\":true}]},{\"t\":45,\"s\":[{\"i\":[[1.713,-0.381],[8.75,-0.125],[0.25,-11.5],[-0.154,14.138],[7.577,0.455]],\"o\":[[-1.125,0.25],[-9.054,0.129],[-0.184,8.466],[0.13,-11.896],[-12.5,-0.75]],\"v\":[[-256,-215.75],[-265.25,-195.625],[-256.625,-184.125],[-254.255,-183.479],[-244.75,-195.375]],\"c\":true}]}],\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Shape 1\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":15,\"op\":46,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":3,\"ty\":4,\"nm\":\"Shape Layer 2\",\"sr\":1,\"ks\":{\"o\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":15,\"s\":[0]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":30,\"s\":[100]},{\"t\":45,\"s\":[0]}],\"ix\":11},\"r\":{\"a\":0,\"k\":180,\"ix\":10},\"p\":{\"a\":0,\"k\":[224.25,104.625,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[-255.75,-195.375,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.833,0.833,0.833],\"y\":[0.833,0.833,0.833]},\"o\":{\"x\":[0.167,0.167,0.167],\"y\":[0.167,0.167,0.167]},\"t\":15,\"s\":[99.737,99.737,100]},{\"i\":{\"x\":[0.833,0.833,0.833],\"y\":[0.833,0.833,0.833]},\"o\":{\"x\":[0.167,0.167,0.167],\"y\":[0.167,0.167,0.167]},\"t\":22,\"s\":[63.603,63.603,100]},{\"i\":{\"x\":[0.833,0.833,0.833],\"y\":[0.833,0.833,0.833]},\"o\":{\"x\":[0.167,0.167,0.167],\"y\":[0.167,0.167,0.167]},\"t\":30,\"s\":[121.817,121.817,100]},{\"i\":{\"x\":[0.833,0.833,0.833],\"y\":[0.833,0.833,0.833]},\"o\":{\"x\":[0.167,0.167,0.167],\"y\":[0.167,0.167,0.167]},\"t\":38,\"s\":[63.603,63.603,100]},{\"t\":45,\"s\":[121.817,121.817,100]}],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":1,\"k\":[{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":15,\"s\":[{\"i\":[[1.713,-0.381],[8.75,-0.125],[0.25,-11.5],[-0.154,14.138],[7.577,0.455]],\"o\":[[-1.125,0.25],[-9.054,0.129],[-0.184,8.466],[0.13,-11.896],[-12.5,-0.75]],\"v\":[[-256,-215.75],[-265.25,-195.625],[-256.625,-184.125],[-254.255,-183.479],[-244.75,-195.375]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":23,\"s\":[{\"i\":[[1.713,-0.381],[8.751,0],[0,-16.375],[0,14.139],[12,0]],\"o\":[[-1.125,0.25],[-12.375,0],[0,8.468],[0,-17.896],[-12.522,0]],\"v\":[[-256,-222.125],[-265.25,-195.625],[-256.63,-179.375],[-254.259,-178.729],[-244.75,-195.375]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":30,\"s\":[{\"i\":[[1.713,-0.381],[8.75,-0.125],[0.25,-11.5],[-0.154,14.138],[7.577,0.455]],\"o\":[[-1.125,0.25],[-9.054,0.129],[-0.184,8.466],[0.13,-11.896],[-12.5,-0.75]],\"v\":[[-256,-215.75],[-265.25,-195.625],[-256.625,-184.125],[-254.255,-183.479],[-244.75,-195.375]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":38,\"s\":[{\"i\":[[1.713,-0.381],[8.751,0],[0,-16.375],[0,14.139],[12,0]],\"o\":[[-1.125,0.25],[-12.375,0],[0,8.468],[0,-17.896],[-12.522,0]],\"v\":[[-256,-222.125],[-265.25,-195.625],[-256.63,-179.375],[-254.259,-178.729],[-244.75,-195.375]],\"c\":true}]},{\"t\":45,\"s\":[{\"i\":[[1.713,-0.381],[8.75,-0.125],[0.25,-11.5],[-0.154,14.138],[7.577,0.455]],\"o\":[[-1.125,0.25],[-9.054,0.129],[-0.184,8.466],[0.13,-11.896],[-12.5,-0.75]],\"v\":[[-256,-215.75],[-265.25,-195.625],[-256.625,-184.125],[-254.255,-183.479],[-244.75,-195.375]],\"c\":true}]}],\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Shape 1\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":15,\"op\":46,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":4,\"ty\":4,\"nm\":\"Shape Layer 1\",\"sr\":1,\"ks\":{\"o\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":15,\"s\":[0]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":30,\"s\":[100]},{\"t\":45,\"s\":[0]}],\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[144,204,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[-256,-196,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.833,0.833,0.833],\"y\":[0.833,0.833,0.833]},\"o\":{\"x\":[0.167,0.167,0.167],\"y\":[0.167,0.167,0.167]},\"t\":15,\"s\":[39.288,39.288,100]},{\"i\":{\"x\":[0.833,0.833,0.833],\"y\":[0.833,0.833,0.833]},\"o\":{\"x\":[0.167,0.167,0.167],\"y\":[0.167,0.167,0.167]},\"t\":22,\"s\":[114.84,114.84,100]},{\"i\":{\"x\":[0.833,0.833,0.833],\"y\":[0.833,0.833,0.833]},\"o\":{\"x\":[0.167,0.167,0.167],\"y\":[0.167,0.167,0.167]},\"t\":30,\"s\":[63.421,63.421,100]},{\"i\":{\"x\":[0.833,0.833,0.833],\"y\":[0.833,0.833,0.833]},\"o\":{\"x\":[0.167,0.167,0.167],\"y\":[0.167,0.167,0.167]},\"t\":38,\"s\":[99.105,99.105,100]},{\"t\":45,\"s\":[48.564,48.564,100]}],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":1,\"k\":[{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":15,\"s\":[{\"i\":[[1.713,-0.381],[8.751,0],[0,-16.375],[0,14.139],[12,0]],\"o\":[[-1.125,0.25],[-12.375,0],[0,8.468],[0,-17.896],[-12.522,0]],\"v\":[[-256,-222.125],[-265.25,-195.625],[-256.63,-179.375],[-254.259,-178.729],[-244.75,-195.375]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":22,\"s\":[{\"i\":[[1.713,-0.381],[8.75,-0.125],[0.25,-11.5],[-0.154,14.138],[7.577,0.455]],\"o\":[[-1.125,0.25],[-9.054,0.129],[-0.184,8.466],[0.13,-11.896],[-12.5,-0.75]],\"v\":[[-256,-215.75],[-265.25,-195.625],[-256.625,-184.125],[-254.255,-183.479],[-244.75,-195.375]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":30,\"s\":[{\"i\":[[1.713,-0.381],[8.751,0],[0,-16.375],[0,14.139],[12,0]],\"o\":[[-1.125,0.25],[-12.375,0],[0,8.468],[0,-17.896],[-12.522,0]],\"v\":[[-256,-222.125],[-265.25,-195.625],[-256.63,-179.375],[-254.259,-178.729],[-244.75,-195.375]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":38,\"s\":[{\"i\":[[1.713,-0.381],[8.75,-0.125],[0.25,-11.5],[-0.154,14.138],[7.577,0.455]],\"o\":[[-1.125,0.25],[-9.054,0.129],[-0.184,8.466],[0.13,-11.896],[-12.5,-0.75]],\"v\":[[-256,-215.75],[-265.25,-195.625],[-256.625,-184.125],[-254.255,-183.479],[-244.75,-195.375]],\"c\":true}]},{\"t\":46,\"s\":[{\"i\":[[1.713,-0.381],[8.751,0],[0,-16.375],[0,14.139],[12,0]],\"o\":[[-1.125,0.25],[-12.375,0],[0,8.468],[0,-17.896],[-12.522,0]],\"v\":[[-256,-222.125],[-265.25,-195.625],[-256.63,-179.375],[-254.259,-178.729],[-244.75,-195.375]],\"c\":true}]}],\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Shape 1\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":15,\"op\":46,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":5,\"ty\":4,\"nm\":\"Layer 6 Outlines\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[402.694,486.482,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[290.615,54.235,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[235.059,-5.647],[0.495,3.53],[-86.823,26.328],[-53.295,1.515],[-44.337,-9.612],[22.588,-8.47]],\"o\":[[-136.941,0],[-0.495,-3.529],[101.167,-30.676],[16.882,-0.479],[43.304,9.387],[-22.588,8.47]],\"v\":[[-23.047,53.985],[-289.87,23.632],[-198.106,-23.309],[25.66,-47.765],[179.541,-29.662],[267.777,16.221]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[290.615,54.236],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 1\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":120,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":6,\"ty\":4,\"nm\":\"Layer 7 Outlines\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":20,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[425.294,512.937,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[367.897,57.897,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":1,\"k\":[{\"i\":{\"x\":0.667,\"y\":1},\"o\":{\"x\":0.333,\"y\":0},\"t\":0,\"s\":[{\"i\":[[237.177,-27.765],[10.588,-13.176],[-42.353,0.47],[-40.832,-3.407],[91.574,40.082],[51.765,14.588],[42.048,9.212]],\"o\":[[0,0],[-10.588,13.177],[42.353,-0.471],[197.412,16.47],[-32.823,-14.367],[-51.764,-14.589],[-37.234,-8.157]],\"v\":[[-273.765,-29.882],[-357.059,-7.765],[-285.294,18.589],[-241.53,41.177],[237.764,12.353],[315.882,-4.47],[230.235,-29.882]],\"c\":true}]},{\"i\":{\"x\":0.667,\"y\":1},\"o\":{\"x\":0.333,\"y\":0},\"t\":30,\"s\":[{\"i\":[[237.177,-27.765],[10.588,-13.176],[-40.906,-10.986],[-41.764,-10.614],[-16.558,32.21],[51.315,16.1],[42.048,9.212]],\"o\":[[0,0],[-10.588,13.177],[39,10.474],[191.994,48.794],[16.381,-31.865],[-4.676,-1.467],[-37.234,-8.157]],\"v\":[[-273.765,-29.882],[-357.059,-7.765],[-289.294,27.589],[-182.53,32.177],[248.764,17.853],[277.882,-17.97],[230.235,-29.882]],\"c\":true}]},{\"i\":{\"x\":0.667,\"y\":1},\"o\":{\"x\":0.333,\"y\":0},\"t\":60,\"s\":[{\"i\":[[237.177,-27.765],[10.588,-13.176],[-40.906,-10.986],[-42.891,4.156],[-28.558,46.21],[59.324,23.533],[42.048,9.212]],\"o\":[[0,0],[-10.588,13.177],[39,10.474],[212.736,-20.614],[18.836,-30.479],[-4.556,-1.807],[-37.234,-8.157]],\"v\":[[-273.765,-29.882],[-377.059,-2.265],[-276.794,16.089],[-157.53,51.177],[251.264,20.353],[277.882,-17.97],[230.235,-29.882]],\"c\":true}]},{\"i\":{\"x\":0.667,\"y\":1},\"o\":{\"x\":0.333,\"y\":0},\"t\":90,\"s\":[{\"i\":[[237.177,-27.765],[10.588,-13.176],[-40.906,-10.986],[-113.764,-2.614],[-71.058,35.71],[59.324,23.533],[19.971,3.445]],\"o\":[[0,0],[-10.588,13.177],[39,10.474],[209.184,4.807],[32.014,-16.089],[-4.556,-1.807],[-37.562,-6.479]],\"v\":[[-273.765,-29.882],[-356.059,-6.265],[-276.794,16.089],[-96.03,54.677],[260.264,21.853],[265.882,-18.47],[230.235,-29.882]],\"c\":true}]},{\"t\":119,\"s\":[{\"i\":[[237.177,-27.765],[10.588,-13.176],[-42.353,0.47],[-40.832,-3.407],[91.574,40.082],[51.765,14.588],[42.048,9.212]],\"o\":[[0,0],[-10.588,13.177],[42.353,-0.471],[197.412,16.47],[-32.823,-14.367],[-51.764,-14.589],[-37.234,-8.157]],\"v\":[[-273.765,-29.882],[-357.059,-7.765],[-285.294,18.589],[-241.53,41.177],[237.764,12.353],[315.882,-4.47],[230.235,-29.882]],\"c\":true}]}],\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[367.897,57.897],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 1\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":120,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":7,\"ty\":4,\"nm\":\"Layer 5 Outlines\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[411.059,521.643,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[397.191,68.485,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[170.353,-24.941],[5.647,-20.236],[-31.529,0.471],[-18.066,-11.325],[-105.882,0],[54.341,8.86],[-17.882,0],[33.412,14.117],[55.058,4.706]],\"o\":[[0,0],[-5.647,20.235],[31.53,-0.471],[15.765,9.882],[170.118,0],[-64.942,-10.588],[17.882,0],[-33.411,-14.118],[-55.059,-4.706]],\"v\":[[-241.882,-43.294],[-387.294,-1.411],[-339.294,34.824],[-241.882,42.824],[-36.235,68.235],[326.589,22.353],[343.059,9.883],[367.529,-5.176],[221.177,-43.294]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0,0.694000004787,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[393.191,68.485],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 1\",\"np\":4,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":120,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":8,\"ty\":4,\"nm\":\"Layer 8 Outlines\",\"sr\":1,\"ks\":{\"o\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":15,\"s\":[20]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":30,\"s\":[30]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":45,\"s\":[20]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":74,\"s\":[20]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":90,\"s\":[50]},{\"t\":104,\"s\":[20]}],\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[350.509,357.935,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[80.868,85.958,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":1,\"k\":[{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":0,\"s\":[{\"i\":[[1.039,1.412],[0.723,0.936],[-0.593,0.653],[0,0],[-0.853,-0.548],[0,0.853],[1.912,2.317],[1.35,-0.065],[0.272,-0.03],[-5.082,-0.564],[-4.047,-11.355],[10.047,4.86],[2.294,-0.176],[-23.522,10.984],[0,0],[12.703,-4.923],[0,0],[-5.617,4.009],[0.577,-0.294],[5.608,-18.205],[4.008,4.423],[0,0],[-8.294,-8.118],[0,0],[28.878,1.137],[0,0],[-18.727,0.09],[0,0],[7.717,-7.534],[-3.529,17.893],[-10.519,2.863],[-0.626,0.072],[0.394,-0.105],[0.735,-1.852],[-1.054,0.089],[-0.165,0.54],[-1.743,-1.125],[-0.846,-0.848],[2.576,-2.383],[-2.824,-1.647],[1.91,-0.47],[-0.471,-3.177],[-4.379,1.528],[0.118,-1.529],[-2.241,-7.412],[-0.981,0.118],[4.239,-3.558],[-1.883,-6],[-1.411,0.234],[1.53,-2.353],[-2.235,-1.764],[0,0],[3.294,1.294],[-1.294,-0.942],[2,2.353],[-3.059,0.616],[1.029,3.059],[1.059,0.706],[-1.381,0],[0.588,2.235],[3.295,0.706],[-1.059,0.353],[0.059,0.882]],\"o\":[[-0.947,-1.287],[0.214,-0.235],[0.839,-0.926],[0.206,1.294],[0.853,0.55],[0,-0.852],[-0.666,-0.807],[-0.26,0.012],[5.801,-4.172],[13.408,1.49],[-3.914,-12.731],[-17.842,-8.63],[-2.294,0.177],[23.522,-10.985],[-24,-13.06],[-13.177,5.106],[-1.712,-19.225],[-0.444,0.238],[-4.842,2.471],[-0.392,-2.676],[-19.727,-21.77],[20.57,-5.236],[8.294,8.117],[0,0],[-28.383,-1.118],[9.529,-10.302],[18.727,-0.09],[-16.244,1.493],[-18.019,17.591],[3.529,-17.893],[0.773,-0.21],[-0.262,0.111],[-2.03,0.538],[-0.736,1.853],[0.907,-0.076],[-0.345,1.053],[-0.996,-0.644],[1.759,1.765],[-2.578,2.382],[0,0],[-1.909,0.471],[0.471,3.176],[4.379,-1.527],[-0.117,1.529],[2.242,7.412],[0.981,-0.118],[-4.239,3.558],[1.882,6],[1.412,-0.236],[-1.529,2.353],[2.236,1.765],[0,0],[-3.294,-1.294],[1.294,0.94],[-2,-2.353],[3.059,-0.616],[-1.028,-3.058],[-1.058,-0.706],[1.381,0],[-0.589,-2.236],[-3.294,-0.706],[1.059,-0.353],[-0.059,-0.882]],\"v\":[[3.28,-16.233],[3.719,-19.782],[3.294,-19.659],[4.676,-24.365],[8.794,-22.92],[10.03,-24.557],[9.441,-29.462],[6.276,-30.404],[5.478,-30.34],[27.06,-35.213],[64.911,-10.191],[42.695,-33.544],[7.383,-34.233],[27.089,-58.527],[80.617,-56.067],[25.147,-60.88],[2.892,-41.645],[19.686,-76.676],[18.166,-75.88],[-1.225,-49.557],[-8.324,-63.939],[-48.54,-73.408],[-10.264,-61.321],[-2.853,-34.762],[-40,-51.88],[-80.617,-32.228],[-41.411,-47.292],[-4.264,-32.228],[-37.482,-19.968],[-49.246,5.677],[-7.669,-28.449],[-5.598,-28.846],[-6.559,-28.518],[-7.5,-24.057],[-5.035,-21.351],[-3.306,-23.916],[-1.75,-18.373],[-3.074,-18.351],[-0.805,-13.321],[-1.559,-4.057],[-0.65,-1.586],[-3.617,4.532],[1.063,11.706],[-1.736,15.12],[-0.095,34.414],[4.93,38.414],[3.56,42.065],[3.206,54.179],[8.617,55.003],[6.264,59.12],[10.617,83.943],[24.97,83.943],[16.617,58.649],[14.97,54.297],[13.56,41.473],[9.676,37.736],[11.529,33.002],[8.264,13.002],[6.296,10.533],[6.854,4.885],[4.264,-0.998],[5.736,-2.292],[5.794,-7.174]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":30,\"s\":[{\"i\":[[1.039,1.412],[0.723,0.936],[-0.593,0.653],[0,0],[-0.853,-0.548],[0,0.853],[1.912,2.317],[1.35,-0.065],[0.272,-0.03],[-5.082,-0.564],[-4.047,-11.355],[10.047,4.86],[2.294,-0.176],[-23.522,10.984],[0,0],[12.703,-4.923],[0,0],[-5.617,4.009],[0.577,-0.294],[5.608,-18.205],[4.008,4.423],[0,0],[-8.294,-8.118],[0,0],[28.878,1.137],[0,0],[-18.727,0.09],[0,0],[7.717,-7.534],[-3.529,17.893],[-17.465,2.389],[-0.626,0.072],[0.394,-0.105],[0.735,-1.852],[-1.054,0.089],[-0.165,0.54],[-1.743,-1.125],[-0.846,-0.848],[2.576,-2.383],[-2.824,-1.647],[1.91,-0.47],[-0.471,-3.177],[-4.379,1.528],[0.118,-1.529],[-2.241,-7.412],[-0.981,0.118],[3.994,-1.875],[-1.883,-6],[-1.411,0.234],[1.53,-2.353],[-2.235,-1.764],[0,0],[3.294,1.294],[-1.294,-0.942],[2.698,1.502],[-3.059,0.616],[1.029,3.059],[1.272,0.052],[-1.381,0],[0.588,2.235],[3.295,0.706],[-1.059,0.353],[0.059,0.882]],\"o\":[[-0.947,-1.287],[0.214,-0.235],[0.839,-0.926],[0.206,1.294],[0.853,0.55],[0,-0.852],[-0.666,-0.807],[-0.26,0.012],[5.801,-4.172],[13.408,1.49],[-3.914,-12.731],[-17.842,-8.63],[-2.294,0.177],[23.522,-10.985],[-24,-13.06],[-13.177,5.106],[-1.712,-19.225],[-0.444,0.238],[-4.842,2.471],[-0.392,-2.676],[-19.727,-21.77],[20.57,-5.236],[8.294,8.117],[0,0],[-28.383,-1.118],[9.529,-10.302],[18.727,-0.09],[-16.244,1.493],[-18.019,17.591],[3.529,-17.893],[0.794,-0.109],[-0.262,0.111],[-2.03,0.538],[-0.736,1.853],[0.907,-0.076],[-0.345,1.053],[-0.996,-0.644],[1.759,1.765],[-2.578,2.382],[0,0],[-1.909,0.471],[0.471,3.176],[4.379,-1.527],[-0.117,1.529],[2.242,7.412],[0.981,-0.118],[-4.017,1.886],[1.882,6],[1.412,-0.236],[-1.529,2.353],[2.236,1.765],[0,0],[-3.294,-1.294],[1.294,0.94],[-2.193,-1.221],[3.059,-0.616],[-1.028,-3.058],[-1.523,-0.062],[1.381,0],[-0.589,-2.236],[-3.294,-0.706],[1.059,-0.353],[-0.059,-0.882]],\"v\":[[3.28,-16.233],[3.719,-19.782],[3.294,-19.659],[4.676,-24.365],[8.794,-22.92],[10.03,-24.557],[9.441,-29.462],[6.276,-30.404],[5.478,-30.34],[28.185,-32.588],[64.911,-10.191],[42.695,-33.544],[7.383,-34.233],[28.963,-56.152],[80.617,-56.067],[25.147,-60.88],[2.892,-41.645],[25.562,-79.551],[18.166,-75.88],[-1.225,-49.557],[-8.324,-63.939],[-48.54,-73.408],[-11.889,-60.196],[-2.853,-34.762],[-40,-51.88],[-80.617,-32.228],[-38.536,-45.792],[-4.264,-32.228],[-37.482,-19.968],[-49.746,9.177],[-7.669,-28.449],[-5.598,-28.846],[-6.559,-28.518],[-7.5,-24.057],[-5.035,-21.351],[-3.306,-23.916],[-1.75,-18.373],[-3.074,-18.351],[-0.805,-13.321],[-1.621,-3.525],[-0.181,-1.679],[-3.617,4.532],[0.75,11.081],[-1.736,14.62],[0.031,33.477],[4.868,37.727],[3.685,40.815],[2.831,52.804],[8.617,55.003],[6.264,58.683],[11.18,84.006],[24.908,82.443],[16.18,57.524],[14.72,53.735],[13.372,40.911],[9.551,37.424],[11.404,32.19],[8.014,12.565],[5.796,10.47],[6.854,4.885],[3.827,-1.591],[5.329,-3.104],[5.794,-7.174]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":60,\"s\":[{\"i\":[[1.039,1.412],[0.723,0.936],[-0.593,0.653],[0,0],[-0.853,-0.548],[0,0.853],[1.912,2.317],[1.35,-0.065],[0.272,-0.03],[-5.082,-0.564],[-4.047,-11.355],[10.047,4.86],[2.294,-0.176],[-23.522,10.984],[0,0],[12.703,-4.923],[0,0],[-5.617,4.009],[0.577,-0.294],[5.608,-18.205],[4.008,4.423],[0,0],[-8.294,-8.118],[0,0],[28.878,1.137],[0,0],[-18.727,0.09],[0,0],[7.717,-7.534],[-3.529,17.893],[-10.519,2.863],[-0.626,0.072],[0.394,-0.105],[0.735,-1.852],[-1.054,0.089],[-0.165,0.54],[-1.743,-1.125],[-0.846,-0.848],[2.576,-2.383],[-2.824,-1.647],[1.91,-0.47],[-0.471,-3.177],[-4.379,1.528],[0.118,-1.529],[-2.241,-7.412],[-0.981,0.118],[4.239,-3.558],[-1.883,-6],[-1.411,0.234],[1.53,-2.353],[-2.235,-1.764],[0,0],[3.294,1.294],[-1.294,-0.942],[2,2.353],[-3.059,0.616],[1.029,3.059],[1.059,0.706],[-1.381,0],[0.588,2.235],[3.295,0.706],[-1.059,0.353],[0.059,0.882]],\"o\":[[-0.947,-1.287],[0.214,-0.235],[0.839,-0.926],[0.206,1.294],[0.853,0.55],[0,-0.852],[-0.666,-0.807],[-0.26,0.012],[5.801,-4.172],[13.408,1.49],[-3.914,-12.731],[-17.842,-8.63],[-2.294,0.177],[23.522,-10.985],[-24,-13.06],[-13.177,5.106],[-1.712,-19.225],[-0.444,0.238],[-4.842,2.471],[-0.392,-2.676],[-19.727,-21.77],[20.57,-5.236],[8.294,8.117],[0,0],[-28.383,-1.118],[9.529,-10.302],[18.727,-0.09],[-16.244,1.493],[-18.019,17.591],[3.529,-17.893],[0.773,-0.21],[-0.262,0.111],[-2.03,0.538],[-0.736,1.853],[0.907,-0.076],[-0.345,1.053],[-0.996,-0.644],[1.759,1.765],[-2.578,2.382],[0,0],[-1.909,0.471],[0.471,3.176],[4.379,-1.527],[-0.117,1.529],[2.242,7.412],[0.981,-0.118],[-4.239,3.558],[1.882,6],[1.412,-0.236],[-1.529,2.353],[2.236,1.765],[0,0],[-3.294,-1.294],[1.294,0.94],[-2,-2.353],[3.059,-0.616],[-1.028,-3.058],[-1.058,-0.706],[1.381,0],[-0.589,-2.236],[-3.294,-0.706],[1.059,-0.353],[-0.059,-0.882]],\"v\":[[3.28,-16.233],[3.719,-19.782],[3.294,-19.659],[4.676,-24.365],[8.794,-22.92],[10.03,-24.557],[9.441,-29.462],[6.276,-30.404],[5.478,-30.34],[27.06,-35.213],[64.911,-10.191],[42.695,-33.544],[7.383,-34.233],[27.089,-58.527],[80.617,-56.067],[25.147,-60.88],[2.892,-41.645],[19.686,-76.676],[18.166,-75.88],[-1.225,-49.557],[-8.324,-63.939],[-48.54,-73.408],[-10.264,-61.321],[-2.853,-34.762],[-40,-51.88],[-80.617,-32.228],[-41.411,-47.292],[-4.264,-32.228],[-37.482,-19.968],[-49.246,5.677],[-7.669,-28.449],[-5.598,-28.846],[-6.559,-28.518],[-7.5,-24.057],[-5.035,-21.351],[-3.306,-23.916],[-1.75,-18.373],[-3.074,-18.351],[-0.805,-13.321],[-1.559,-4.057],[-0.65,-1.586],[-3.617,4.532],[1.063,11.706],[-1.736,15.12],[-0.095,34.414],[4.93,38.414],[3.56,42.065],[3.206,54.179],[8.617,55.003],[6.264,59.12],[10.617,83.943],[24.97,83.943],[16.617,58.649],[14.97,54.297],[13.56,41.473],[9.676,37.736],[11.529,33.002],[8.264,13.002],[6.296,10.533],[6.854,4.885],[4.264,-0.998],[5.736,-2.292],[5.794,-7.174]],\"c\":true}]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":91,\"s\":[{\"i\":[[1.774,0.61],[0.723,0.936],[-0.593,0.653],[0,0],[-2.178,0.36],[0,0.853],[1.912,2.317],[-1.318,0.812],[0.123,-0.013],[-4.768,-1.847],[-4.047,-11.355],[10.047,4.86],[2.294,-0.176],[-23.522,10.984],[0,0],[12.703,-4.923],[0,0],[-13.446,1.741],[9.826,-5.93],[5.608,-18.205],[4.126,4.313],[0,0],[-8.294,-8.118],[0,0],[28.878,1.137],[0,0],[-18.097,0.982],[0,0],[8.773,-6.272],[0.191,18.237],[-17.465,2.389],[-0.626,0.072],[0.394,-0.105],[0.178,-3.003],[-1.054,0.089],[-0.165,0.54],[-1.743,-1.125],[-0.846,-0.848],[3.471,-0.519],[-2.7,0.466],[1.91,-0.47],[-0.471,-3.177],[-4.353,0.328],[0.118,-1.529],[-1.539,-8.474],[-0.981,0.118],[3.994,-1.875],[-1.883,-6],[-3.377,0.562],[2.227,-1.055],[-2.235,-1.764],[0,0],[3.342,-1.165],[-1.294,-0.942],[2.926,-0.986],[-3.059,0.616],[1.029,3.059],[1.27,0.09],[-1.381,0],[0.013,2.68],[2.101,0.094],[-1.338,-0.268],[0.196,2.364]],\"o\":[[-1.511,-0.52],[0.214,-0.235],[0.839,-0.926],[0.206,1.294],[1.001,-0.165],[0,-0.852],[-0.736,-0.892],[1.318,-0.812],[5.801,-4.172],[12.494,4.84],[-1.92,-17.619],[-17.842,-8.63],[-2.294,0.177],[23.522,-10.985],[-24,-13.06],[-13.177,5.106],[2.661,-32.228],[-0.444,0.238],[-4.654,2.809],[-0.392,-2.676],[-23.31,-24.371],[20.57,-5.236],[8.294,8.117],[0,0],[-28.383,-1.118],[9.529,-10.302],[18.7,-1.015],[-16.244,1.493],[-21.027,15.033],[-0.262,-25.112],[0.794,-0.109],[-0.262,0.111],[-2.03,0.538],[-0.118,1.99],[0.907,-0.076],[-1.078,3.918],[-2.259,-0.312],[1.759,1.765],[-2.579,0.386],[0,0],[-1.909,0.471],[0.471,3.176],[4.625,-0.348],[-0.117,1.529],[1.384,7.619],[0.981,-0.118],[-4.017,1.886],[1.882,6],[1.412,-0.235],[-2.536,1.202],[2.236,1.765],[0,0],[-2.626,0.916],[1.294,0.94],[-1.756,0.592],[3.059,-0.616],[-1.028,-3.058],[-2.648,-0.187],[1.381,0],[-0.011,-2.312],[-3.365,-0.151],[1.094,0.219],[-0.073,-0.881]],\"v\":[[3.405,-16.795],[3.844,-18.719],[2.92,-18.471],[4.364,-23.302],[9.045,-21.982],[10.03,-24.557],[9.442,-29.462],[8.86,-30.56],[8.54,-30.527],[35.622,-30.775],[69.161,-0.566],[42.696,-33.544],[9.445,-35.545],[28.963,-56.152],[80.617,-56.067],[25.147,-60.88],[3.705,-42.957],[49.687,-80.926],[19.666,-77.755],[-1.225,-49.557],[-8.324,-63.939],[-54.165,-71.408],[-12.264,-60.071],[-2.915,-35.887],[-38.874,-51.505],[-80.367,-32.353],[-39.286,-45.292],[-7.139,-32.478],[-37.482,-19.968],[-50.496,20.177],[-7.669,-28.449],[-4.598,-28.595],[-6.559,-28.518],[-9,-23.619],[-5.597,-20.288],[-3.306,-23.916],[-1.75,-18.373],[-3.324,-17.538],[-1.898,-14.164],[-1.621,-3.525],[-1.681,-2.429],[-3.117,3.657],[-0.063,9.956],[-2.673,13.12],[-0.532,31.414],[4.868,37.727],[3.684,39.44],[2.956,50.054],[8.618,55.003],[6.14,57.308],[10.242,82.318],[23.845,81.631],[16.117,55.587],[15.97,53.797],[10.935,38.786],[9.676,36.924],[10.966,28.315],[7.577,12.502],[5.796,10.47],[6.854,3.698],[4.452,-1.216],[5.267,-2.542],[5.107,-8.611]],\"c\":true}]},{\"t\":119,\"s\":[{\"i\":[[1.039,1.412],[0.723,0.936],[-0.593,0.653],[0,0],[-0.853,-0.548],[0,0.853],[1.912,2.317],[1.35,-0.065],[0.272,-0.03],[-5.082,-0.564],[-4.047,-11.355],[10.047,4.86],[2.294,-0.176],[-23.522,10.984],[0,0],[12.703,-4.923],[0,0],[-5.617,4.009],[0.577,-0.294],[5.608,-18.205],[4.008,4.423],[0,0],[-8.294,-8.118],[0,0],[28.878,1.137],[0,0],[-18.727,0.09],[0,0],[7.717,-7.534],[-3.529,17.893],[-10.519,2.863],[-0.626,0.072],[0.394,-0.105],[0.735,-1.852],[-1.054,0.089],[-0.165,0.54],[-1.743,-1.125],[-0.846,-0.848],[2.576,-2.383],[-2.824,-1.647],[1.91,-0.47],[-0.471,-3.177],[-4.379,1.528],[0.118,-1.529],[-2.241,-7.412],[-0.981,0.118],[4.239,-3.558],[-1.883,-6],[-1.411,0.234],[1.53,-2.353],[-2.235,-1.764],[0,0],[3.294,1.294],[-1.294,-0.942],[2,2.353],[-3.059,0.616],[1.029,3.059],[1.059,0.706],[-1.381,0],[0.588,2.235],[3.295,0.706],[-1.059,0.353],[0.059,0.882]],\"o\":[[-0.947,-1.287],[0.214,-0.235],[0.839,-0.926],[0.206,1.294],[0.853,0.55],[0,-0.852],[-0.666,-0.807],[-0.26,0.012],[5.801,-4.172],[13.408,1.49],[-3.914,-12.731],[-17.842,-8.63],[-2.294,0.177],[23.522,-10.985],[-24,-13.06],[-13.177,5.106],[-1.712,-19.225],[-0.444,0.238],[-4.842,2.471],[-0.392,-2.676],[-19.727,-21.77],[20.57,-5.236],[8.294,8.117],[0,0],[-28.383,-1.118],[9.529,-10.302],[18.727,-0.09],[-16.244,1.493],[-18.019,17.591],[3.529,-17.893],[0.773,-0.21],[-0.262,0.111],[-2.03,0.538],[-0.736,1.853],[0.907,-0.076],[-0.345,1.053],[-0.996,-0.644],[1.759,1.765],[-2.578,2.382],[0,0],[-1.909,0.471],[0.471,3.176],[4.379,-1.527],[-0.117,1.529],[2.242,7.412],[0.981,-0.118],[-4.239,3.558],[1.882,6],[1.412,-0.236],[-1.529,2.353],[2.236,1.765],[0,0],[-3.294,-1.294],[1.294,0.94],[-2,-2.353],[3.059,-0.616],[-1.028,-3.058],[-1.058,-0.706],[1.381,0],[-0.589,-2.236],[-3.294,-0.706],[1.059,-0.353],[-0.059,-0.882]],\"v\":[[3.28,-16.233],[3.719,-19.782],[3.294,-19.659],[4.676,-24.365],[8.794,-22.92],[10.03,-24.557],[9.441,-29.462],[6.276,-30.404],[5.478,-30.34],[27.06,-35.213],[64.911,-10.191],[42.695,-33.544],[7.383,-34.233],[27.089,-58.527],[80.617,-56.067],[25.147,-60.88],[2.892,-41.645],[19.686,-76.676],[18.166,-75.88],[-1.225,-49.557],[-8.324,-63.939],[-48.54,-73.408],[-10.264,-61.321],[-2.853,-34.762],[-40,-51.88],[-80.617,-32.228],[-41.411,-47.292],[-4.264,-32.228],[-37.482,-19.968],[-49.246,5.677],[-7.669,-28.449],[-5.598,-28.846],[-6.559,-28.518],[-7.5,-24.057],[-5.035,-21.351],[-3.306,-23.916],[-1.75,-18.373],[-3.074,-18.351],[-0.805,-13.321],[-1.559,-4.057],[-0.65,-1.586],[-3.617,4.532],[1.063,11.706],[-1.736,15.12],[-0.095,34.414],[4.93,38.414],[3.56,42.065],[3.206,54.179],[8.617,55.003],[6.264,59.12],[10.617,83.943],[24.97,83.943],[16.617,58.649],[14.97,54.297],[13.56,41.473],[9.676,37.736],[11.529,33.002],[8.264,13.002],[6.296,10.533],[6.854,4.885],[4.264,-0.998],[5.736,-2.292],[5.794,-7.174]],\"c\":true}]}],\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0,0,0,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[80.868,85.959],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 2\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":120,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":9,\"ty\":4,\"nm\":\"Layer 1 Outlines\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[355.666,369.976,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[94.775,102.162,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[1.984,-1.678],[-2.261,-1.951],[-2.539,2.709],[3.919,1.187]],\"o\":[[0,0],[2.26,1.951],[2.538,-2.708],[-2.19,-0.663]],\"v\":[[-3.411,-4.509],[-4.101,1.784],[2.899,3.866],[2.443,-5.911]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.411999990426,0.626999978458,0.156999999402,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[89.453,67.822],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 1\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[-2.572,0.365],[0.047,-2.985],[3.711,-0.093],[-1.72,3.716]],\"o\":[[0,0],[-0.047,2.986],[-3.711,0.094],[0.962,-2.077]],\"v\":[[0.448,-5.188],[5.605,-1.518],[2.504,5.094],[-4.495,-1.749]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.411999990426,0.626999978458,0.156999999402,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[95.523,63.935],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 2\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":2,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[2.559,-0.452],[-0.97,-2.823],[-3.557,1.062],[2.787,2.998]],\"o\":[[0,0],[0.971,2.824],[3.557,-1.062],[-1.559,-1.676]],\"v\":[[-1.908,-5.511],[-5.673,-0.423],[-0.673,4.901],[3.857,-3.776]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.411999990426,0.626999978458,0.156999999402,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[85.073,65.635],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 3\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":3,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[-1.453,3.273],[0,0],[0,0],[0,0],[-0.435,0.818],[0,0],[-3.868,0.502],[-0.61,0.905],[0,0],[-3.21,0.517],[-0.813,0.97],[3.911,-0.218],[-5.163,-0.527],[-1.241,0.993],[2.265,-0.093],[-3.674,-0.248],[-1.156,0.586],[2.325,0.452],[-3.368,-0.823],[-1.044,0.321],[5.141,0.69],[-4.648,-2.729],[-1.957,0.216],[5.865,3.014],[-3.392,-2.508],[-1.733,-0.051],[3.265,1.66],[-6.172,-2.981],[-0.005,0.002],[-0.082,-0.029],[20.075,-18.368],[0,0]],\"o\":[[1.206,-3.983],[0,0],[0,0],[0,0],[0.415,-0.871],[0,0],[0,0],[0.584,-0.989],[0,0],[0,0],[0.788,-1.088],[-2.006,-0.743],[0,0],[1.208,-1.215],[-1.602,-1.147],[0.806,-0.055],[1.15,-0.737],[-1.381,-0.776],[0,0],[1.055,-0.426],[-1.63,-0.814],[0.412,-0.03],[2.099,-0.56],[-0.499,-0.519],[5.65,2.055],[1.974,-0.19],[-1.032,-1.024],[0.304,0.078],[0,0],[0.934,0.244],[-8.012,-8.273],[-20.08,18.37],[4.033,1.518]],\"v\":[[-22.952,25.068],[-18.956,14.193],[-22.847,14.383],[-22.309,12.594],[-17.823,11.754],[-16.541,9.223],[-22.296,8.648],[-15.063,6.609],[-13.274,3.77],[-19.329,4.195],[-12.059,2.016],[-9.658,-1.061],[-19.01,-2.549],[-6.893,-4.074],[-3.225,-7.383],[-9.506,-9.799],[0.351,-9.966],[3.804,-11.951],[-2.12,-14.255],[7.085,-13.453],[10.239,-14.573],[0.231,-17.359],[11.93,-15.057],[18.037,-16.193],[10.349,-21.337],[20.205,-16.378],[24.329,-16.441],[18.139,-20.622],[34.281,-15.055],[34.295,-15.055],[35.854,-14.594],[-15.774,-12.469],[-26.611,29.318]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.216000007181,0.702000038297,0.289999988032,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[116.034,31.087],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 4\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":4,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[-3.865,2.407],[0,0],[0,0],[0,0],[-1.05,0.556],[0,0],[-4.845,-1.936],[-1.312,0.534],[0,0],[-4.089,-1.505],[-1.592,0.471],[4.709,2.254],[-5.675,-3.803],[-2.106,0.225],[2.705,1.337],[-4.122,-2.577],[-1.737,-0.137],[2.413,1.932],[-3.383,-2.967],[-1.43,-0.334],[5.541,3.954],[-3.613,-5.714],[-2.427,-1.018],[4.845,6.774],[-2.295,-4.695],[-1.989,-1.148],[2.709,3.753],[-5.225,-6.935],[-0.008,-0.001],[-0.078,-0.081],[35.602,-5.961],[0,0]],\"o\":[[4.047,-3.284],[0,0],[0,0],[0,0],[1.061,-0.622],[0,0],[0,0],[1.338,-0.635],[0,0],[0,0],[1.639,-0.607],[-1.849,-2.024],[0,0],[2.215,-0.471],[-1.108,-2.178],[0.978,0.454],[1.831,-0.022],[-1.096,-1.662],[0,0],[1.513,0.235],[-1.361,-1.858],[0.501,0.229],[2.819,0.76],[-0.238,-0.843],[5.231,5.663],[2.429,1.056],[-0.526,-1.694],[0.302,0.271],[0,0],[0.929,0.839],[-3.864,-13.475],[-35.611,5.959],[3.697,4.095]],\"v\":[[-43.914,16.73],[-32.04,8.209],[-36.706,5.94],[-34.893,4.462],[-29.1,6.447],[-25.926,4.686],[-32.259,0.461],[-22.469,2.966],[-18.499,1.212],[-25.845,-2.186],[-15.917,0.199],[-11.076,-1.407],[-21.001,-8.838],[-5.852,-2.72],[0.621,-3.761],[-5.104,-10.19],[6.505,-4.122],[11.852,-3.954],[6.466,-10.046],[16.676,-3.406],[21.099,-2.548],[11.268,-11.711],[23.392,-1.969],[31.271,0.741],[25.711,-9.351],[33.923,1.925],[38.779,4.469],[34.327,-3.696],[49.47,12.175],[49.486,12.185],[51,13.638],[-10.647,-16.868],[-51,18.733]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.216000007181,0.702000038297,0.289999988032,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[138.3,42.032],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 5\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":5,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[-3.947,-0.418],[0,0],[0,0],[0,0],[-1.012,-0.181],[0,0],[-1.949,-3.918],[-1.168,-0.336],[0,0],[-1.722,-3.218],[-1.311,-0.529],[1.668,4.063],[-1.352,-5.641],[-1.493,-0.974],[0.932,2.363],[-1.094,-3.971],[-1.036,-1.023],[0.385,2.614],[-0.383,-3.842],[-0.719,-0.994],[1.174,5.672],[1.132,-5.847],[-0.947,-1.996],[-0.982,7.232],[1.366,-4.443],[-0.586,-1.851],[-0.528,4.02],[0.833,-7.545],[-0.004,-0.006],[-0.001,-0.097],[26.544,14.962],[0,0]],\"o\":[[4.596,-0.085],[0,0],[0,0],[0,0],[1.06,0.142],[0,0],[0,0],[1.246,0.281],[0,0],[0,0],[1.423,0.462],[0.035,-2.376],[0,0],[1.712,0.862],[0.606,-2.085],[0.355,0.834],[1.193,0.965],[0.301,-1.725],[0,0],[0.833,0.97],[0.248,-2.002],[0.183,0.425],[1.356,2.029],[0.357,-0.705],[-0.061,6.677],[0.925,2.023],[0.687,-1.441],[0.031,0.347],[0,0],[0.091,1.071],[5.672,-11.298],[-26.547,-14.967],[-0.098,4.783]],\"v\":[[-31.405,-14.234],[-18.596,-13.719],[-20.227,-17.768],[-18.164,-17.811],[-15.634,-13.354],[-12.524,-12.861],[-14.045,-19.144],[-9.255,-12.19],[-5.636,-11.268],[-8.31,-17.525],[-3.359,-10.581],[0.732,-9.091],[-1.161,-19.492],[4.892,-7.196],[9.692,-4.446],[9.897,-11.915],[13.701,-1.546],[17.043,1.429],[17.264,-5.626],[19.82,4.385],[22.149,7.339],[21.366,-4.197],[23.276,8.962],[26.71,15.034],[29.241,5.146],[27.7,17.262],[29.287,21.602],[31.365,13.628],[31.509,32.601],[31.512,32.617],[31.608,34.421],[10.371,-19.454],[-37.182,-16.652]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.216000007181,0.702000038297,0.289999988032,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[126.152,76.999],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 6\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":6,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[1.73,3.209],[0,0],[0,0],[0,0],[0.5,0.787],[0,0],[3.695,-0.214],[0.675,0.847],[0,0],[3.078,-0.07],[0.873,0.876],[-3.705,0.526],[4.799,-1.563],[1.278,0.818],[-2.141,0.338],[3.429,-0.977],[1.154,0.4],[-2.137,0.933],[3.076,-1.53],[1.017,0.139],[-4.76,1.732],[4.07,-3.81],[1.865,-0.148],[-5.183,4.351],[2.913,-3.332],[1.626,-0.39],[-2.887,2.403],[5.476,-4.374],[0.005,0.001],[0.075,-0.047],[-20.928,-15.69],[0,0]],\"o\":[[-1.577,-4.013],[0,0],[0,0],[0,0],[-0.487,-0.847],[0,0],[0,0],[-0.659,-0.941],[0,0],[0,0],[-0.862,-1.006],[1.806,-1.181],[0,0],[-1.271,-1.061],[1.379,-1.533],[-0.765,0.097],[-1.164,-0.563],[1.213,-1.095],[0,0],[-1.04,-0.25],[1.443,-1.184],[-0.39,0.047],[-2.037,-0.189],[0.412,-0.649],[-5.088,3.287],[-1.878,0.18],[0.858,-1.291],[-0.277,0.142],[0,0],[-0.853,0.441],[6.619,-10.372],[20.934,15.691],[-3.625,2.4]],\"v\":[[24.864,24.047],[19.895,13.228],[23.576,12.676],[22.872,10.874],[18.557,10.846],[17.07,8.397],[22.42,6.669],[15.389,5.898],[13.39,3.217],[19.135,2.497],[12.053,1.582],[9.45,-1.231],[18.085,-4.632],[6.515,-3.909],[2.696,-6.724],[8.338,-10.517],[-0.955,-8.784],[-4.425,-10.231],[0.894,-13.837],[-7.678,-11.198],[-10.77,-11.78],[-1.663,-16.69],[-12.415,-11.968],[-18.287,-11.995],[-11.624,-18.97],[-20.347,-11.771],[-24.235,-11.041],[-18.874,-16.698],[-33.443,-7.634],[-33.455,-7.63],[-34.872,-6.838],[13.937,-14.578],[28.777,27.868]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.216000007181,0.702000038297,0.289999988032,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[61.078,34.201],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 7\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":7,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[4.035,1.572],[0,0],[0,0],[0,0],[1.072,0.332],[0,0],[3.852,-2.822],[1.3,0.26],[0,0],[3.282,-2.256],[1.536,0.144],[-3.653,3.103],[4.137,-4.789],[1.934,-0.195],[-2.088,1.823],[3.05,-3.3],[1.518,-0.472],[-1.682,2.34],[2.296,-3.531],[1.194,-0.603],[-3.981,4.909],[1.832,-6.235],[1.917,-1.46],[-2.672,7.502],[0.903,-4.991],[1.495,-1.5],[-1.503,4.16],[2.972,-7.731],[0.007,-0.003],[0.049,-0.093],[-33.222,1.202],[0,0]],\"o\":[[-4.412,-2.385],[0,0],[0,0],[0,0],[-1.098,-0.394],[0,0],[0,0],[-1.348,-0.353],[0,0],[0,0],[-1.611,-0.265],[1.157,-2.32],[0,0],[-2.091,-0.022],[0.458,-2.324],[-0.762,0.63],[-1.639,0.338],[0.574,-1.822],[0,0],[-1.293,0.523],[0.762,-2.064],[-0.392,0.319],[-2.331,1.287],[0.008,-0.862],[-3.286,6.503],[-1.91,1.497],[0.057,-1.741],[-0.204,0.321],[0,0],[-0.624,0.993],[0.163,-13.791],[33.229,-1.204],[-2.302,4.685]],\"v\":[[39.319,5.806],[26.647,-0.113],[30.256,-3.221],[28.278,-4.295],[23.592,-1.242],[20.332,-2.324],[24.954,-7.651],[16.827,-3.311],[12.858,-4.231],[18.585,-8.956],[10.307,-4.707],[5.595,-5.312],[12.641,-14.444],[0.614,-5.56],[-5.416,-5.3],[-1.873,-12.64],[-10.755,-4.498],[-15.485,-3.289],[-12.164,-10.236],[-19.656,-1.815],[-23.393,-0.119],[-16.854,-10.907],[-25.299,0.89],[-31.669,5.054],[-29.168,-5.798],[-33.747,6.718],[-37.459,10.129],[-35.477,1.36],[-45.122,19.676],[-45.134,19.689],[-46.13,21.39],[1.445,-20.186],[46.13,6.357]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.216000007181,0.702000038297,0.289999988032,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[46.38,57.709],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 8\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":8,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[0,0],[3.434,-1.991],[0,0],[0,0],[0,0],[0.851,-0.578],[0,0],[0.183,-4.373],[0.93,-0.783],[0,0],[0.261,-3.641],[0.98,-1.018],[0.132,4.39],[-1.063,-5.701],[0.966,-1.497],[0.112,2.538],[-0.618,-4.072],[0.529,-1.357],[0.714,2.544],[-1.216,-3.664],[0.251,-1.2],[1.24,5.659],[-3.418,-4.878],[0.052,-2.208],[3.844,6.204],[-3.057,-3.502],[-0.219,-1.928],[2.12,3.456],[-3.837,-6.551],[0.002,-0.007],[-0.039,-0.089],[-18.142,24.48],[0,0]],\"o\":[[-4.232,1.795],[0,0],[0,0],[0,0],[-0.91,0.561],[0,0],[0,0],[-1.023,0.764],[0,0],[0,0],[-1.112,1.002],[-1.001,-2.155],[0,0],[-1.212,1.486],[-1.403,-1.657],[0.016,0.906],[-0.695,1.367],[-0.977,-1.453],[0,0],[-0.365,1.226],[-1.043,-1.727],[0.006,0.463],[-0.412,2.406],[-0.612,-0.499],[2.777,6.073],[-0.02,2.224],[-1.215,-1.036],[0.113,0.33],[0,0],[0.354,1.015],[-9.784,-8.006],[18.143,-24.487],[2.039,4.327]],\"v\":[[26.045,-28.941],[14.558,-23.251],[14.397,-27.614],[12.496,-26.812],[12.002,-21.71],[9.362,-19.993],[8.191,-26.35],[6.65,-18.048],[3.721,-15.731],[3.613,-22.536],[1.922,-14.176],[-1.206,-11.148],[-3.716,-21.417],[-4.234,-7.723],[-7.496,-3.255],[-10.727,-9.991],[-9.976,1.027],[-11.815,5.106],[-14.891,-1.246],[-13.145,8.936],[-14.068,12.583],[-18.055,1.73],[-14.435,14.525],[-15.098,21.469],[-21.438,13.471],[-15.094,23.909],[-14.774,28.518],[-19.921,22.083],[-12.32,39.468],[-12.317,39.483],[-11.668,41.17],[-14.232,-16.683],[30.335,-33.503]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.216000007181,0.702000038297,0.289999988032,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[59.941,92.534],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 9\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":9,\"mn\":\"ADBE Vector Group\",\"hd\":false},{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[6.551,12.375],[-5.003,59.237],[-0.738,-5.058],[-13.163,-16.324]],\"o\":[[0,0],[2.824,-33.443],[7.919,54.232],[13.165,16.324]],\"v\":[[-6.449,65.559],[-24.465,-48.967],[-14.631,-46.331],[16.303,66.086]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.458999992819,0.298000021542,0.156999999402,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[109.76,121.664],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 10\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":10,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":120,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":10,\"ty\":4,\"nm\":\"mask 2\",\"td\":1,\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[370.505,308.378,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[351.872,254.749,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[81.829,6.263],[0,0],[0,0],[23.221,46.988],[0,0],[0,0],[91.269,0],[0,-140.556],[-140.555,0],[-44.463,37.998],[-50.754,0],[0,87.564]],\"o\":[[0,0],[0,0],[-33.765,-1.077],[-0.05,-0.101],[0,0],[-35.676,-79.542],[-140.555,0],[0,140.556],[63.074,0],[29.02,37.102],[87.564,0],[0,-83.435]],\"v\":[[205.345,-62.128],[205.345,-62.128],[205.343,-62.128],[119.184,-134.124],[119.103,-134.287],[119.095,-134.268],[-97.124,-254.499],[-351.622,0],[-97.124,254.499],[68.118,193.545],[193.075,254.499],[351.622,95.951]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":0,\"s\":[0.815686285496,0.320554375648,0.102360628545,1]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":30,\"s\":[0,0.359877437353,0.639215707779,1]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":60,\"s\":[0.815686285496,0.320554375648,0.102360628545,1]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":90,\"s\":[1,0.776470601559,0,1]},{\"t\":119,\"s\":[0.815686285496,0.320554375648,0.102360628545,1]}],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[351.872,254.749],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 1\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":120,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":11,\"ty\":4,\"nm\":\"sun\",\"tt\":1,\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":1,\"k\":[{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":0,\"s\":[549.75,521.25,0],\"to\":[1.913,71.424,0],\"ti\":[123.75,7.25,0]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":30,\"s\":[381.75,681.25,0],\"to\":[-123.75,-7.25,0],\"ti\":[7.333,82.333,0]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":60,\"s\":[179.75,479.25,0],\"to\":[-7.333,-82.333,0],\"ti\":[-170.25,-8.75,0]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":90,\"s\":[337.75,187.25,0],\"to\":[170.25,8.75,0],\"ti\":[-3,-112,0]},{\"t\":119,\"s\":[549.75,521.25,0]}],\"ix\":2},\"a\":{\"a\":0,\"k\":[-144.25,-190.75,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[127.586,127.586,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[45.25,0],[0,-10.5],[-50,0],[0,15.75]],\"o\":[[-48,0],[0,10.5],[50,0],[0,-3.162]],\"v\":[[-143,-243],[-195,-193],[-140.75,-140],[-92,-193]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"st\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":3},\"o\":{\"a\":0,\"k\":100,\"ix\":4},\"w\":{\"a\":0,\"k\":2,\"ix\":5},\"lc\":1,\"lj\":1,\"ml\":4,\"bm\":0,\"nm\":\"Stroke 1\",\"mn\":\"ADBE Vector Graphic - Stroke\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Shape 1\",\"np\":3,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":120,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":12,\"ty\":4,\"nm\":\"mask\",\"td\":1,\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[370.505,308.378,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[351.872,254.749,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[81.829,6.263],[0,0],[0,0],[23.221,46.988],[0,0],[0,0],[91.269,0],[0,-140.556],[-140.555,0],[-44.463,37.998],[-50.754,0],[0,87.564]],\"o\":[[0,0],[0,0],[-33.765,-1.077],[-0.05,-0.101],[0,0],[-35.676,-79.542],[-140.555,0],[0,140.556],[63.074,0],[29.02,37.102],[87.564,0],[0,-83.435]],\"v\":[[205.345,-62.128],[205.345,-62.128],[205.343,-62.128],[119.184,-134.124],[119.103,-134.287],[119.095,-134.268],[-97.124,-254.499],[-351.622,0],[-97.124,254.499],[68.118,193.545],[193.075,254.499],[351.622,95.951]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":0,\"s\":[0.815686285496,0.320554375648,0.102360628545,1]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":30,\"s\":[0,0.359877437353,0.639215707779,1]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":60,\"s\":[0.815686285496,0.320554375648,0.102360628545,1]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":90,\"s\":[1,0.776470601559,0,1]},{\"t\":119,\"s\":[0.815686285496,0.320554375648,0.102360628545,1]}],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[351.872,254.749],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 1\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":120,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":13,\"ty\":4,\"nm\":\"moon\",\"tt\":1,\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":1,\"k\":[{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":0,\"s\":[179.75,479.25,0],\"to\":[-1.667,-1,0],\"ti\":[-193.408,6.431,0]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":30,\"s\":[337.75,187.25,0],\"to\":[235.006,-7.814,0],\"ti\":[-3,-112,0]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":60,\"s\":[549.75,521.25,0],\"to\":[1.913,71.424,0],\"ti\":[61.667,7,0]},{\"i\":{\"x\":0.833,\"y\":0.833},\"o\":{\"x\":0.167,\"y\":0.167},\"t\":90,\"s\":[381.75,681.25,0],\"to\":[-185.667,-7,0],\"ti\":[1.667,1,0]},{\"t\":119,\"s\":[179.75,479.25,0]}],\"ix\":2},\"a\":{\"a\":0,\"k\":[-144.25,-190.75,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[64.532,64.532,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[45.25,0],[0,-10.5],[-50,0],[0,15.75]],\"o\":[[-48,0],[0,10.5],[50,0],[0,-3.162]],\"v\":[[-143,-243],[-195,-193],[-140.75,-140],[-92,-193]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"st\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":3},\"o\":{\"a\":0,\"k\":100,\"ix\":4},\"w\":{\"a\":0,\"k\":2,\"ix\":5},\"lc\":1,\"lj\":1,\"ml\":4,\"bm\":0,\"nm\":\"Stroke 1\",\"mn\":\"ADBE Vector Graphic - Stroke\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[1,1,1,1],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Shape 1\",\"np\":3,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":120,\"st\":0,\"bm\":0},{\"ddd\":0,\"ind\":14,\"ty\":4,\"nm\":\"Layer 3 Outlines\",\"sr\":1,\"ks\":{\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10},\"p\":{\"a\":0,\"k\":[370.505,308.378,0],\"ix\":2},\"a\":{\"a\":0,\"k\":[351.872,254.749,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6}},\"ao\":0,\"shapes\":[{\"ty\":\"gr\",\"it\":[{\"ind\":0,\"ty\":\"sh\",\"ix\":1,\"ks\":{\"a\":0,\"k\":{\"i\":[[81.829,6.263],[0,0],[0,0],[23.221,46.988],[0,0],[0,0],[91.269,0],[0,-140.556],[-140.555,0],[-44.463,37.998],[-50.754,0],[0,87.564]],\"o\":[[0,0],[0,0],[-33.765,-1.077],[-0.05,-0.101],[0,0],[-35.676,-79.542],[-140.555,0],[0,140.556],[63.074,0],[29.02,37.102],[87.564,0],[0,-83.435]],\"v\":[[205.345,-62.128],[205.345,-62.128],[205.343,-62.128],[119.184,-134.124],[119.103,-134.287],[119.095,-134.268],[-97.124,-254.499],[-351.622,0],[-97.124,254.499],[68.118,193.545],[193.075,254.499],[351.622,95.951]],\"c\":true},\"ix\":2},\"nm\":\"Path 1\",\"mn\":\"ADBE Vector Shape - Group\",\"hd\":false},{\"ty\":\"fl\",\"c\":{\"a\":1,\"k\":[{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":0,\"s\":[0.815686285496,0.320554375648,0.102360628545,1]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":30,\"s\":[0,0.359877437353,0.639215707779,1]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":60,\"s\":[0.815686285496,0.320554375648,0.102360628545,1]},{\"i\":{\"x\":[0.833],\"y\":[0.833]},\"o\":{\"x\":[0.167],\"y\":[0.167]},\"t\":90,\"s\":[1,0.776470601559,0,1]},{\"t\":119,\"s\":[0.815686285496,0.320554375648,0.102360628545,1]}],\"ix\":4},\"o\":{\"a\":0,\"k\":100,\"ix\":5},\"r\":1,\"bm\":0,\"nm\":\"Fill 1\",\"mn\":\"ADBE Vector Graphic - Fill\",\"hd\":false},{\"ty\":\"tr\",\"p\":{\"a\":0,\"k\":[351.872,254.749],\"ix\":2},\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"o\":{\"a\":0,\"k\":100,\"ix\":7},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"nm\":\"Transform\"}],\"nm\":\"Group 1\",\"np\":2,\"cix\":2,\"bm\":0,\"ix\":1,\"mn\":\"ADBE Vector Group\",\"hd\":false}],\"ip\":0,\"op\":120,\"st\":0,\"bm\":0}],\"markers\":[]}"
  },
  {
    "path": "src/Presentations/Windows/Resources/Raw/river.json",
    "content": "{\n    \"type\": \"GeometryCollection\",\n    \"geometries\": [\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    151.50595136810452,\n                    -29.84026458125537\n                ],\n                [\n                    151.44475345143783,\n                    -29.84555429479706\n                ],\n                [\n                    151.38729902435452,\n                    -29.81967538854705\n                ],\n                [\n                    151.3391219410212,\n                    -29.827650648963726\n                ],\n                [\n                    151.1566675139378,\n                    -29.778252862505397\n                ],\n                [\n                    151.15040123789618,\n                    -29.737806898963683\n                ],\n                [\n                    151.12248782643783,\n                    -29.700046482297054\n                ],\n                [\n                    151.12590579518783,\n                    -29.535821221880383\n                ],\n                [\n                    151.1120711597712,\n                    -29.508721612505415\n                ],\n                [\n                    151.0097762378962,\n                    -29.425957940630383\n                ],\n                [\n                    150.96721438893783,\n                    -29.304538669797036\n                ],\n                [\n                    150.9148055347712,\n                    -29.278334242713708\n                ],\n                [\n                    150.9091903003962,\n                    -29.26140715938034\n                ],\n                [\n                    150.9668074878962,\n                    -29.151299737505372\n                ],\n                [\n                    150.96729576914618,\n                    -29.11166757604704\n                ],\n                [\n                    150.9443465503962,\n                    -29.073093357297033\n                ],\n                [\n                    150.8652449878962,\n                    -29.024590753130365\n                ],\n                [\n                    150.7343856128962,\n                    -28.80779387813037\n                ],\n                [\n                    150.6836043628962,\n                    -28.764092706255354\n                ],\n                [\n                    150.5090438160212,\n                    -28.693291925005376\n                ],\n                [\n                    150.46688886810452,\n                    -28.6498348937553\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    151.8015242847712,\n                    -25.776706638546905\n                ],\n                [\n                    151.81511477956283,\n                    -25.701592706255227\n                ],\n                [\n                    151.69686933685452,\n                    -25.61427174271356\n                ],\n                [\n                    151.67050214935452,\n                    -25.619561456255223\n                ],\n                [\n                    151.6731063160212,\n                    -25.596123956255234\n                ],\n                [\n                    151.65007571706283,\n                    -25.58489348750521\n                ],\n                [\n                    151.67050214935452,\n                    -25.537611586463573\n                ],\n                [\n                    151.6660262378962,\n                    -25.467787367713584\n                ],\n                [\n                    151.6967879566462,\n                    -25.397963148963544\n                ],\n                [\n                    151.7849227222712,\n                    -25.38738372188024\n                ],\n                [\n                    151.8204044931045,\n                    -25.3385555968802\n                ],\n                [\n                    151.85897871185452,\n                    -25.351576430213548\n                ],\n                [\n                    151.86988365977118,\n                    -25.338392836463566\n                ],\n                [\n                    151.87924238372952,\n                    -25.3577613260469\n                ],\n                [\n                    151.89559980560452,\n                    -25.353529555213584\n                ],\n                [\n                    151.95696048268783,\n                    -25.2885067687552\n                ],\n                [\n                    151.9995223316462,\n                    -25.296807550005198\n                ],\n                [\n                    152.0240991545628,\n                    -25.254245701046887\n                ],\n                [\n                    151.98707115977118,\n                    -25.1322567687552\n                ],\n                [\n                    152.02003014414618,\n                    -25.085137628130205\n                ],\n                [\n                    152.0351668628962,\n                    -25.087253513546877\n                ],\n                [\n                    152.06096438893783,\n                    -25.044284763546887\n                ],\n                [\n                    152.1057235035212,\n                    -25.052748305213548\n                ],\n                [\n                    152.0991317066462,\n                    -24.99504973750522\n                ],\n                [\n                    152.1123966806045,\n                    -24.97364674271352\n                ],\n                [\n                    152.13729902435452,\n                    -24.969903253130184\n                ],\n                [\n                    152.18506920664618,\n                    -24.99513111771355\n                ],\n                [\n                    152.17766360768783,\n                    -24.982273044796887\n                ],\n                [\n                    152.1987410816462,\n                    -24.975274346880205\n                ],\n                [\n                    152.18612714935452,\n                    -24.962416273963544\n                ],\n                [\n                    152.1936141285212,\n                    -24.94565195104689\n                ],\n                [\n                    152.23934980560452,\n                    -24.937676690630187\n                ],\n                [\n                    152.2602645191462,\n                    -24.89275481563022\n                ],\n                [\n                    152.3593856128962,\n                    -24.85198333125518\n                ],\n                [\n                    152.40479576901248,\n                    -24.74871184701316\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    117.5438745451879,\n                    -32.642754815630525\n                ],\n                [\n                    117.58073977956289,\n                    -32.615573826047196\n                ],\n                [\n                    117.5983992847712,\n                    -32.598158461463875\n                ],\n                [\n                    117.61768639414622,\n                    -32.52703215938052\n                ],\n                [\n                    117.4619246753962,\n                    -32.4037411437555\n                ],\n                [\n                    117.3564559253962,\n                    -32.341810805213825\n                ],\n                [\n                    117.2548934253962,\n                    -32.33936939896386\n                ],\n                [\n                    117.2241317066462,\n                    -32.2924943989638\n                ],\n                [\n                    117.1157332691462,\n                    -32.227552992713846\n                ],\n                [\n                    116.98536217539619,\n                    -32.195733331255504\n                ],\n                [\n                    116.94638105560453,\n                    -32.156752211463846\n                ],\n                [\n                    116.9206649097712,\n                    -32.095228773963804\n                ],\n                [\n                    116.81845136810452,\n                    -32.05706145625552\n                ],\n                [\n                    116.77401777435452,\n                    -31.89763762813048\n                ],\n                [\n                    116.79712975352119,\n                    -31.81397877396381\n                ],\n                [\n                    116.67522220143789,\n                    -31.74106210729716\n                ],\n                [\n                    116.64763431081289,\n                    -31.664890232297132\n                ],\n                [\n                    116.4712020191462,\n                    -31.521172784380475\n                ],\n                [\n                    116.43466230560453,\n                    -31.51238372188042\n                ],\n                [\n                    116.3693139983129,\n                    -31.546237888547154\n                ],\n                [\n                    116.31690514414622,\n                    -31.54428476354717\n                ],\n                [\n                    116.19865970143789,\n                    -31.59246184688044\n                ],\n                [\n                    116.18222089935453,\n                    -31.63071054479713\n                ],\n                [\n                    116.1013289722712,\n                    -31.673028253130497\n                ],\n                [\n                    116.0517684253962,\n                    -31.721693617713775\n                ],\n                [\n                    115.97169030039622,\n                    -31.872409763547164\n                ],\n                [\n                    115.74413339486938,\n                    -32.01327892876878\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    128.7387801441462,\n                    -16.10792408646335\n                ],\n                [\n                    128.7172957691462,\n                    -16.179375909380013\n                ],\n                [\n                    128.7380477222712,\n                    -16.21485768021336\n                ],\n                [\n                    128.7331649097712,\n                    -16.361260675005003\n                ],\n                [\n                    128.6977645191462,\n                    -16.54314544063004\n                ],\n                [\n                    128.70004316497952,\n                    -16.577976169796706\n                ],\n                [\n                    128.7629500660212,\n                    -16.669122003130024\n                ],\n                [\n                    128.76164798268783,\n                    -16.730645440629992\n                ],\n                [\n                    128.73406009206283,\n                    -16.788506768755045\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        128.7390242847712,\n                        -16.1082496072967\n                    ],\n                    [\n                        128.7265731128962,\n                        -16.096530857296717\n                    ],\n                    [\n                        128.6879988941462,\n                        -16.10059986771337\n                    ],\n                    [\n                        128.6801863941462,\n                        -16.083672784380003\n                    ],\n                    [\n                        128.7006942066462,\n                        -15.998386326046711\n                    ],\n                    [\n                        128.74911543060452,\n                        -15.952080987505006\n                    ],\n                    [\n                        128.76506595143783,\n                        -15.877292576046713\n                    ],\n                    [\n                        128.6938582691462,\n                        -15.697279555213365\n                    ],\n                    [\n                        128.71347089935452,\n                        -15.643975518755003\n                    ],\n                    [\n                        128.69402102956283,\n                        -15.576104425005036\n                    ],\n                    [\n                        128.6660262378962,\n                        -15.555596612505024\n                    ],\n                    [\n                        128.6352645191462,\n                        -15.56690846146338\n                    ],\n                    [\n                        128.59905032643783,\n                        -15.552666925005035\n                    ],\n                    [\n                        128.5656844410212,\n                        -15.568698826046688\n                    ],\n                    [\n                        128.53622480560452,\n                        -15.517917576046713\n                    ],\n                    [\n                        128.4821883472712,\n                        -15.574883721880028\n                    ],\n                    [\n                        128.42986087331283,\n                        -15.546726169796711\n                    ],\n                    [\n                        128.4248153003962,\n                        -15.51433684688003\n                    ],\n                    [\n                        128.36483808685452,\n                        -15.525323175005036\n                    ],\n                    [\n                        128.3654891285212,\n                        -15.488702081255036\n                    ],\n                    [\n                        128.31047610768783,\n                        -15.45802174271336\n                    ],\n                    [\n                        128.28923587331283,\n                        -15.401788018755033\n                    ]\n                ],\n                [\n                    [\n                        127.57813561289619,\n                        -17.623223565630052\n                    ],\n                    [\n                        127.6123966806045,\n                        -17.622002862505003\n                    ],\n                    [\n                        127.6967879566462,\n                        -17.560560805213356\n                    ],\n                    [\n                        127.74358157643783,\n                        -17.573093357296706\n                    ],\n                    [\n                        127.85246829518783,\n                        -17.476006768755038\n                    ],\n                    [\n                        127.9292098316462,\n                        -17.46290455521336\n                    ],\n                    [\n                        128.0559188160212,\n                        -17.471205336463356\n                    ],\n                    [\n                        128.23259524831283,\n                        -17.54298268021338\n                    ],\n                    [\n                        128.3342391285212,\n                        -17.690931898963395\n                    ],\n                    [\n                        128.3974715503962,\n                        -17.708835544796663\n                    ],\n                    [\n                        128.4504500660212,\n                        -17.697930596880063\n                    ],\n                    [\n                        128.52255293060452,\n                        -17.621433201046703\n                    ],\n                    [\n                        128.6196395191462,\n                        -17.58782317500501\n                    ],\n                    [\n                        128.6455184253962,\n                        -17.540052992713353\n                    ],\n                    [\n                        128.7504988941462,\n                        -17.47983163854669\n                    ],\n                    [\n                        128.90617923268783,\n                        -17.28679778438003\n                    ],\n                    [\n                        128.87932376393783,\n                        -17.21648528438005\n                    ],\n                    [\n                        128.8466903003962,\n                        -17.175957940630003\n                    ],\n                    [\n                        128.8483992847712,\n                        -17.13128020625501\n                    ],\n                    [\n                        128.8857528003962,\n                        -17.090997003129996\n                    ],\n                    [\n                        128.8820906910212,\n                        -17.077650648963377\n                    ],\n                    [\n                        128.7690535816462,\n                        -17.0193824197967\n                    ],\n                    [\n                        128.7485457691462,\n                        -16.985202732296678\n                    ],\n                    [\n                        128.7006942066462,\n                        -16.960788669796695\n                    ],\n                    [\n                        128.68563886810452,\n                        -16.841241143755028\n                    ],\n                    [\n                        128.73406009206283,\n                        -16.788506768755045\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    133.1342879566462,\n                    -13.298272393755044\n                ],\n                [\n                    133.1440535816462,\n                    -13.342217706255061\n                ],\n                [\n                    133.2099715503962,\n                    -13.421807550005049\n                ],\n                [\n                    133.22234134206283,\n                    -13.46209075313005\n                ],\n                [\n                    133.2277938160212,\n                    -13.639825128130067\n                ],\n                [\n                    133.19255618581283,\n                    -13.71143971146339\n                ],\n                [\n                    133.11093183685452,\n                    -13.749525648963404\n                ],\n                [\n                    132.9321395191462,\n                    -13.695000909380058\n                ],\n                [\n                    132.7922469410212,\n                    -13.852715753130067\n                ],\n                [\n                    132.7885848316462,\n                    -13.934258721880038\n                ],\n                [\n                    132.77165774831283,\n                    -13.975599867713376\n                ],\n                [\n                    132.74813886810452,\n                    -13.992608331255036\n                ],\n                [\n                    132.7233992847712,\n                    -14.137139581255049\n                ],\n                [\n                    132.68181399831283,\n                    -14.195245050005068\n                ],\n                [\n                    132.5720320972712,\n                    -14.285170180213406\n                ],\n                [\n                    132.4155379566462,\n                    -14.319349867713399\n                ],\n                [\n                    132.4155379566462,\n                    -14.353448175005061\n                ],\n                [\n                    132.36288496185452,\n                    -14.367689711463406\n                ],\n                [\n                    132.2207137378962,\n                    -14.508233331255058\n                ],\n                [\n                    132.13518313893783,\n                    -14.532728773963397\n                ],\n                [\n                    132.11858157643783,\n                    -14.556817315630044\n                ],\n                [\n                    132.0654403003962,\n                    -14.579441013546717\n                ],\n                [\n                    131.9953719410212,\n                    -14.673842055213386\n                ],\n                [\n                    131.9624129566462,\n                    -14.696140232296711\n                ],\n                [\n                    131.84367923268783,\n                    -14.705743096880049\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    143.4687606128962,\n                    -16.484307550005035\n                ],\n                [\n                    143.4221297535212,\n                    -16.500502211463377\n                ],\n                [\n                    143.3310653003962,\n                    -16.45020924271337\n                ],\n                [\n                    143.2380477222712,\n                    -16.424330336463374\n                ],\n                [\n                    143.1936141285212,\n                    -16.426934503130017\n                ],\n                [\n                    143.1267195972712,\n                    -16.37175872188\n                ],\n                [\n                    143.0722762378962,\n                    -16.3499488260467\n                ],\n                [\n                    142.97649173268783,\n                    -16.235772393755013\n                ],\n                [\n                    142.8486434253962,\n                    -16.176283461463363\n                ],\n                [\n                    142.80339602956283,\n                    -16.128757419796685\n                ],\n                [\n                    142.7419539722712,\n                    -16.1082496072967\n                ],\n                [\n                    142.64201907643783,\n                    -16.046075128130024\n                ],\n                [\n                    142.62094160247952,\n                    -16.01140715938002\n                ],\n                [\n                    142.59042402435452,\n                    -16.01140715938002\n                ],\n                [\n                    142.45761152435452,\n                    -15.956719659380013\n                ],\n                [\n                    142.39592532643783,\n                    -15.971042576046688\n                ],\n                [\n                    142.3510034514378,\n                    -15.915215753130003\n                ],\n                [\n                    142.30282636810452,\n                    -15.919366143755026\n                ],\n                [\n                    142.27108808685452,\n                    -15.874200128130038\n                ],\n                [\n                    142.2485457691462,\n                    -15.799167576046703\n                ],\n                [\n                    142.1721297535212,\n                    -15.702813409379997\n                ],\n                [\n                    142.11125735768783,\n                    -15.658623956255026\n                ],\n                [\n                    142.0754500660212,\n                    -15.558038018755017\n                ],\n                [\n                    141.9638778003962,\n                    -15.405205987505004\n                ],\n                [\n                    141.95256595143783,\n                    -15.385105076046695\n                ],\n                [\n                    141.9672957691462,\n                    -15.339776300005058\n                ],\n                [\n                    141.90487714935452,\n                    -15.285577081255033\n                ],\n                [\n                    141.8125106128962,\n                    -15.281263930213374\n                ],\n                [\n                    141.7619735035212,\n                    -15.229913018755035\n                ],\n                [\n                    141.69011477956283,\n                    -15.244154555213392\n                ],\n                [\n                    141.60898364511576,\n                    -15.208079291550256\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    127.1521916024795,\n                    -17.3831519510467\n                ],\n                [\n                    127.1213485035212,\n                    -17.393080336463374\n                ],\n                [\n                    127.07252037852122,\n                    -17.439955336463377\n                ],\n                [\n                    126.94597415456285,\n                    -17.478041273963367\n                ],\n                [\n                    126.79590905039619,\n                    -17.475925388546685\n                ],\n                [\n                    126.6572371753962,\n                    -17.500420831255035\n                ],\n                [\n                    126.45224043060453,\n                    -17.47551848750503\n                ],\n                [\n                    126.31747480560452,\n                    -17.42986419063002\n                ],\n                [\n                    126.27442467539619,\n                    -17.45069752396333\n                ],\n                [\n                    126.2271427743545,\n                    -17.48894622188003\n                ],\n                [\n                    126.21338951914622,\n                    -17.52874114375501\n                ],\n                [\n                    126.12427819102119,\n                    -17.566827081255024\n                ],\n                [\n                    126.13778730560452,\n                    -17.597832940630038\n                ],\n                [\n                    126.12444095143783,\n                    -17.6284318989634\n                ],\n                [\n                    126.06902102956283,\n                    -17.656182550005035\n                ],\n                [\n                    126.03134199310452,\n                    -17.636244398963374\n                ],\n                [\n                    126.0178328785212,\n                    -17.645440362504992\n                ],\n                [\n                    126.00066165456282,\n                    -17.7107886697967\n                ],\n                [\n                    125.94727623789619,\n                    -17.758151951046703\n                ],\n                [\n                    125.88526451914619,\n                    -17.891615492713377\n                ],\n                [\n                    125.85328209727122,\n                    -17.927178643755003\n                ],\n                [\n                    125.78093509206282,\n                    -17.964694919796703\n                ],\n                [\n                    125.73886152435452,\n                    -18.05323658646337\n                ],\n                [\n                    125.6928817066462,\n                    -18.10873788854671\n                ],\n                [\n                    125.62362714935453,\n                    -18.143243096880024\n                ],\n                [\n                    125.5107528003962,\n                    -18.276543878130028\n                ],\n                [\n                    125.42188561289619,\n                    -18.324395440630024\n                ],\n                [\n                    125.31885826914619,\n                    -18.3387183572967\n                ],\n                [\n                    125.2797957691462,\n                    -18.37778085729668\n                ],\n                [\n                    125.21583092539619,\n                    -18.406914971880028\n                ],\n                [\n                    125.13892662852122,\n                    -18.481947523963388\n                ],\n                [\n                    124.99325605560452,\n                    -18.513360284380028\n                ],\n                [\n                    124.80184980560453,\n                    -18.488620701046734\n                ],\n                [\n                    124.67798912852122,\n                    -18.43767669063005\n                ],\n                [\n                    124.6433211597712,\n                    -18.43767669063005\n                ],\n                [\n                    124.5544539722712,\n                    -18.335300388546717\n                ],\n                [\n                    124.47022545664622,\n                    -18.167331638546685\n                ],\n                [\n                    124.3845320972712,\n                    -18.093763930213363\n                ],\n                [\n                    124.2242130868545,\n                    -18.067315362505013\n                ],\n                [\n                    124.10832767018785,\n                    -18.091648044796706\n                ],\n                [\n                    124.06112714935452,\n                    -18.13380299271336\n                ],\n                [\n                    123.96200605560453,\n                    -18.112155857296695\n                ],\n                [\n                    123.91765384206282,\n                    -18.067722263546692\n                ],\n                [\n                    123.8767195972712,\n                    -18.054050388546703\n                ],\n                [\n                    123.75383548268783,\n                    -17.930026951046703\n                ],\n                [\n                    123.72909589935452,\n                    -17.850030206255024\n                ],\n                [\n                    123.6638289722712,\n                    -17.76604583125501\n                ],\n                [\n                    123.6389266285212,\n                    -17.706068617713335\n                ],\n                [\n                    123.5703231128962,\n                    -17.685479425004978\n                ],\n                [\n                    123.5577091806045,\n                    -17.655775648963346\n                ],\n                [\n                    123.56755618581283,\n                    -17.587904555213402\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    131.84367923268783,\n                    -14.705743096880049\n                ],\n                [\n                    131.7180281910212,\n                    -14.6562639302134\n                ],\n                [\n                    131.67009524831283,\n                    -14.491550388546694\n                ],\n                [\n                    131.6682235035212,\n                    -14.43547942500503\n                ],\n                [\n                    131.65031985768783,\n                    -14.413425388546722\n                ],\n                [\n                    131.58879642018783,\n                    -14.40496184688005\n                ],\n                [\n                    131.57504316497952,\n                    -14.357435805213413\n                ],\n                [\n                    131.44524173268783,\n                    -14.268731378130047\n                ],\n                [\n                    131.4004012378962,\n                    -14.182305596880026\n                ],\n                [\n                    131.36125735768783,\n                    -14.16863372188002\n                ],\n                [\n                    131.3476668628962,\n                    -14.149346612505054\n                ],\n                [\n                    131.32512454518783,\n                    -14.154961846880054\n                ],\n                [\n                    131.30184980560452,\n                    -14.139662367713374\n                ],\n                [\n                    131.2573348316462,\n                    -14.072930596880061\n                ],\n                [\n                    131.2124129566462,\n                    -14.048760675005019\n                ],\n                [\n                    131.20744876393783,\n                    -14.035007419796722\n                ],\n                [\n                    131.23625735768783,\n                    -13.997247003130044\n                ],\n                [\n                    131.1814070972712,\n                    -13.951023044796733\n                ],\n                [\n                    131.2124129566462,\n                    -13.863783461463393\n                ],\n                [\n                    131.18368574310452,\n                    -13.85206471146336\n                ],\n                [\n                    131.1537378264384,\n                    -13.860039971856155\n                ],\n                [\n                    131.13323001393783,\n                    -13.83204518021343\n                ],\n                [\n                    131.09758548268783,\n                    -13.830010675005038\n                ],\n                [\n                    131.04159589935452,\n                    -13.851495050005045\n                ],\n                [\n                    131.0376082691462,\n                    -13.887383721880044\n                ],\n                [\n                    131.0224715503962,\n                    -13.898125909380086\n                ],\n                [\n                    130.93710371185452,\n                    -13.903659763546742\n                ],\n                [\n                    130.85556074310452,\n                    -13.928724867713369\n                ],\n                [\n                    130.75530032643783,\n                    -13.876478773963393\n                ],\n                [\n                    130.6567488941462,\n                    -13.672539971880058\n                ],\n                [\n                    130.57829837331283,\n                    -13.66830820104673\n                ],\n                [\n                    130.5537215503962,\n                    -13.608575128130061\n                ],\n                [\n                    130.45004316497952,\n                    -13.4653459614634\n                ],\n                [\n                    130.43075605560452,\n                    -13.464776300005061\n                ],\n                [\n                    130.4052840503962,\n                    -13.489678643755065\n                ],\n                [\n                    130.38583418060452,\n                    -13.486260675005067\n                ],\n                [\n                    130.28655032643783,\n                    -13.428643487505058\n                ],\n                [\n                    130.3244735035212,\n                    -13.352959893755065\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    149.04851321706283,\n                    -34.003757419797225\n                ],\n                [\n                    148.99634850352118,\n                    -33.931573175005525\n                ],\n                [\n                    148.9637964201878,\n                    -33.97966887813056\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        148.9637964201878,\n                        -33.97966887813056\n                    ],\n                    [\n                        148.9233504566462,\n                        -33.99334075313055\n                    ],\n                    [\n                        148.89169355560452,\n                        -33.95232512813058\n                    ],\n                    [\n                        148.83098392018783,\n                        -33.95061614375556\n                    ],\n                    [\n                        148.6897078785212,\n                        -33.84612395625555\n                    ],\n                    [\n                        148.6279403003962,\n                        -33.822116794797225\n                    ],\n                    [\n                        148.63290449310452,\n                        -33.80046965938056\n                    ],\n                    [\n                        148.57569420664618,\n                        -33.73088958125556\n                    ],\n                    [\n                        148.54737389414618,\n                        -33.663262628130575\n                    ],\n                    [\n                        148.5063582691462,\n                        -33.62940846146389\n                    ],\n                    [\n                        148.40878339935452,\n                        -33.59555429479723\n                    ],\n                    [\n                        148.41065514414618,\n                        -33.53793710729724\n                    ],\n                    [\n                        148.3676863941462,\n                        -33.5105933572972\n                    ],\n                    [\n                        148.3064070972712,\n                        -33.50725676875557\n                    ],\n                    [\n                        148.2307235035212,\n                        -33.47625090938053\n                    ],\n                    [\n                        148.1630965503962,\n                        -33.40951913854723\n                    ],\n                    [\n                        148.0254012378962,\n                        -33.401381117713875\n                    ],\n                    [\n                        147.97746829518783,\n                        -33.41790130000553\n                    ],\n                    [\n                        147.9405216806045,\n                        -33.40447356563056\n                    ],\n                    [\n                        147.8911238941462,\n                        -33.422051690630546\n                    ],\n                    [\n                        147.7478133472712,\n                        -33.380385023963875\n                    ],\n                    [\n                        147.7065535816462,\n                        -33.38380299271388\n                    ],\n                    [\n                        147.6323348316462,\n                        -33.33399830521385\n                    ],\n                    [\n                        147.57227623789618,\n                        -33.315443617713875\n                    ],\n                    [\n                        147.4878035816462,\n                        -33.24643320104722\n                    ],\n                    [\n                        147.35360761810452,\n                        -33.232354425005546\n                    ],\n                    [\n                        147.30559329518783,\n                        -33.167494398963875\n                    ],\n                    [\n                        147.18604576914618,\n                        -33.10418059688053\n                    ],\n                    [\n                        146.84709720143783,\n                        -33.094252211463846\n                    ],\n                    [\n                        146.7500106128962,\n                        -33.057549737505546\n                    ],\n                    [\n                        146.72307376393783,\n                        -33.033705336463875\n                    ],\n                    [\n                        146.6955672535212,\n                        -33.033379815630525\n                    ],\n                    [\n                        146.4980574878962,\n                        -33.12452564896386\n                    ],\n                    [\n                        146.47632897227118,\n                        -33.199069919797225\n                    ],\n                    [\n                        146.4437768889378,\n                        -33.22218189896387\n                    ],\n                    [\n                        146.3966577483128,\n                        -33.231622003130546\n                    ],\n                    [\n                        146.33513431081283,\n                        -33.20834726354721\n                    ],\n                    [\n                        146.2815047535212,\n                        -33.23764413854721\n                    ],\n                    [\n                        146.1731063160212,\n                        -33.251967055213846\n                    ],\n                    [\n                        146.11264082122952,\n                        -33.29867929479722\n                    ],\n                    [\n                        146.09188886810452,\n                        -33.37932708125555\n                    ],\n                    [\n                        146.0588485035212,\n                        -33.397393487505575\n                    ],\n                    [\n                        145.97649173268783,\n                        -33.394952081255525\n                    ],\n                    [\n                        145.7714949878962,\n                        -33.342299086463875\n                    ],\n                    [\n                        145.6049910816462,\n                        -33.38722096146387\n                    ],\n                    [\n                        145.51319420664618,\n                        -33.50505950313057\n                    ],\n                    [\n                        145.44817142018783,\n                        -33.54143645625555\n                    ],\n                    [\n                        145.3531193368545,\n                        -33.56088632604719\n                    ],\n                    [\n                        145.2844344410212,\n                        -33.65056731563055\n                    ],\n                    [\n                        145.2204695972712,\n                        -33.69133880000556\n                    ],\n                    [\n                        145.08196048268783,\n                        -33.72641366979723\n                    ],\n                    [\n                        145.05380293060452,\n                        -33.7202287739639\n                    ],\n                    [\n                        144.9831649097712,\n                        -33.76384856563056\n                    ],\n                    [\n                        144.96485436289618,\n                        -33.81983814896392\n                    ],\n                    [\n                        144.7083439462295,\n                        -34.04753997188057\n                    ],\n                    [\n                        144.68165123789618,\n                        -34.09636809688058\n                    ],\n                    [\n                        144.5761824878962,\n                        -34.14535898229721\n                    ],\n                    [\n                        144.5581160816462,\n                        -34.1782365864639\n                    ],\n                    [\n                        144.4917098316462,\n                        -34.22299570104724\n                    ],\n                    [\n                        144.3908797535212,\n                        -34.23357512813062\n                    ],\n                    [\n                        144.33570397227118,\n                        -34.25619882604725\n                    ],\n                    [\n                        144.2558699878962,\n                        -34.239108982297246\n                    ],\n                    [\n                        144.2104598316462,\n                        -34.2544084614639\n                    ],\n                    [\n                        144.1198836597712,\n                        -34.20558033646391\n                    ],\n                    [\n                        144.0605574878962,\n                        -34.279717706255546\n                    ],\n                    [\n                        143.9445906910212,\n                        -34.28907643021392\n                    ],\n                    [\n                        143.8711043628962,\n                        -34.350762628130596\n                    ],\n                    [\n                        143.7568465503962,\n                        -34.40471770625559\n                    ],\n                    [\n                        143.64901777435452,\n                        -34.543633721880596\n                    ],\n                    [\n                        143.6462508472712,\n                        -34.60344817500559\n                    ],\n                    [\n                        143.6223250660212,\n                        -34.637627862505596\n                    ],\n                    [\n                        143.37566165456283,\n                        -34.717461846880575\n                    ],\n                    [\n                        143.30364017018783,\n                        -34.719577732297275\n                    ],\n                    [\n                        143.25530032643783,\n                        -34.68596770625558\n                    ],\n                    [\n                        143.2212020191462,\n                        -34.73324960729727\n                    ]\n                ],\n                [\n                    [\n                        149.2790633472712,\n                        -34.74692148229726\n                    ],\n                    [\n                        149.1767684253962,\n                        -34.64983489375559\n                    ],\n                    [\n                        149.1594344410212,\n                        -34.5448544250056\n                    ],\n                    [\n                        149.0766707691462,\n                        -34.51336028438058\n                    ],\n                    [\n                        149.05095462331283,\n                        -34.47869231563059\n                    ],\n                    [\n                        149.13046308685452,\n                        -34.265557550005575\n                    ],\n                    [\n                        149.02719160247952,\n                        -34.13445403438058\n                    ],\n                    [\n                        149.03223717539618,\n                        -34.06772226354726\n                    ],\n                    [\n                        149.06535892018783,\n                        -34.01010507604726\n                    ],\n                    [\n                        149.04851321706283,\n                        -34.003757419797225\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        140.9991676555165,\n                        -34.01763086208202\n                    ],\n                    [\n                        140.96807205330705,\n                        -33.987411212203945\n                    ]\n                ],\n                [\n                    [\n                        140.96708587370978,\n                        -33.98670435533555\n                    ],\n                    [\n                        140.9668074878962,\n                        -33.98650481563056\n                    ],\n                    [\n                        140.94182376393783,\n                        -33.98919036250557\n                    ],\n                    [\n                        140.8296004566462,\n                        -34.069024346880546\n                    ],\n                    [\n                        140.78183027435452,\n                        -34.069024346880546\n                    ],\n                    [\n                        140.7528589201878,\n                        -34.08660247188059\n                    ],\n                    [\n                        140.79436282643783,\n                        -34.12240976354723\n                    ],\n                    [\n                        140.7656356128962,\n                        -34.21176523229727\n                    ],\n                    [\n                        140.7131453785212,\n                        -34.261651300005575\n                    ],\n                    [\n                        140.67294355560452,\n                        -34.25042083125558\n                    ],\n                    [\n                        140.6521916024795,\n                        -34.260186456255575\n                    ],\n                    [\n                        140.63925214935452,\n                        -34.2848446593806\n                    ],\n                    [\n                        140.60930423268783,\n                        -34.29753997188055\n                    ],\n                    [\n                        140.59929446706283,\n                        -34.32927825313059\n                    ],\n                    [\n                        140.56267337331283,\n                        -34.348972263547246\n                    ],\n                    [\n                        140.59677168060452,\n                        -34.37346770625559\n                    ],\n                    [\n                        140.57341556081283,\n                        -34.451999607297275\n                    ],\n                    [\n                        140.52776126393783,\n                        -34.44670989375559\n                    ],\n                    [\n                        140.4873153003962,\n                        -34.39194101354723\n                    ],\n                    [\n                        140.43913821706283,\n                        -34.3979631489639\n                    ],\n                    [\n                        140.41171308685452,\n                        -34.37493255000559\n                    ],\n                    [\n                        140.3857528003962,\n                        -34.30388762813057\n                    ],\n                    [\n                        140.3845320972712,\n                        -34.239108982297225\n                    ],\n                    [\n                        140.36874433685452,\n                        -34.2003720031306\n                    ],\n                    [\n                        140.33196048268783,\n                        -34.172377211463896\n                    ],\n                    [\n                        140.30136152435452,\n                        -34.18450286250556\n                    ],\n                    [\n                        140.2299910816462,\n                        -34.17905038854723\n                    ],\n                    [\n                        140.20809980560452,\n                        -34.1593563781306\n                    ],\n                    [\n                        140.10344485768783,\n                        -34.191908461463896\n                    ],\n                    [\n                        140.03752688893783,\n                        -34.16594817500558\n                    ],\n                    [\n                        139.99594160247952,\n                        -34.183933201047246\n                    ],\n                    [\n                        139.93889407643783,\n                        -34.17083098750557\n                    ],\n                    [\n                        139.9265242847712,\n                        -34.151381117713875\n                    ],\n                    [\n                        139.96005293060452,\n                        -34.1274553364639\n                    ],\n                    [\n                        139.95403079518783,\n                        -34.08888111771389\n                    ],\n                    [\n                        139.93205813893783,\n                        -34.08269622188054\n                    ],\n                    [\n                        139.87850996185452,\n                        -34.10759856563058\n                    ],\n                    [\n                        139.8386336597712,\n                        -34.03826262813055\n                    ],\n                    [\n                        139.8154403003962,\n                        -34.062188409380575\n                    ],\n                    [\n                        139.7880965503962,\n                        -34.041029555213896\n                    ],\n                    [\n                        139.7002059253962,\n                        -34.02263762813055\n                    ],\n                    [\n                        139.68124433685452,\n                        -34.03110116979723\n                    ],\n                    [\n                        139.6809188160212,\n                        -34.12468840938056\n                    ],\n                    [\n                        139.6379500660212,\n                        -34.21241627396391\n                    ],\n                    [\n                        139.6447860035212,\n                        -34.29119231563059\n                    ],\n                    [\n                        139.6242781910212,\n                        -34.318536065630575\n                    ],\n                    [\n                        139.6088973316462,\n                        -34.44280364375559\n                    ],\n                    [\n                        139.58261152435452,\n                        -34.50042083125559\n                    ],\n                    [\n                        139.6037703785212,\n                        -34.54827239375556\n                    ],\n                    [\n                        139.59001712331283,\n                        -34.573093357297275\n                    ],\n                    [\n                        139.61003665456283,\n                        -34.63412851354728\n                    ],\n                    [\n                        139.6670028003962,\n                        -34.65056731563062\n                    ],\n                    [\n                        139.66513105560452,\n                        -34.67514413854728\n                    ],\n                    [\n                        139.65617923268783,\n                        -34.692396742713925\n                    ],\n                    [\n                        139.57040449310452,\n                        -34.717787367713925\n                    ],\n                    [\n                        139.54599043060452,\n                        -34.75359465938059\n                    ],\n                    [\n                        139.5781356128962,\n                        -34.76466236771393\n                    ],\n                    [\n                        139.55095462331283,\n                        -34.7954240864639\n                    ],\n                    [\n                        139.5559188160212,\n                        -34.8219540343806\n                    ],\n                    [\n                        139.63420657643783,\n                        -34.856622003130596\n                    ],\n                    [\n                        139.6408797535212,\n                        -34.8854305968806\n                    ],\n                    [\n                        139.58261152435452,\n                        -34.910332940630596\n                    ],\n                    [\n                        139.5483504566462,\n                        -34.884291273963925\n                    ],\n                    [\n                        139.44597415456283,\n                        -34.85662200313062\n                    ],\n                    [\n                        139.33139082122952,\n                        -34.90186939896391\n                    ],\n                    [\n                        139.31511477956283,\n                        -34.93181731563058\n                    ],\n                    [\n                        139.2605086597712,\n                        -34.965834242713946\n                    ],\n                    [\n                        139.26889082122952,\n                        -34.97804127396397\n                    ],\n                    [\n                        139.3278914722712,\n                        -34.98422616979727\n                    ],\n                    [\n                        139.3751733733128,\n                        -35.02581145625558\n                    ],\n                    [\n                        139.35409589935452,\n                        -35.057142836463946\n                    ],\n                    [\n                        139.32870527435452,\n                        -35.05535247188062\n                    ],\n                    [\n                        139.2929793628962,\n                        -35.11508554479729\n                    ],\n                    [\n                        139.3251245451878,\n                        -35.148288669797275\n                    ],\n                    [\n                        139.31511477956283,\n                        -35.185560805213946\n                    ],\n                    [\n                        139.44084720143783,\n                        -35.23796965938061\n                    ],\n                    [\n                        139.4585067066462,\n                        -35.27101002396394\n                    ],\n                    [\n                        139.45158938893783,\n                        -35.29005299271395\n                    ],\n                    [\n                        139.39763431081283,\n                        -35.30860768021395\n                    ],\n                    [\n                        139.39071699310452,\n                        -35.35011158646394\n                    ],\n                    [\n                        139.36288496185452,\n                        -35.37688567500561\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        141.92628014414618,\n                        -34.116875909380575\n                    ],\n                    [\n                        141.84074954518783,\n                        -34.13054778438059\n                    ],\n                    [\n                        141.74842463332857,\n                        -34.10325829045087\n                    ]\n                ],\n                [\n                    [\n                        141.56767760224287,\n                        -34.213774988091764\n                    ],\n                    [\n                        141.53703860768783,\n                        -34.215834242713896\n                    ],\n                    [\n                        141.52294225657053,\n                        -34.19492562706682\n                    ]\n                ],\n                [\n                    [\n                        141.46266357858093,\n                        -34.16949399035509\n                    ],\n                    [\n                        141.43625247426004,\n                        -34.15833915500535\n                    ]\n                ],\n                [\n                    [\n                        141.38171049382854,\n                        -34.13528004273621\n                    ],\n                    [\n                        141.3305770191462,\n                        -34.14487070104725\n                    ],\n                    [\n                        141.25995014636257,\n                        -34.08369014264775\n                    ]\n                ],\n                [\n                    [\n                        141.25690363648494,\n                        -34.0823973426866\n                    ],\n                    [\n                        141.23430423268783,\n                        -34.075209242713896\n                    ],\n                    [\n                        141.18987063893783,\n                        -34.089288018755596\n                    ],\n                    [\n                        141.1337996753962,\n                        -34.0639787739639\n                    ],\n                    [\n                        141.04533938893783,\n                        -34.062188409380575\n                    ],\n                    [\n                        140.9991676555165,\n                        -34.01763086208202\n                    ]\n                ],\n                [\n                    [\n                        140.96807205330705,\n                        -33.987411212203945\n                    ],\n                    [\n                        140.96708587370978,\n                        -33.98670435533555\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        141.74842463332857,\n                        -34.10325829045087\n                    ],\n                    [\n                        141.6655379566462,\n                        -34.126967055213896\n                    ],\n                    [\n                        141.56767760224287,\n                        -34.213774988091764\n                    ]\n                ],\n                [\n                    [\n                        141.52294225657053,\n                        -34.19492562706682\n                    ],\n                    [\n                        141.5105086597712,\n                        -34.17221445104726\n                    ],\n                    [\n                        141.46266357858093,\n                        -34.16949399035509\n                    ]\n                ],\n                [\n                    [\n                        141.43625247426004,\n                        -34.15833915500535\n                    ],\n                    [\n                        141.38171049382854,\n                        -34.13528004273621\n                    ]\n                ],\n                [\n                    [\n                        141.25995014636257,\n                        -34.08369014264775\n                    ],\n                    [\n                        141.25690363648494,\n                        -34.0823973426866\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    149.1200464201878,\n                    -32.65569426875549\n                ],\n                [\n                    149.1743270191462,\n                    -32.72576262813052\n                ],\n                [\n                    149.1870223316462,\n                    -32.77239348750553\n                ],\n                [\n                    149.2417098316462,\n                    -32.809584242713846\n                ],\n                [\n                    149.2304793628962,\n                    -32.899102471880546\n                ],\n                [\n                    149.2453719410212,\n                    -32.911472263547225\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        149.1200464201878,\n                        -32.65569426875549\n                    ],\n                    [\n                        149.05315188893783,\n                        -32.60857512813052\n                    ],\n                    [\n                        149.0031844410212,\n                        -32.60930755000554\n                    ],\n                    [\n                        148.9931746753962,\n                        -32.575697523963846\n                    ],\n                    [\n                        148.95753014414618,\n                        -32.57439544063048\n                    ],\n                    [\n                        148.9233504566462,\n                        -32.535495701047175\n                    ],\n                    [\n                        148.87297610768783,\n                        -32.52214934688048\n                    ],\n                    [\n                        148.8750106128962,\n                        -32.49871184688052\n                    ],\n                    [\n                        148.83497155039618,\n                        -32.44890715938051\n                    ],\n                    [\n                        148.7966414722712,\n                        -32.45842864375552\n                    ],\n                    [\n                        148.71989993581283,\n                        -32.421237888547175\n                    ],\n                    [\n                        148.69768313893783,\n                        -32.38510507604718\n                    ],\n                    [\n                        148.64584394622952,\n                        -32.38803476354719\n                    ],\n                    [\n                        148.60938561289618,\n                        -32.27914804479718\n                    ],\n                    [\n                        148.54599043060452,\n                        -32.218763930213846\n                    ],\n                    [\n                        148.4323836597712,\n                        -32.17986419063051\n                    ],\n                    [\n                        148.40194746185452,\n                        -32.18458424271381\n                    ],\n                    [\n                        148.37981204518783,\n                        -32.22087981563049\n                    ],\n                    [\n                        148.26563561289618,\n                        -32.22950611771383\n                    ],\n                    [\n                        148.24423261810452,\n                        -31.991631768755486\n                    ],\n                    [\n                        148.15031985768783,\n                        -31.95745208125548\n                    ],\n                    [\n                        148.11906985768783,\n                        -31.91407643021381\n                    ],\n                    [\n                        148.0205184253962,\n                        -31.871595961463807\n                    ],\n                    [\n                        147.98056074310452,\n                        -31.79705169063047\n                    ],\n                    [\n                        147.92278079518783,\n                        -31.787448826047132\n                    ],\n                    [\n                        147.8596297535212,\n                        -31.694756768755493\n                    ],\n                    [\n                        147.7993270191462,\n                        -31.66326262813047\n                    ],\n                    [\n                        147.70313561289618,\n                        -31.46404387813046\n                    ],\n                    [\n                        147.70606530039618,\n                        -31.39828866979713\n                    ],\n                    [\n                        147.6504012378962,\n                        -31.31585051875547\n                    ],\n                    [\n                        147.63583418060452,\n                        -31.231133721880457\n                    ],\n                    [\n                        147.5796004566462,\n                        -31.123874607297136\n                    ],\n                    [\n                        147.53117923268783,\n                        -31.08782317500545\n                    ],\n                    [\n                        147.48340905039618,\n                        -31.008721612505422\n                    ],\n                    [\n                        147.49333743581283,\n                        -30.868584893755436\n                    ],\n                    [\n                        147.5385848316462,\n                        -30.714288018755425\n                    ],\n                    [\n                        147.52743574310452,\n                        -30.66301848750544\n                    ],\n                    [\n                        147.6109318368545,\n                        -30.509698175005422\n                    ],\n                    [\n                        147.5302840503962,\n                        -30.386244398963736\n                    ],\n                    [\n                        147.5202742847712,\n                        -30.310560805213743\n                    ],\n                    [\n                        147.5620223316462,\n                        -30.2824032531304\n                    ],\n                    [\n                        147.56649824310452,\n                        -30.241387628130425\n                    ],\n                    [\n                        147.52938886810452,\n                        -30.213392836463743\n                    ],\n                    [\n                        147.52792402435452,\n                        -30.18743255000538\n                    ],\n                    [\n                        147.41179446706283,\n                        -30.126967055213736\n                    ]\n                ],\n                [\n                    [\n                        149.71835371185452,\n                        -33.63705820104722\n                    ],\n                    [\n                        149.65308678477118,\n                        -33.60564544063055\n                    ],\n                    [\n                        149.6462508472712,\n                        -33.57903411250557\n                    ],\n                    [\n                        149.6010848316462,\n                        -33.565362237505525\n                    ],\n                    [\n                        149.62924238372952,\n                        -33.50725676875557\n                    ],\n                    [\n                        149.6010848316462,\n                        -33.49985116979723\n                    ],\n                    [\n                        149.60686282643783,\n                        -33.47673919063054\n                    ],\n                    [\n                        149.57756595143783,\n                        -33.41456471146385\n                    ],\n                    [\n                        149.47453860768783,\n                        -33.39373137813057\n                    ],\n                    [\n                        149.44621829518783,\n                        -33.35450611771389\n                    ],\n                    [\n                        149.40219160247952,\n                        -33.333184503130546\n                    ],\n                    [\n                        149.3820906910212,\n                        -33.29070403438054\n                    ],\n                    [\n                        149.41627037852118,\n                        -33.26710377396387\n                    ],\n                    [\n                        149.40796959727118,\n                        -33.23666757604724\n                    ],\n                    [\n                        149.42538496185452,\n                        -33.21941497188055\n                    ],\n                    [\n                        149.5017195972712,\n                        -33.20297616979722\n                    ],\n                    [\n                        149.50399824310452,\n                        -33.16448333125554\n                    ],\n                    [\n                        149.4382430347712,\n                        -33.153334242713846\n                    ],\n                    [\n                        149.4196883472712,\n                        -33.12647877396387\n                    ],\n                    [\n                        149.39454186289618,\n                        -33.120293878130546\n                    ],\n                    [\n                        149.3951115243545,\n                        -33.10198333125553\n                    ],\n                    [\n                        149.28280683685452,\n                        -33.06446705521387\n                    ],\n                    [\n                        149.2722274097712,\n                        -33.0275204406305\n                    ],\n                    [\n                        149.23739668060452,\n                        -33.00017669063054\n                    ],\n                    [\n                        149.28329511810452,\n                        -32.96990325313055\n                    ],\n                    [\n                        149.2844344410212,\n                        -32.947686456255546\n                    ],\n                    [\n                        149.26539147227118,\n                        -32.910821221880525\n                    ],\n                    [\n                        149.2441512378962,\n                        -32.90903085729718\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    132.75066165456283,\n                    -14.470147393755058\n                ],\n                [\n                    132.64763431081283,\n                    -14.59311288854671\n                ],\n                [\n                    132.6630965503962,\n                    -14.630873305213386\n                ],\n                [\n                    132.72274824310452,\n                    -14.652357680213381\n                ],\n                [\n                    132.74333743581283,\n                    -14.657077732296719\n                ],\n                [\n                    132.7739363941462,\n                    -14.699151300005031\n                ],\n                [\n                    132.8296004566462,\n                    -14.699151300005031\n                ],\n                [\n                    132.88249759206283,\n                    -14.765150648963408\n                ],\n                [\n                    132.93563886810452,\n                    -14.778008721880056\n                ],\n                [\n                    133.0244246753962,\n                    -14.867364190630003\n                ],\n                [\n                    133.0966903003962,\n                    -14.91586679479671\n                ],\n                [\n                    133.2614852222712,\n                    -14.956231378130003\n                ],\n                [\n                    133.30217532643783,\n                    -14.942559503130036\n                ],\n                [\n                    133.3330184253962,\n                    -14.956231378130003\n                ],\n                [\n                    133.36589602956283,\n                    -14.947279555213388\n                ],\n                [\n                    133.47014407643783,\n                    -14.819675388546715\n                ],\n                [\n                    133.5243432951878,\n                    -14.844089451046711\n                ],\n                [\n                    133.5422469410212,\n                    -14.833347263546708\n                ],\n                [\n                    133.61337324310452,\n                    -14.842787367713397\n                ],\n                [\n                    133.7663680347712,\n                    -14.826674086463399\n                ],\n                [\n                    133.8366805347712,\n                    -14.853936456255001\n                ],\n                [\n                    133.9255477222712,\n                    -14.839776300005013\n                ],\n                [\n                    134.0039168628962,\n                    -14.851088148963393\n                ],\n                [\n                    134.0461531910212,\n                    -14.826511326046699\n                ],\n                [\n                    134.0361434253962,\n                    -14.765964451046699\n                ],\n                [\n                    134.08733157643783,\n                    -14.699558201046722\n                ],\n                [\n                    134.2714949878962,\n                    -14.614190362505012\n                ],\n                [\n                    134.3613387378962,\n                    -14.632745050005028\n                ],\n                [\n                    134.40227298268783,\n                    -14.685967706255035\n                ],\n                [\n                    134.45834394622952,\n                    -14.682061456255028\n                ],\n                [\n                    134.5578719410212,\n                    -14.715508721880072\n                ],\n                [\n                    134.5976668628962,\n                    -14.778008721880056\n                ],\n                [\n                    134.6630965503962,\n                    -14.76653411250504\n                ],\n                [\n                    134.7277938160212,\n                    -14.726413669796736\n                ],\n                [\n                    134.75847415456283,\n                    -14.744805596880054\n                ],\n                [\n                    134.7890731128962,\n                    -14.740573826046674\n                ],\n                [\n                    134.81340579518783,\n                    -14.761895440630006\n                ],\n                [\n                    134.8896590503962,\n                    -14.762139581255024\n                ],\n                [\n                    134.9555770191462,\n                    -14.802097263546703\n                ],\n                [\n                    134.97087649831283,\n                    -14.771905206255022\n                ],\n                [\n                    134.99130293060452,\n                    -14.776299737505024\n                ],\n                [\n                    135.0566512378962,\n                    -14.812188409380049\n                ],\n                [\n                    135.09367923268783,\n                    -14.79631926875503\n                ],\n                [\n                    135.11483808685452,\n                    -14.757500909380067\n                ],\n                [\n                    135.1408797535212,\n                    -14.783217055213377\n                ],\n                [\n                    135.14559980560452,\n                    -14.737155857296688\n                ],\n                [\n                    135.1875106128962,\n                    -14.758965753130004\n                ],\n                [\n                    135.26164798268783,\n                    -14.723972263546692\n                ],\n                [\n                    135.2685653003962,\n                    -14.685560805213383\n                ],\n                [\n                    135.28264407643783,\n                    -14.677097263546711\n                ],\n                [\n                    135.3088485035212,\n                    -14.679701430213377\n                ],\n                [\n                    135.3134871753962,\n                    -14.692396742713365\n                ],\n                [\n                    135.2878524097712,\n                    -14.719903253130049\n                ],\n                [\n                    135.29387454518783,\n                    -14.738213800005012\n                ],\n                [\n                    135.3266707691462,\n                    -14.747898044796704\n                ],\n                [\n                    135.3427840503962,\n                    -14.705580336463388\n                ],\n                [\n                    135.3681746753962,\n                    -14.722832940630038\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    145.5481063160212,\n                    -19.188327732296734\n                ],\n                [\n                    145.5810653003962,\n                    -19.171888930213402\n                ],\n                [\n                    145.5881453785212,\n                    -19.14666106563005\n                ],\n                [\n                    145.5942488941462,\n                    -19.137220961463424\n                ],\n                [\n                    145.6132918628962,\n                    -19.12289804479671\n                ],\n                [\n                    145.6989852222712,\n                    -19.102552992713385\n                ],\n                [\n                    145.71933027435452,\n                    -19.112644138546717\n                ],\n                [\n                    145.73601321706283,\n                    -19.157077732296692\n                ],\n                [\n                    145.77385501393783,\n                    -19.18409596146338\n                ],\n                [\n                    145.7870386076878,\n                    -19.241631768755045\n                ],\n                [\n                    145.8300887378962,\n                    -19.321302992713402\n                ],\n                [\n                    145.8535262378962,\n                    -19.476006768755067\n                ],\n                [\n                    145.89389082122952,\n                    -19.503350518755052\n                ],\n                [\n                    145.8818465503962,\n                    -19.651055596880045\n                ],\n                [\n                    145.89722740977118,\n                    -19.70159270625504\n                ],\n                [\n                    145.9553328785212,\n                    -19.732924086463402\n                ],\n                [\n                    145.98316490977118,\n                    -19.72551848750504\n                ],\n                [\n                    146.02084394622952,\n                    -19.80462005000503\n                ],\n                [\n                    146.0998641285212,\n                    -19.821791273963406\n                ],\n                [\n                    146.10661868581283,\n                    -19.85588958125504\n                ],\n                [\n                    146.17351321706283,\n                    -19.858575128130052\n                ],\n                [\n                    146.2370711597712,\n                    -19.88380299271339\n                ],\n                [\n                    146.3286238941462,\n                    -19.97201913854671\n                ],\n                [\n                    146.3972274097712,\n                    -19.995131117713377\n                ],\n                [\n                    146.4309188160212,\n                    -19.972670180213406\n                ],\n                [\n                    146.45606530039618,\n                    -20.061944268755074\n                ],\n                [\n                    146.4450789722712,\n                    -20.113946221880084\n                ],\n                [\n                    146.5004988941462,\n                    -20.11720143021337\n                ],\n                [\n                    146.5131942066462,\n                    -20.132338148963402\n                ],\n                [\n                    146.53825931081283,\n                    -20.09604257604671\n                ],\n                [\n                    146.56600996185452,\n                    -20.138360284380067\n                ],\n                [\n                    146.60214277435452,\n                    -20.149590753130067\n                ],\n                [\n                    146.65186608164618,\n                    -20.20492929479673\n                ],\n                [\n                    146.7060653003962,\n                    -20.192315362505074\n                ],\n                [\n                    146.74797610768783,\n                    -20.23088958125507\n                ],\n                [\n                    146.81251061289618,\n                    -20.232761326046724\n                ],\n                [\n                    146.86337324310452,\n                    -20.26205820104673\n                ],\n                [\n                    146.85751386810452,\n                    -20.366550388546734\n                ],\n                [\n                    146.8762313160212,\n                    -20.388523044796738\n                ],\n                [\n                    146.9421492847712,\n                    -20.383477471880052\n                ],\n                [\n                    146.9680281910212,\n                    -20.39983489375504\n                ],\n                [\n                    146.9592391285212,\n                    -20.45549895625504\n                ],\n                [\n                    147.03443444102118,\n                    -20.619642836463406\n                ],\n                [\n                    147.0766707691462,\n                    -20.61671314896339\n                ],\n                [\n                    147.0861922535212,\n                    -20.644870701046734\n                ],\n                [\n                    147.1133732431045,\n                    -20.63054778438006\n                ],\n                [\n                    147.1582137378962,\n                    -20.644870701046734\n                ],\n                [\n                    147.2819930347712,\n                    -20.544854425005052\n                ],\n                [\n                    147.2922469410212,\n                    -20.46599700313009\n                ],\n                [\n                    147.35360761810452,\n                    -20.397149346880095\n                ],\n                [\n                    147.3195906910212,\n                    -20.32512786250508\n                ],\n                [\n                    147.30038496185452,\n                    -20.054538669796713\n                ],\n                [\n                    147.23764082122952,\n                    -19.911146742713377\n                ],\n                [\n                    147.23837324310452,\n                    -19.821791273963406\n                ],\n                [\n                    147.26425214935452,\n                    -19.746026300005056\n                ],\n                [\n                    147.2956649097712,\n                    -19.708510023963395\n                ],\n                [\n                    147.34376061289618,\n                    -19.694756768755074\n                ],\n                [\n                    147.4120386076878,\n                    -19.62004973750502\n                ],\n                [\n                    147.4336043628962,\n                    -19.613946221880052\n                ],\n                [\n                    147.5923009825025,\n                    -19.677384240540267\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        151.86304772227118,\n                        -28.739271742713694\n                    ],\n                    [\n                        151.71233157643783,\n                        -28.78020598750534\n                    ],\n                    [\n                        151.6340438160212,\n                        -28.893243096880358\n                    ],\n                    [\n                        151.56063886810452,\n                        -28.93897877396371\n                    ],\n                    [\n                        151.52629642018783,\n                        -29.008233331255386\n                    ],\n                    [\n                        151.51968563469887,\n                        -29.06168797356745\n                    ]\n                ],\n                [\n                    [\n                        151.49753497986688,\n                        -29.075328490387378\n                    ],\n                    [\n                        151.48878527796015,\n                        -29.080714701946498\n                    ]\n                ],\n                [\n                    [\n                        151.34381217430226,\n                        -29.138201723509166\n                    ],\n                    [\n                        151.3387969218955,\n                        -29.118899547004425\n                    ]\n                ],\n                [\n                    [\n                        151.30818868302248,\n                        -29.000941349130354\n                    ],\n                    [\n                        151.30680138752786,\n                        -28.995588610598567\n                    ]\n                ],\n                [\n                    [\n                        151.2861907784295,\n                        -28.920321424970243\n                    ],\n                    [\n                        151.1601668628962,\n                        -28.846123956255333\n                    ],\n                    [\n                        151.07770912175081,\n                        -28.837020037948548\n                    ]\n                ],\n                [\n                    [\n                        151.05401703886088,\n                        -28.7610936444314\n                    ],\n                    [\n                        151.04646663088317,\n                        -28.736710041901116\n                    ]\n                ],\n                [\n                    [\n                        150.9417185514409,\n                        -28.69375062021074\n                    ],\n                    [\n                        150.91681161482563,\n                        -28.683900374003986\n                    ]\n                ],\n                [\n                    [\n                        150.85049327146433,\n                        -28.65764258874645\n                    ],\n                    [\n                        150.79525640043036,\n                        -28.63573895424845\n                    ]\n                ],\n                [\n                    [\n                        150.79307678842565,\n                        -28.635108590342412\n                    ],\n                    [\n                        150.68799654135057,\n                        -28.64968682006839\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        151.51968563469887,\n                        -29.06168797356745\n                    ],\n                    [\n                        151.49753497986688,\n                        -29.075328490387378\n                    ]\n                ],\n                [\n                    [\n                        151.48878527796015,\n                        -29.080714701946498\n                    ],\n                    [\n                        151.42237389414618,\n                        -29.15463632604703\n                    ],\n                    [\n                        151.35059655039618,\n                        -29.165459893755376\n                    ],\n                    [\n                        151.34381217430226,\n                        -29.138201723509166\n                    ]\n                ],\n                [\n                    [\n                        151.3387969218955,\n                        -29.118899547004425\n                    ],\n                    [\n                        151.31503339935452,\n                        -29.099297784380365\n                    ],\n                    [\n                        151.30818868302248,\n                        -29.000941349130354\n                    ]\n                ],\n                [\n                    [\n                        151.30680138752786,\n                        -28.995588610598567\n                    ],\n                    [\n                        151.2861907784295,\n                        -28.920321424970243\n                    ]\n                ],\n                [\n                    [\n                        151.07770912175081,\n                        -28.837020037948548\n                    ],\n                    [\n                        151.0552677743545,\n                        -28.810560805213683\n                    ],\n                    [\n                        151.05401703886088,\n                        -28.7610936444314\n                    ]\n                ],\n                [\n                    [\n                        151.04646663088317,\n                        -28.736710041901116\n                    ],\n                    [\n                        150.9790958993545,\n                        -28.72364674271369\n                    ],\n                    [\n                        150.9417185514409,\n                        -28.69375062021074\n                    ]\n                ],\n                [\n                    [\n                        150.91681161482563,\n                        -28.683900374003986\n                    ],\n                    [\n                        150.85049327146433,\n                        -28.65764258874645\n                    ]\n                ],\n                [\n                    [\n                        150.79525640043036,\n                        -28.63573895424845\n                    ],\n                    [\n                        150.79307678842565,\n                        -28.635108590342412\n                    ]\n                ],\n                [\n                    [\n                        150.68799654135057,\n                        -28.64968682006839\n                    ],\n                    [\n                        150.46965579518783,\n                        -28.650404555213694\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    130.1489363941462,\n                    -17.820733331255003\n                ],\n                [\n                    130.31755618581283,\n                    -17.798028253130028\n                ],\n                [\n                    130.34489993581283,\n                    -17.81389739375502\n                ],\n                [\n                    130.3869735035212,\n                    -17.88917408646336\n                ],\n                [\n                    130.4753524097712,\n                    -17.9541154927134\n                ],\n                [\n                    130.56731204518783,\n                    -17.954603773963356\n                ],\n                [\n                    130.58781985768783,\n                    -17.951023044796674\n                ],\n                [\n                    130.67245527435452,\n                    -17.84392669063004\n                ],\n                [\n                    130.67595462331283,\n                    -17.68401458125504\n                ],\n                [\n                    130.6987410816462,\n                    -17.63266366979669\n                ],\n                [\n                    130.72909589935452,\n                    -17.60881926875502\n                ],\n                [\n                    130.7509871753962,\n                    -17.536065362505017\n                ],\n                [\n                    131.0471297535212,\n                    -17.24024830521336\n                ],\n                [\n                    131.0986434253962,\n                    -17.080905857296663\n                ],\n                [\n                    131.1672469410212,\n                    -16.971042576046717\n                ],\n                [\n                    131.22730553477118,\n                    -16.92815520625502\n                ],\n                [\n                    131.23625735768783,\n                    -16.9061011697967\n                ],\n                [\n                    131.23625735768783,\n                    -16.820733331255013\n                ],\n                [\n                    131.1965438160212,\n                    -16.6946753885467\n                ],\n                [\n                    131.0573836597712,\n                    -16.53956471146337\n                ],\n                [\n                    131.0527449878962,\n                    -16.462416273963388\n                ],\n                [\n                    131.1003524097712,\n                    -16.39389413854669\n                ],\n                [\n                    131.1059676441462,\n                    -16.333510023963377\n                ],\n                [\n                    131.1591903003962,\n                    -16.25383880000502\n                ],\n                [\n                    131.13323001393783,\n                    -16.18328215938002\n                ],\n                [\n                    131.13323001393783,\n                    -16.14226653438003\n                ],\n                [\n                    131.10637454518783,\n                    -16.09718189896336\n                ],\n                [\n                    131.1164656910212,\n                    -16.064304294796717\n                ],\n                [\n                    131.0922957691462,\n                    -16.052911065630006\n                ],\n                [\n                    131.07479902435452,\n                    -16.017998956255\n                ],\n                [\n                    131.09384199310452,\n                    -15.9710425760467\n                ],\n                [\n                    131.07610110768783,\n                    -15.831719659380047\n                ],\n                [\n                    131.1120711597712,\n                    -15.798272393755028\n                ],\n                [\n                    131.0859481128962,\n                    -15.738946221880063\n                ],\n                [\n                    131.12606855560452,\n                    -15.681573175005033\n                ],\n                [\n                    131.1059676441462,\n                    -15.648858331255028\n                ],\n                [\n                    131.1355086597712,\n                    -15.628757419796692\n                ],\n                [\n                    131.13323001393783,\n                    -15.593682550005036\n                ],\n                [\n                    131.11662845143783,\n                    -15.576348565630017\n                ],\n                [\n                    131.0551863941462,\n                    -15.570245050005045\n                ],\n                [\n                    130.99594160247952,\n                    -15.540378513546687\n                ],\n                [\n                    130.86581464935452,\n                    -15.550144138546685\n                ],\n                [\n                    130.7895613941462,\n                    -15.51954518021335\n                ],\n                [\n                    130.77645918060452,\n                    -15.486667576046683\n                ],\n                [\n                    130.7297469410212,\n                    -15.50489674271338\n                ],\n                [\n                    130.7558699878962,\n                    -15.532159112505045\n                ],\n                [\n                    130.69198652435452,\n                    -15.610772393755015\n                ],\n                [\n                    130.61988365977118,\n                    -15.601006768755017\n                ],\n                [\n                    130.5822860035212,\n                    -15.627780857296687\n                ],\n                [\n                    130.5442000660212,\n                    -15.580010675005031\n                ],\n                [\n                    130.52352949310452,\n                    -15.578301690630038\n                ],\n                [\n                    130.47934003997952,\n                    -15.622002862505065\n                ],\n                [\n                    130.45744876393783,\n                    -15.620619398963356\n                ],\n                [\n                    130.4206649097712,\n                    -15.607924086463393\n                ],\n                [\n                    130.3864852222712,\n                    -15.573093357296704\n                ],\n                [\n                    130.35173587331283,\n                    -15.449639581255019\n                ],\n                [\n                    130.2763778003962,\n                    -15.365573826046699\n                ],\n                [\n                    130.2514754566462,\n                    -15.364922784380015\n                ],\n                [\n                    130.2172957691462,\n                    -15.403822523963372\n                ],\n                [\n                    130.14999433685452,\n                    -15.408623956255017\n                ],\n                [\n                    130.11589602956283,\n                    -15.435967706255001\n                ],\n                [\n                    130.02654056081283,\n                    -15.409356378130042\n                ],\n                [\n                    129.94345136810452,\n                    -15.446302992713363\n                ],\n                [\n                    129.85832767018783,\n                    -15.405205987505004\n                ],\n                [\n                    129.8178817066462,\n                    -15.24260833125502\n                ],\n                [\n                    129.7898055347712,\n                    -15.195977471880058\n                ],\n                [\n                    129.7309676441462,\n                    -15.188327732296704\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    148.85393313893783,\n                    -25.338392836463566\n                ],\n                [\n                    148.8322860035212,\n                    -25.273125909380216\n                ],\n                [\n                    148.7583113941462,\n                    -25.180840753130227\n                ],\n                [\n                    148.73503665456283,\n                    -25.05364348750521\n                ],\n                [\n                    148.67375735768783,\n                    -24.995293878130237\n                ],\n                [\n                    148.6552840503962,\n                    -24.95110442500519\n                ],\n                [\n                    148.71469160247952,\n                    -24.809258721880187\n                ],\n                [\n                    148.7309676441462,\n                    -24.660088800005177\n                ],\n                [\n                    148.70948326914618,\n                    -24.599541925005152\n                ],\n                [\n                    148.6552840503962,\n                    -24.563816013546866\n                ],\n                [\n                    148.6391707691462,\n                    -24.530450128130177\n                ],\n                [\n                    148.6425887378962,\n                    -24.484388930213527\n                ],\n                [\n                    148.5920516285212,\n                    -24.38616301875518\n                ],\n                [\n                    148.6181746753962,\n                    -24.314955336463523\n                ],\n                [\n                    148.6142684253962,\n                    -24.26954518021353\n                ],\n                [\n                    148.58692467539618,\n                    -24.21778736771351\n                ],\n                [\n                    148.6074324878962,\n                    -24.173353773963523\n                ],\n                [\n                    148.5444442066462,\n                    -24.08188241979684\n                ],\n                [\n                    148.48682701914618,\n                    -23.921807550005145\n                ],\n                [\n                    148.51181074310452,\n                    -23.786065362505173\n                ],\n                [\n                    148.4914656910212,\n                    -23.71404387813016\n                ],\n                [\n                    148.54501386810452,\n                    -23.637058201046827\n                ],\n                [\n                    148.5420028003962,\n                    -23.601250909380145\n                ],\n                [\n                    148.51181074310452,\n                    -23.590671482296802\n                ],\n                [\n                    148.5151473316462,\n                    -23.568780206255145\n                ],\n                [\n                    148.60588626393783,\n                    -23.540378513546848\n                ],\n                [\n                    148.6359155608128,\n                    -23.51547616979683\n                ],\n                [\n                    148.6279403003962,\n                    -23.50920989375515\n                ],\n                [\n                    148.6831160816462,\n                    -23.433526300005155\n                ],\n                [\n                    148.67571048268783,\n                    -23.426690362505134\n                ],\n                [\n                    148.7098901701878,\n                    -23.3925920552135\n                ],\n                [\n                    148.70875084727118,\n                    -23.36126067500515\n                ],\n                [\n                    148.7319442066462,\n                    -23.36117929479682\n                ],\n                [\n                    148.7478133472712,\n                    -23.37892018021348\n                ],\n                [\n                    148.78557376393783,\n                    -23.364678643755134\n                ],\n                [\n                    148.84563235768783,\n                    -23.378594659380145\n                ],\n                [\n                    148.8647567066462,\n                    -23.368096612505145\n                ],\n                [\n                    148.85393313893783,\n                    -23.282728773963473\n                ],\n                [\n                    148.94377688893783,\n                    -23.245619398963466\n                ],\n                [\n                    148.95451907643783,\n                    -23.210788669796802\n                ],\n                [\n                    148.9848738941462,\n                    -23.193373305213488\n                ],\n                [\n                    148.9939070972712,\n                    -23.167494398963466\n                ],\n                [\n                    148.9637964201878,\n                    -23.1282691385468\n                ],\n                [\n                    148.96965579518783,\n                    -23.107354425005134\n                ],\n                [\n                    149.1075138681045,\n                    -23.04656340938013\n                ],\n                [\n                    149.1962182951878,\n                    -23.04265715938015\n                ],\n                [\n                    149.23495527435452,\n                    -22.990899346880116\n                ],\n                [\n                    149.28679446706283,\n                    -22.964369398963488\n                ],\n                [\n                    149.3237410816462,\n                    -22.88176848750513\n                ],\n                [\n                    149.34302819102118,\n                    -22.875502211463463\n                ],\n                [\n                    149.4094344410212,\n                    -22.91212330521345\n                ],\n                [\n                    149.4362899097712,\n                    -23.01401132604681\n                ],\n                [\n                    149.47828209727118,\n                    -23.042494398963473\n                ],\n                [\n                    149.5024520191462,\n                    -23.117201430213473\n                ],\n                [\n                    149.49317467539618,\n                    -23.184258721880134\n                ],\n                [\n                    149.54647871185452,\n                    -23.213799737505145\n                ],\n                [\n                    149.54354902435452,\n                    -23.23731861771348\n                ],\n                [\n                    149.5114852222712,\n                    -23.271335544796802\n                ],\n                [\n                    149.52409915456283,\n                    -23.315118096880145\n                ],\n                [\n                    149.50888105560452,\n                    -23.360528253130138\n                ],\n                [\n                    149.5774031910212,\n                    -23.385674737505145\n                ],\n                [\n                    149.6137801441462,\n                    -23.49065520625513\n                ],\n                [\n                    149.67343183685452,\n                    -23.53289153438017\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    147.69182376393783,\n                    -42.17774830521413\n                ],\n                [\n                    147.60450280039618,\n                    -42.16651783646416\n                ],\n                [\n                    147.55168704518783,\n                    -42.11036549271414\n                ],\n                [\n                    147.47030683685452,\n                    -42.05909596146415\n                ],\n                [\n                    147.4797469410212,\n                    -42.0260555968808\n                ],\n                [\n                    147.4361271493545,\n                    -41.921888930214195\n                ],\n                [\n                    147.3597925139378,\n                    -41.892917576047445\n                ],\n                [\n                    147.3225203785212,\n                    -41.835625909380795\n                ],\n                [\n                    147.24504642018783,\n                    -41.80665455521415\n                ],\n                [\n                    147.1413680347712,\n                    -41.722832940630795\n                ],\n                [\n                    147.11776777435452,\n                    -41.68604908646414\n                ],\n                [\n                    147.14657636810452,\n                    -41.630059503130774\n                ],\n                [\n                    147.1413680347712,\n                    -41.592299086464145\n                ],\n                [\n                    147.06454511810452,\n                    -41.46974049271412\n                ],\n                [\n                    147.07252037852118,\n                    -41.43474700313079\n                ],\n                [\n                    147.12094160247952,\n                    -41.445326430214166\n                ],\n                [\n                    147.1133732431045,\n                    -41.39747486771414\n                ],\n                [\n                    147.0517684253962,\n                    -41.3319638000058\n                ],\n                [\n                    146.99358157643783,\n                    -41.29949309688079\n                ],\n                [\n                    146.9787703785212,\n                    -41.24260833125579\n                ],\n                [\n                    146.9270125660212,\n                    -41.21485768021412\n                ],\n                [\n                    146.9251408212295,\n                    -41.18889739375581\n                ],\n                [\n                    146.9496362639378,\n                    -41.161065362505795\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    116.7431746753962,\n                    -33.218682550005525\n                ],\n                [\n                    116.82862389414622,\n                    -33.33058033646387\n                ],\n                [\n                    116.79712975352119,\n                    -33.52776458125553\n                ],\n                [\n                    116.80461673268789,\n                    -33.60222747188057\n                ],\n                [\n                    116.7475692066462,\n                    -33.60564544063055\n                ],\n                [\n                    116.70158938893788,\n                    -33.680677992713875\n                ],\n                [\n                    116.63583418060452,\n                    -33.67473723750557\n                ],\n                [\n                    116.61345462331288,\n                    -33.64324309688057\n                ],\n                [\n                    116.57081139414622,\n                    -33.65463632604723\n                ],\n                [\n                    116.57121829518789,\n                    -33.7122535135472\n                ],\n                [\n                    116.5433862639379,\n                    -33.746270440630546\n                ],\n                [\n                    116.5234481128962,\n                    -33.73259856563055\n                ],\n                [\n                    116.5308537118545,\n                    -33.76059335729721\n                ],\n                [\n                    116.3725692066462,\n                    -33.84587981563057\n                ],\n                [\n                    116.3729761076879,\n                    -33.87273528438057\n                ],\n                [\n                    116.39307701914622,\n                    -33.890964451047196\n                ],\n                [\n                    116.37948652435453,\n                    -33.897149346880546\n                ],\n                [\n                    116.39087975352122,\n                    -33.924737237505575\n                ],\n                [\n                    116.3657332691462,\n                    -33.931166273963896\n                ],\n                [\n                    116.3657332691462,\n                    -33.95232512813058\n                ],\n                [\n                    116.32479902435453,\n                    -33.931166273963896\n                ],\n                [\n                    116.2932235035212,\n                    -33.96599700313057\n                ],\n                [\n                    116.24878990977122,\n                    -33.955498956255575\n                ],\n                [\n                    116.2080998056045,\n                    -34.000827732297246\n                ],\n                [\n                    116.13518313893789,\n                    -33.968194268755575\n                ],\n                [\n                    116.0669051441462,\n                    -33.971530857297225\n                ],\n                [\n                    116.0437931649795,\n                    -33.959161065630546\n                ],\n                [\n                    116.02499433685452,\n                    -33.91399505000556\n                ],\n                [\n                    115.9777938160212,\n                    -33.906182550005575\n                ],\n                [\n                    115.88282311289622,\n                    -33.830743096880575\n                ],\n                [\n                    115.76921634206288,\n                    -33.93865325313059\n                ],\n                [\n                    115.66081790456288,\n                    -33.97446054479723\n                ],\n                [\n                    115.59864342539619,\n                    -34.041029555213896\n                ],\n                [\n                    115.61231530039622,\n                    -34.075209242713896\n                ],\n                [\n                    115.5781356128962,\n                    -34.069024346880575\n                ],\n                [\n                    115.5149031910212,\n                    -34.10466887813055\n                ],\n                [\n                    115.50928795664623,\n                    -34.069024346880546\n                ],\n                [\n                    115.22063235768789,\n                    -34.075209242713896\n                ],\n                [\n                    115.18954511810452,\n                    -34.098077081255575\n                ],\n                [\n                    115.2082625660212,\n                    -34.22836679479726\n                ],\n                [\n                    115.15837649831289,\n                    -34.296726169797246\n                ],\n                [\n                    115.1649682951879,\n                    -34.3102352843806\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        150.40327303461777,\n                        -28.612421502541075\n                    ],\n                    [\n                        150.298553790949,\n                        -28.535252684480966\n                    ]\n                ],\n                [\n                    [\n                        150.29787805734813,\n                        -28.535013051996394\n                    ],\n                    [\n                        150.29777666114757,\n                        -28.535036904751056\n                    ]\n                ],\n                [\n                    [\n                        150.2139621291455,\n                        -28.554725369980215\n                    ],\n                    [\n                        150.15821373789618,\n                        -28.554620050005365\n                    ],\n                    [\n                        150.01947191149804,\n                        -28.600121534813212\n                    ]\n                ],\n                [\n                    [\n                        149.98637226601238,\n                        -28.600802857355063\n                    ],\n                    [\n                        149.9429328181347,\n                        -28.60168532687076\n                    ]\n                ],\n                [\n                    [\n                        149.6205817065657,\n                        -28.607763425475756\n                    ],\n                    [\n                        149.59489993581283,\n                        -28.56536223750533\n                    ],\n                    [\n                        149.48406009206283,\n                        -28.583916925005333\n                    ],\n                    [\n                        149.43950094868248,\n                        -28.647835545154763\n                    ]\n                ],\n                [\n                    [\n                        149.41780141469843,\n                        -28.678651516188122\n                    ],\n                    [\n                        149.26539147227118,\n                        -28.740736586463694\n                    ],\n                    [\n                        149.2078983085758,\n                        -28.789164297936562\n                    ]\n                ],\n                [\n                    [\n                        149.0955956935925,\n                        -28.84736939344518\n                    ],\n                    [\n                        149.09291501602704,\n                        -28.849228052705232\n                    ]\n                ],\n                [\n                    [\n                        148.97262441247747,\n                        -28.99821865271895\n                    ],\n                    [\n                        148.97076192329183,\n                        -28.999746192188766\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        150.46965579518783,\n                        -28.650404555213694\n                    ],\n                    [\n                        150.40327303461777,\n                        -28.612421502541075\n                    ]\n                ],\n                [\n                    [\n                        150.298553790949,\n                        -28.535252684480966\n                    ],\n                    [\n                        150.29787805734813,\n                        -28.535013051996394\n                    ]\n                ],\n                [\n                    [\n                        150.29777666114757,\n                        -28.535036904751056\n                    ],\n                    [\n                        150.2139621291455,\n                        -28.554725369980215\n                    ]\n                ],\n                [\n                    [\n                        150.01947191149804,\n                        -28.600121534813212\n                    ],\n                    [\n                        149.98637226601238,\n                        -28.600802857355063\n                    ]\n                ],\n                [\n                    [\n                        149.9429328181347,\n                        -28.60168532687076\n                    ],\n                    [\n                        149.7587996753962,\n                        -28.606947523963672\n                    ],\n                    [\n                        149.7041121753962,\n                        -28.627455336463658\n                    ],\n                    [\n                        149.6906844410212,\n                        -28.61410898229704\n                    ],\n                    [\n                        149.6205817065657,\n                        -28.607763425475756\n                    ]\n                ],\n                [\n                    [\n                        149.43950094868248,\n                        -28.647835545154763\n                    ],\n                    [\n                        149.41780141469843,\n                        -28.678651516188122\n                    ]\n                ],\n                [\n                    [\n                        149.2078983085758,\n                        -28.789164297936562\n                    ],\n                    [\n                        149.17831464935452,\n                        -28.81829192500534\n                    ],\n                    [\n                        149.0955956935925,\n                        -28.84736939344518\n                    ]\n                ],\n                [\n                    [\n                        149.09291501602704,\n                        -28.849228052705232\n                    ],\n                    [\n                        149.06308027435452,\n                        -28.936374607297033\n                    ],\n                    [\n                        148.97262441247747,\n                        -28.99821865271895\n                    ]\n                ],\n                [\n                    [\n                        148.97076192329183,\n                        -28.999746192188766\n                    ],\n                    [\n                        148.8681746753962,\n                        -29.053236586463687\n                    ],\n                    [\n                        148.8195906910212,\n                        -29.10003020625539\n                    ],\n                    [\n                        148.8090926441462,\n                        -29.17856210729703\n                    ],\n                    [\n                        148.7583113941462,\n                        -29.222670180213694\n                    ],\n                    [\n                        148.7098901701878,\n                        -29.33253346146372\n                    ],\n                    [\n                        148.69621829518783,\n                        -29.37485116979706\n                    ],\n                    [\n                        148.71469160247952,\n                        -29.43206145625538\n                    ],\n                    [\n                        148.6823836597712,\n                        -29.506361586463726\n                    ],\n                    [\n                        148.5171004566462,\n                        -29.592299086463726\n                    ],\n                    [\n                        148.4990340503962,\n                        -29.651706638547047\n                    ],\n                    [\n                        148.43987063893783,\n                        -29.721612237505415\n                    ],\n                    [\n                        148.3915307951878,\n                        -29.74407317500544\n                    ],\n                    [\n                        148.38420657643783,\n                        -29.772881768755376\n                    ],\n                    [\n                        148.3405867847712,\n                        -29.792494398963726\n                    ],\n                    [\n                        148.26490319102118,\n                        -29.883151951047076\n                    ],\n                    [\n                        148.1836043628962,\n                        -29.939955336463743\n                    ],\n                    [\n                        148.1661076181045,\n                        -29.975274346880404\n                    ],\n                    [\n                        148.0798445972712,\n                        -30.012220961463726\n                    ],\n                    [\n                        147.87899824310452,\n                        -30.046237888547097\n                    ],\n                    [\n                        147.7304793628962,\n                        -30.053155206255422\n                    ],\n                    [\n                        147.6355086597712,\n                        -30.076836846880404\n                    ],\n                    [\n                        147.6084090503962,\n                        -30.10108814896375\n                    ],\n                    [\n                        147.5161238941462,\n                        -30.094903253130425\n                    ],\n                    [\n                        147.4145613941462,\n                        -30.124525648963743\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    141.9310954649675,\n                    -34.10921461071869\n                ],\n                [\n                    141.92628014414618,\n                    -34.116875909380575\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    147.4145613941462,\n                    -30.124525648963743\n                ],\n                [\n                    147.3527938160212,\n                    -30.142510675005383\n                ],\n                [\n                    147.32626386810452,\n                    -30.128350518755404\n                ],\n                [\n                    147.21086673268783,\n                    -30.12143320104708\n                ],\n                [\n                    147.1723738941462,\n                    -30.063816013547108\n                ],\n                [\n                    147.04712975352118,\n                    -30.050469659380386\n                ],\n                [\n                    147.0349227222712,\n                    -30.028008721880386\n                ],\n                [\n                    147.00001061289618,\n                    -30.028334242713736\n                ],\n                [\n                    146.9629012378962,\n                    -29.985365492713697\n                ],\n                [\n                    146.89836673268783,\n                    -29.984307550005376\n                ],\n                [\n                    146.8261824878962,\n                    -29.943291925005372\n                ],\n                [\n                    146.76115970143783,\n                    -29.949069919797072\n                ],\n                [\n                    146.67522220143783,\n                    -29.915948175005415\n                ],\n                [\n                    146.6342879566462,\n                    -29.922865492713715\n                ],\n                [\n                    146.5964461597712,\n                    -29.961927992713733\n                ],\n                [\n                    146.5312606128962,\n                    -29.943291925005372\n                ],\n                [\n                    146.4902449878962,\n                    -29.95012786250542\n                ],\n                [\n                    146.4592391285212,\n                    -29.929701430213736\n                ],\n                [\n                    146.32756595143783,\n                    -29.94483814896373\n                ],\n                [\n                    146.26848392018783,\n                    -29.97478606563042\n                ],\n                [\n                    146.19003339935452,\n                    -29.945651951047086\n                ],\n                [\n                    146.1442163420628,\n                    -29.970635675005408\n                ],\n                [\n                    146.0420028003962,\n                    -29.966485284380422\n                ],\n                [\n                    146.02409915456283,\n                    -29.984307550005376\n                ],\n                [\n                    146.0376082691462,\n                    -30.02035898229706\n                ],\n                [\n                    146.01758873786991,\n                    -30.042494398965925\n                ],\n                [\n                    145.9489852222712,\n                    -30.07366301875541\n                ],\n                [\n                    145.9348250660212,\n                    -30.0941708312554\n                ],\n                [\n                    145.91423587331283,\n                    -30.087334893755404\n                ],\n                [\n                    145.8462020191462,\n                    -30.105970961463765\n                ],\n                [\n                    145.7775985035212,\n                    -30.197116794797097\n                ],\n                [\n                    145.7395125660212,\n                    -30.20867278438042\n                ],\n                [\n                    145.67489668060452,\n                    -30.261651300005393\n                ],\n                [\n                    145.58334394622952,\n                    -30.28435637813041\n                ],\n                [\n                    145.56487063893783,\n                    -30.33383554479712\n                ],\n                [\n                    145.5774031910212,\n                    -30.363295180213754\n                ],\n                [\n                    145.51026451914618,\n                    -30.409519138547115\n                ],\n                [\n                    145.4089461597712,\n                    -30.408623956255404\n                ],\n                [\n                    145.3923445972712,\n                    -30.4288876281304\n                ],\n                [\n                    145.33830813893783,\n                    -30.409519138547115\n                ],\n                [\n                    145.3178003264378,\n                    -30.447442315630404\n                ],\n                [\n                    145.24992923268783,\n                    -30.481947523963758\n                ],\n                [\n                    145.1781518889378,\n                    -30.46404387813045\n                ],\n                [\n                    145.1423445972712,\n                    -30.48438893021375\n                ],\n                [\n                    145.1267195972712,\n                    -30.477715753130415\n                ],\n                [\n                    145.11923261810452,\n                    -30.549493096880415\n                ],\n                [\n                    145.05844160247952,\n                    -30.60808684688043\n                ],\n                [\n                    145.01710045664618,\n                    -30.636244398963743\n                ],\n                [\n                    144.9931746753962,\n                    -30.64421965938042\n                ],\n                [\n                    144.9690047535212,\n                    -30.627618096880425\n                ],\n                [\n                    144.95028730560452,\n                    -30.648125909380415\n                ],\n                [\n                    144.91423587331283,\n                    -30.648939711463772\n                ],\n                [\n                    144.88632246185452,\n                    -30.676934503130425\n                ],\n                [\n                    144.85572350352118,\n                    -30.68059661250543\n                ],\n                [\n                    144.84758548268783,\n                    -30.71575286250545\n                ],\n                [\n                    144.79094485768783,\n                    -30.738457940630415\n                ],\n                [\n                    144.71501712331283,\n                    -30.86809661250543\n                ],\n                [\n                    144.6860457691462,\n                    -30.890476169797097\n                ],\n                [\n                    144.5117293628962,\n                    -30.896661065630422\n                ],\n                [\n                    144.43026777435452,\n                    -30.930596612505436\n                ],\n                [\n                    144.3600366545628,\n                    -31.00392018021377\n                ],\n                [\n                    144.3730574878962,\n                    -31.03630950313045\n                ],\n                [\n                    144.3520613941462,\n                    -31.06682708125543\n                ],\n                [\n                    144.32919355560452,\n                    -31.080987237505454\n                ],\n                [\n                    144.2497664722712,\n                    -31.0726050760471\n                ],\n                [\n                    144.2216903003962,\n                    -31.122002862505457\n                ],\n                [\n                    144.2216903003962,\n                    -31.115166925005436\n                ],\n                [\n                    144.17082767018783,\n                    -31.119642836463797\n                ],\n                [\n                    144.09188886810452,\n                    -31.197116794797136\n                ],\n                [\n                    144.02499433685452,\n                    -31.20891692500545\n                ],\n                [\n                    144.01620527435452,\n                    -31.228448175005447\n                ],\n                [\n                    144.0442000660212,\n                    -31.300713800005454\n                ],\n                [\n                    144.0380965503962,\n                    -31.345391534380457\n                ],\n                [\n                    144.01433352956283,\n                    -31.374932550005443\n                ],\n                [\n                    143.9277449878962,\n                    -31.423191013547147\n                ],\n                [\n                    143.8864852222712,\n                    -31.416192315630465\n                ],\n                [\n                    143.81128990977118,\n                    -31.45086028438048\n                ],\n                [\n                    143.74862714935452,\n                    -31.457858982297136\n                ],\n                [\n                    143.7087508472712,\n                    -31.442559503130482\n                ],\n                [\n                    143.5720320972712,\n                    -31.486016534380454\n                ],\n                [\n                    143.47600345143783,\n                    -31.597588800005468\n                ],\n                [\n                    143.4305932951878,\n                    -31.560235284380493\n                ],\n                [\n                    143.38925214935452,\n                    -31.568047784380457\n                ],\n                [\n                    143.3559676441462,\n                    -31.62192148229717\n                ],\n                [\n                    143.3244735035212,\n                    -31.732842706255493\n                ],\n                [\n                    143.21802819102118,\n                    -31.749200128130497\n                ],\n                [\n                    143.1355086597712,\n                    -31.869317315630475\n                ],\n                [\n                    143.03557376393783,\n                    -31.88982512813049\n                ],\n                [\n                    143.00871829518783,\n                    -31.91448333125549\n                ],\n                [\n                    142.9799910816462,\n                    -32.00375741979715\n                ],\n                [\n                    142.9959416024795,\n                    -32.0809872375055\n                ],\n                [\n                    142.97160892018783,\n                    -32.10515715938048\n                ],\n                [\n                    142.9506942066462,\n                    -32.115899346880504\n                ],\n                [\n                    142.85865319102118,\n                    -32.111504815630475\n                ],\n                [\n                    142.8208113941462,\n                    -32.15667083125549\n                ],\n                [\n                    142.70427493581283,\n                    -32.2042782531305\n                ],\n                [\n                    142.6772567066462,\n                    -32.27052174271381\n                ],\n                [\n                    142.61093183685452,\n                    -32.306003513547154\n                ],\n                [\n                    142.5268660816462,\n                    -32.32390715938049\n                ],\n                [\n                    142.4621688160212,\n                    -32.391452732297175\n                ],\n                [\n                    142.4008895191462,\n                    -32.4179013000055\n                ],\n                [\n                    142.3855086597712,\n                    -32.5242652322972\n                ],\n                [\n                    142.4023543628962,\n                    -32.600030206255504\n                ],\n                [\n                    142.38225345143783,\n                    -32.659030857297196\n                ],\n                [\n                    142.3923445972712,\n                    -32.78842538854719\n                ],\n                [\n                    142.37411543060452,\n                    -32.82309335729718\n                ],\n                [\n                    142.3720809253962,\n                    -32.89031340938054\n                ],\n                [\n                    142.3928328785212,\n                    -32.92612070104721\n                ],\n                [\n                    142.3806258472712,\n                    -32.943373305213846\n                ],\n                [\n                    142.39934329518783,\n                    -33.00017669063054\n                ],\n                [\n                    142.3863224618545,\n                    -33.035577081255504\n                ],\n                [\n                    142.3215438160212,\n                    -33.083021742713875\n                ],\n                [\n                    142.3031518889378,\n                    -33.12306080521383\n                ],\n                [\n                    142.3015242847712,\n                    -33.19093189896386\n                ],\n                [\n                    142.3250431649795,\n                    -33.21184661250553\n                ],\n                [\n                    142.38567142018783,\n                    -33.225518487505546\n                ],\n                [\n                    142.49423261810452,\n                    -33.33538176875552\n                ],\n                [\n                    142.5669051441462,\n                    -33.382826430213896\n                ],\n                [\n                    142.58700605560452,\n                    -33.413018487505525\n                ],\n                [\n                    142.5774031910212,\n                    -33.45208098750557\n                ],\n                [\n                    142.53362063893783,\n                    -33.54485442500556\n                ],\n                [\n                    142.46745852956283,\n                    -33.57561614375556\n                ],\n                [\n                    142.45614668060452,\n                    -33.622979425005575\n                ],\n                [\n                    142.42343183685452,\n                    -33.6469865864639\n                ],\n                [\n                    142.40617923268783,\n                    -33.69174570104724\n                ],\n                [\n                    142.18222089935452,\n                    -33.80144622188055\n                ],\n                [\n                    142.0305281910212,\n                    -33.81829192500559\n                ],\n                [\n                    141.9931746753962,\n                    -33.86134205521388\n                ],\n                [\n                    141.9917098316462,\n                    -33.94841887813056\n                ],\n                [\n                    141.91464277435452,\n                    -34.01238372188057\n                ],\n                [\n                    141.91325931081283,\n                    -34.069024346880546\n                ],\n                [\n                    141.9310954649675,\n                    -34.10921461071869\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    146.2915958993545,\n                    -42.26401132604745\n                ],\n                [\n                    146.40324954518783,\n                    -42.316745701047466\n                ],\n                [\n                    146.4941512378962,\n                    -42.40365976354751\n                ],\n                [\n                    146.6198836597712,\n                    -42.440443617714195\n                ],\n                [\n                    146.6682235035212,\n                    -42.496270440630816\n                ],\n                [\n                    146.8149520191462,\n                    -42.580092055214145\n                ],\n                [\n                    146.9729923837295,\n                    -42.73699309688081\n                ],\n                [\n                    147.1220809253962,\n                    -42.78761158646415\n                ],\n                [\n                    147.2245386076878,\n                    -42.742120050005816\n                ],\n                [\n                    147.27792402435452,\n                    -42.77865976354748\n                ]\n            ]\n        },\n        {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n                [\n                    149.6734375,\n                    -23.53289153438008\n                ],\n                [\n                    149.7170918317047,\n                    -23.551849943496205\n                ],\n                [\n                    149.76106323614275,\n                    -23.61935320176337\n                ],\n                [\n                    149.79078339755324,\n                    -23.615300452480128\n                ],\n                [\n                    149.80699439468623,\n                    -23.593685789636112\n                ],\n                [\n                    149.8461709710909,\n                    -23.58017662535864\n                ],\n                [\n                    149.91641862533393,\n                    -23.60854587034137\n                ],\n                [\n                    149.9488406195999,\n                    -23.561263795370124\n                ],\n                [\n                    150.0001754438544,\n                    -23.551807380375905\n                ],\n                [\n                    149.9569461181664,\n                    -23.508578054687916\n                ],\n                [\n                    149.965028941511,\n                    -23.493535816366652\n                ],\n                [\n                    150.01773735741514,\n                    -23.47615606042193\n                ],\n                [\n                    149.96099886744966,\n                    -23.442383149728208\n                ],\n                [\n                    149.96099886744966,\n                    -23.416715737600935\n                ],\n                [\n                    149.9150677089087,\n                    -23.415364821191652\n                ],\n                [\n                    149.91371679247843,\n                    -23.350520832641212\n                ],\n                [\n                    149.88940029677892,\n                    -23.338362584791444\n                ],\n                [\n                    149.8880493803512,\n                    -23.32350250408625\n                ],\n                [\n                    149.92452412390043,\n                    -23.30594059052548\n                ],\n                [\n                    149.9407351210334,\n                    -23.245149351276748\n                ],\n                [\n                    149.91641862533393,\n                    -23.19921819273327\n                ],\n                [\n                    149.9162703785212,\n                    -23.16407643021348\n                ],\n                [\n                    149.87606855560452,\n                    -23.121270440630116\n                ],\n                [\n                    149.8799748056045,\n                    -23.09425221146349\n                ],\n                [\n                    149.9233504566462,\n                    -23.097100518755138\n                ],\n                [\n                    149.94247480560452,\n                    -23.07512786250515\n                ],\n                [\n                    149.9887801441462,\n                    -23.097100518755127\n                ],\n                [\n                    150.0092879566462,\n                    -23.09172942500513\n                ],\n                [\n                    150.04680423268783,\n                    -23.042494398963473\n                ],\n                [\n                    150.0772404306045,\n                    -23.09067148229682\n                ],\n                [\n                    150.12020918060452,\n                    -23.10442473750512\n                ],\n                [\n                    150.16350345143783,\n                    -23.14552174271349\n                ],\n                [\n                    150.23528079518783,\n                    -23.117608331255127\n                ],\n                [\n                    150.37566165456283,\n                    -23.156670831255134\n                ],\n                [\n                    150.4006453785212,\n                    -23.19093189896347\n                ],\n                [\n                    150.3674422535212,\n                    -23.2190894510468\n                ],\n                [\n                    150.3610132170628,\n                    -23.259779555213505\n                ],\n                [\n                    150.42009524831283,\n                    -23.24854908646348\n                ],\n                [\n                    150.46501712331283,\n                    -23.33049895625514\n                ],\n                [\n                    150.4886987639378,\n                    -23.33220794063015\n                ],\n                [\n                    150.52051842539618,\n                    -23.38201262813013\n                ],\n                [\n                    150.57504316497952,\n                    -23.385186456255138\n                ],\n                [\n                    150.60783938893783,\n                    -23.448256117713484\n                ],\n                [\n                    150.67066490977118,\n                    -23.48878346146349\n                ],\n                [\n                    150.70655358164618,\n                    -23.503106378130152\n                ],\n                [\n                    150.8213810556045,\n                    -23.509209893755163\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        146.1750615229594,\n                        -36.0307934631071\n                    ],\n                    [\n                        146.21591230560452,\n                        -36.055840753130646\n                    ]\n                ],\n                [\n                    [\n                        147.0432235035212,\n                        -36.108086846880646\n                    ],\n                    [\n                        147.06058589218998,\n                        -36.103141468776855\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        146.0280867847712,\n                        -36.014580987505596\n                    ],\n                    [\n                        146.0561629566462,\n                        -36.00489674271398\n                    ],\n                    [\n                        146.1750615229594,\n                        -36.0307934631071\n                    ]\n                ],\n                [\n                    [\n                        147.06058589218998,\n                        -36.103141468776855\n                    ],\n                    [\n                        147.1189070972712,\n                        -36.03110116979731\n                    ],\n                    [\n                        147.2716577483128,\n                        -36.049004815630646\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        145.99224623589046,\n                        -36.016034016783\n                    ],\n                    [\n                        145.96841395233682,\n                        -35.99371195480688\n                    ]\n                ],\n                [\n                    [\n                        145.94001814897337,\n                        -35.96709606238367\n                    ],\n                    [\n                        145.93953255046605,\n                        -35.96684621106167\n                    ]\n                ],\n                [\n                    [\n                        145.90076080483368,\n                        -35.96648585590532\n                    ],\n                    [\n                        145.8296004566462,\n                        -35.983412367713974\n                    ],\n                    [\n                        145.74423261810452,\n                        -35.964857680213996\n                    ],\n                    [\n                        145.57232609618666,\n                        -35.84363640359687\n                    ]\n                ],\n                [\n                    [\n                        145.3838914312475,\n                        -35.86926953914316\n                    ],\n                    [\n                        145.33467737312841,\n                        -35.875923922198325\n                    ]\n                ],\n                [\n                    [\n                        144.9621964383147,\n                        -35.95327870450991\n                    ],\n                    [\n                        144.96181212113805,\n                        -35.95398974223281\n                    ]\n                ],\n                [\n                    [\n                        144.95246692853092,\n                        -36.032508965728546\n                    ],\n                    [\n                        144.9852544114249,\n                        -36.08012459785911\n                    ]\n                ],\n                [\n                    [\n                        144.9855545357532,\n                        -36.08106873809223\n                    ],\n                    [\n                        144.9751082691462,\n                        -36.09750741979734\n                    ],\n                    [\n                        144.93699685477063,\n                        -36.091800903091155\n                    ]\n                ],\n                [\n                    [\n                        144.83630828711588,\n                        -36.113998168761164\n                    ],\n                    [\n                        144.81080162851828,\n                        -36.13168710726974\n                    ],\n                    [\n                        144.74088301143203,\n                        -36.13496443559141\n                    ]\n                ],\n                [\n                    [\n                        144.74062874888406,\n                        -36.13495015664758\n                    ],\n                    [\n                        144.72866740570436,\n                        -36.12666960606204\n                    ]\n                ],\n                [\n                    [\n                        144.70535763448476,\n                        -36.11052569149707\n                    ],\n                    [\n                        144.70518298881467,\n                        -36.11040469962214\n                    ]\n                ],\n                [\n                    [\n                        144.65824335414342,\n                        -36.07786646438456\n                    ],\n                    [\n                        144.60246829518783,\n                        -36.066094659380674\n                    ],\n                    [\n                        144.50337580225082,\n                        -35.97024203305559\n                    ]\n                ],\n                [\n                    [\n                        144.4847447853045,\n                        -35.9572663932007\n                    ],\n                    [\n                        144.45224043060452,\n                        -35.94719817500563\n                    ],\n                    [\n                        144.42157164199907,\n                        -35.91228632725588\n                    ]\n                ],\n                [\n                    [\n                        144.3247559151805,\n                        -35.75486334660247\n                    ],\n                    [\n                        144.2762964201878,\n                        -35.747979425005646\n                    ],\n                    [\n                        144.14755025057838,\n                        -35.646235411615386\n                    ]\n                ],\n                [\n                    [\n                        144.00196471681573,\n                        -35.55698262065598\n                    ],\n                    [\n                        143.99740175794344,\n                        -35.55418014258382\n                    ]\n                ],\n                [\n                    [\n                        143.87981043789304,\n                        -35.48185063226583\n                    ],\n                    [\n                        143.84905732778586,\n                        -35.46290052490665\n                    ]\n                ],\n                [\n                    [\n                        143.8122057438701,\n                        -35.44017387877784\n                    ],\n                    [\n                        143.77487918888485,\n                        -35.41775044766812\n                    ]\n                ],\n                [\n                    [\n                        143.7169906838708,\n                        -35.399314501239374\n                    ],\n                    [\n                        143.6508895191462,\n                        -35.38933684688062\n                    ],\n                    [\n                        143.5952254566462,\n                        -35.36052825313063\n                    ],\n                    [\n                        143.5761824878962,\n                        -35.32903411250561\n                    ],\n                    [\n                        143.58913318732624,\n                        -35.31038819630871\n                    ]\n                ],\n                [\n                    [\n                        143.5815367019244,\n                        -35.25052968877781\n                    ],\n                    [\n                        143.5807916133973,\n                        -35.24918003369238\n                    ]\n                ],\n                [\n                    [\n                        143.50271048685343,\n                        -35.21761512801185\n                    ],\n                    [\n                        143.4179793628962,\n                        -35.18800221146394\n                    ],\n                    [\n                        143.38347415456283,\n                        -35.145684503130624\n                    ],\n                    [\n                        143.3498641285212,\n                        -35.065931898963925\n                    ],\n                    [\n                        143.33201908728034,\n                        -34.958883787493164\n                    ]\n                ],\n                [\n                    [\n                        143.3406453522697,\n                        -34.91267507516875\n                    ],\n                    [\n                        143.34597528263615,\n                        -34.88410029850334\n                    ]\n                ],\n                [\n                    [\n                        143.35311003158313,\n                        -34.845821199017635\n                    ],\n                    [\n                        143.35944868402754,\n                        -34.805741099769286\n                    ]\n                ],\n                [\n                    [\n                        143.31332729401996,\n                        -34.78308781316736\n                    ],\n                    [\n                        143.2824813160212,\n                        -34.792494398963925\n                    ],\n                    [\n                        143.27289275436385,\n                        -34.76320698389833\n                    ]\n                ],\n                [\n                    [\n                        143.23530325322892,\n                        -34.744707612780786\n                    ],\n                    [\n                        143.230095529487,\n                        -34.742143351263685\n                    ]\n                ],\n                [\n                    [\n                        143.14320952588713,\n                        -34.69931353938981\n                    ],\n                    [\n                        143.04952449323943,\n                        -34.69208293118859\n                    ]\n                ],\n                [\n                    [\n                        142.9840795063974,\n                        -34.68717205693581\n                    ],\n                    [\n                        142.9734306381156,\n                        -34.68637027208421\n                    ]\n                ],\n                [\n                    [\n                        142.88026495022334,\n                        -34.679286048097005\n                    ],\n                    [\n                        142.87996755165466,\n                        -34.67913956323787\n                    ]\n                ],\n                [\n                    [\n                        142.71536708217604,\n                        -34.62701743630387\n                    ],\n                    [\n                        142.6943465503962,\n                        -34.73097096146391\n                    ],\n                    [\n                        142.6672649722787,\n                        -34.73355393652735\n                    ]\n                ],\n                [\n                    [\n                        142.64250874499976,\n                        -34.78759863951274\n                    ],\n                    [\n                        142.64250735768783,\n                        -34.78761158646391\n                    ],\n                    [\n                        142.6251733733128,\n                        -34.79526132604727\n                    ],\n                    [\n                        142.60966830603485,\n                        -34.782466091745206\n                    ]\n                ],\n                [\n                    [\n                        142.5565815748183,\n                        -34.77412862410834\n                    ],\n                    [\n                        142.5263778003962,\n                        -34.7577450500056\n                    ],\n                    [\n                        142.52335997788074,\n                        -34.72742481537823\n                    ]\n                ],\n                [\n                    [\n                        142.39606130630708,\n                        -34.547955684540334\n                    ],\n                    [\n                        142.3720809253962,\n                        -34.424737237505596\n                    ],\n                    [\n                        142.4060263881604,\n                        -34.3561761648689\n                    ]\n                ],\n                [\n                    [\n                        142.37374900488396,\n                        -34.33793286495445\n                    ],\n                    [\n                        142.3278914722712,\n                        -34.33464934688059\n                    ],\n                    [\n                        142.2727746803041,\n                        -34.28077083406028\n                    ]\n                ],\n                [\n                    [\n                        142.27119200311304,\n                        -34.279873774928106\n                    ],\n                    [\n                        142.255108481421,\n                        -34.26026503447065\n                    ]\n                ],\n                [\n                    [\n                        142.23528619026567,\n                        -34.19247936029126\n                    ],\n                    [\n                        142.1994735035212,\n                        -34.19280364375555\n                    ],\n                    [\n                        142.17016809249677,\n                        -34.16731205154179\n                    ]\n                ],\n                [\n                    [\n                        142.14694091714657,\n                        -34.15850323215478\n                    ],\n                    [\n                        142.0940047535212,\n                        -34.17083098750557\n                    ],\n                    [\n                        142.06559341907146,\n                        -34.12761117331616\n                    ]\n                ],\n                [\n                    [\n                        142.02533584267343,\n                        -34.112299387255725\n                    ],\n                    [\n                        141.96005293060452,\n                        -34.12468840938059\n                    ],\n                    [\n                        141.92628014414618,\n                        -34.116875909380575\n                    ]\n                ],\n                [\n                    [\n                        147.04452558685452,\n                        -36.10759856563064\n                    ],\n                    [\n                        147.0343555507776,\n                        -36.10245691396415\n                    ]\n                ],\n                [\n                    [\n                        146.96812079635131,\n                        -36.10070850901336\n                    ],\n                    [\n                        146.95573977956283,\n                        -36.1180152322973\n                    ],\n                    [\n                        146.90435316535297,\n                        -36.098998395843786\n                    ]\n                ],\n                [\n                    [\n                        146.84686607484406,\n                        -36.09742721743426\n                    ],\n                    [\n                        146.84623331477866,\n                        -36.09713364661814\n                    ]\n                ],\n                [\n                    [\n                        146.78535557267196,\n                        -36.0688680218332\n                    ],\n                    [\n                        146.76571434434462,\n                        -36.05973960213475\n                    ]\n                ],\n                [\n                    [\n                        146.73085899858395,\n                        -36.04352951834204\n                    ],\n                    [\n                        146.68889407643783,\n                        -36.04233163854731\n                    ],\n                    [\n                        146.6237899097712,\n                        -35.993829034380646\n                    ],\n                    [\n                        146.53344494927205,\n                        -35.989122612502676\n                    ]\n                ],\n                [\n                    [\n                        146.4795533691519,\n                        -35.98633205829564\n                    ],\n                    [\n                        146.46524789005687,\n                        -35.985588123572384\n                    ]\n                ],\n                [\n                    [\n                        146.38484453186987,\n                        -36.04744733019961\n                    ],\n                    [\n                        146.27873219767758,\n                        -36.0390598107821\n                    ]\n                ],\n                [\n                    [\n                        146.23963352588672,\n                        -36.03595055527821\n                    ],\n                    [\n                        146.21591230560452,\n                        -36.055840753130646\n                    ]\n                ],\n                [\n                    [\n                        148.00497480560452,\n                        -36.96713632604737\n                    ],\n                    [\n                        148.00196373789618,\n                        -36.93987395625566\n                    ],\n                    [\n                        148.12381238864776,\n                        -36.78300107459195\n                    ]\n                ],\n                [\n                    [\n                        148.21349873179295,\n                        -36.652084744241115\n                    ],\n                    [\n                        148.2138488891633,\n                        -36.650884467242726\n                    ]\n                ],\n                [\n                    [\n                        148.18311461412122,\n                        -36.581271220572404\n                    ],\n                    [\n                        148.14999433685452,\n                        -36.562513930213996\n                    ],\n                    [\n                        148.13440930794195,\n                        -36.4707130612536\n                    ]\n                ],\n                [\n                    [\n                        148.12756793437947,\n                        -36.455159897929114\n                    ],\n                    [\n                        148.0673120451878,\n                        -36.40968189896399\n                    ],\n                    [\n                        148.0762495891069,\n                        -36.33830680976356\n                    ]\n                ],\n                [\n                    [\n                        148.0719131167882,\n                        -36.328417497693245\n                    ],\n                    [\n                        148.05569859428002,\n                        -36.29141950783345\n                    ]\n                ],\n                [\n                    [\n                        148.0321609468341,\n                        -36.2376532472072\n                    ],\n                    [\n                        148.0317545863542,\n                        -36.236248052721486\n                    ]\n                ],\n                [\n                    [\n                        148.012466061569,\n                        -36.13841385499408\n                    ],\n                    [\n                        147.9911401701878,\n                        -36.11419036250567\n                    ],\n                    [\n                        147.99976993823864,\n                        -36.07389732397677\n                    ]\n                ],\n                [\n                    [\n                        147.9971810331782,\n                        -36.06072986002351\n                    ],\n                    [\n                        147.92314882830294,\n                        -36.02811029364659\n                    ]\n                ],\n                [\n                    [\n                        147.7143981499089,\n                        -35.939659701821824\n                    ],\n                    [\n                        147.71368954190868,\n                        -35.939450290258726\n                    ]\n                ],\n                [\n                    [\n                        147.6880813205116,\n                        -35.948752181534076\n                    ],\n                    [\n                        147.5557137096985,\n                        -35.996162086974586\n                    ]\n                ],\n                [\n                    [\n                        147.34843289595022,\n                        -36.06051330047932\n                    ],\n                    [\n                        147.3431026674275,\n                        -36.07087899628372\n                    ]\n                ],\n                [\n                    [\n                        147.33996142409185,\n                        -36.076304215188344\n                    ],\n                    [\n                        147.33987280387782,\n                        -36.07629164835292\n                    ]\n                ]\n            ]\n        },\n        {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        146.0280867847712,\n                        -36.014580987505596\n                    ],\n                    [\n                        145.99224623589046,\n                        -36.016034016783\n                    ]\n                ],\n                [\n                    [\n                        145.96841395233682,\n                        -35.99371195480688\n                    ],\n                    [\n                        145.94001814897337,\n                        -35.96709606238367\n                    ]\n                ],\n                [\n                    [\n                        145.93953255046605,\n                        -35.96684621106167\n                    ],\n                    [\n                        145.90076080483368,\n                        -35.96648585590532\n                    ]\n                ],\n                [\n                    [\n                        145.57232609618666,\n                        -35.84363640359687\n                    ],\n                    [\n                        145.49333743581283,\n                        -35.82903411250563\n                    ],\n                    [\n                        145.3838914312475,\n                        -35.86926953914316\n                    ]\n                ],\n                [\n                    [\n                        145.33467737312841,\n                        -35.875923922198325\n                    ],\n                    [\n                        145.2177026701878,\n                        -35.85125090938064\n                    ],\n                    [\n                        145.0080672535212,\n                        -35.86760833125564\n                    ],\n                    [\n                        144.97087649831283,\n                        -35.894870701047296\n                    ],\n                    [\n                        144.9621964383147,\n                        -35.95327870450991\n                    ]\n                ],\n                [\n                    [\n                        144.96181212113805,\n                        -35.95398974223281\n                    ],\n                    [\n                        144.9336043628962,\n                        -36.00554778438065\n                    ],\n                    [\n                        144.95246692853092,\n                        -36.032508965728546\n                    ]\n                ],\n                [\n                    [\n                        144.9852544114249,\n                        -36.08012459785911\n                    ],\n                    [\n                        144.9855545357532,\n                        -36.08106873809223\n                    ]\n                ],\n                [\n                    [\n                        144.93699685477063,\n                        -36.091800903091155\n                    ],\n                    [\n                        144.88974043060452,\n                        -36.07634856563063\n                    ],\n                    [\n                        144.83630828711588,\n                        -36.113998168761164\n                    ]\n                ],\n                [\n                    [\n                        144.74088301143203,\n                        -36.13496443559141\n                    ],\n                    [\n                        144.74062874888406,\n                        -36.13495015664758\n                    ]\n                ],\n                [\n                    [\n                        144.72866740570436,\n                        -36.12666960606204\n                    ],\n                    [\n                        144.72421308685452,\n                        -36.11166757604732\n                    ],\n                    [\n                        144.70535763448476,\n                        -36.11052569149707\n                    ]\n                ],\n                [\n                    [\n                        144.70518298881467,\n                        -36.11040469962214\n                    ],\n                    [\n                        144.65824335414342,\n                        -36.07786646438456\n                    ]\n                ],\n                [\n                    [\n                        144.50337580225082,\n                        -35.97024203305559\n                    ],\n                    [\n                        144.4847447853045,\n                        -35.9572663932007\n                    ]\n                ],\n                [\n                    [\n                        144.42157164199907,\n                        -35.91228632725588\n                    ],\n                    [\n                        144.3530379566462,\n                        -35.77752044063063\n                    ],\n                    [\n                        144.3247559151805,\n                        -35.75486334660247\n                    ]\n                ],\n                [\n                    [\n                        144.14755025057838,\n                        -35.646235411615386\n                    ],\n                    [\n                        144.09970136810452,\n                        -35.58676523229728\n                    ],\n                    [\n                        144.00196471681573,\n                        -35.55698262065598\n                    ]\n                ],\n                [\n                    [\n                        143.99740175794344,\n                        -35.55418014258382\n                    ],\n                    [\n                        143.98039798268783,\n                        -35.52337005000564\n                    ],\n                    [\n                        143.87981043789304,\n                        -35.48185063226583\n                    ]\n                ],\n                [\n                    [\n                        143.84905732778586,\n                        -35.46290052490665\n                    ],\n                    [\n                        143.8122057438701,\n                        -35.44017387877784\n                    ]\n                ],\n                [\n                    [\n                        143.77487918888485,\n                        -35.41775044766812\n                    ],\n                    [\n                        143.7169906838708,\n                        -35.399314501239374\n                    ]\n                ],\n                [\n                    [\n                        143.58913318732624,\n                        -35.31038819630871\n                    ],\n                    [\n                        143.5815367019244,\n                        -35.25052968877781\n                    ]\n                ],\n                [\n                    [\n                        143.5807916133973,\n                        -35.24918003369238\n                    ],\n                    [\n                        143.50271048685343,\n                        -35.21761512801185\n                    ]\n                ],\n                [\n                    [\n                        143.33201908728034,\n                        -34.958883787493164\n                    ],\n                    [\n                        143.3406453522697,\n                        -34.91267507516875\n                    ]\n                ],\n                [\n                    [\n                        143.34597528263615,\n                        -34.88410029850334\n                    ],\n                    [\n                        143.35311003158313,\n                        -34.845821199017635\n                    ]\n                ],\n                [\n                    [\n                        143.35944868402754,\n                        -34.805741099769286\n                    ],\n                    [\n                        143.31332729401996,\n                        -34.78308781316736\n                    ]\n                ],\n                [\n                    [\n                        143.27289275436385,\n                        -34.76320698389833\n                    ],\n                    [\n                        143.23530325322892,\n                        -34.744707612780786\n                    ]\n                ],\n                [\n                    [\n                        143.230095529487,\n                        -34.742143351263685\n                    ],\n                    [\n                        143.14320952588713,\n                        -34.69931353938981\n                    ]\n                ],\n                [\n                    [\n                        143.04952449323943,\n                        -34.69208293118859\n                    ],\n                    [\n                        142.99537194102118,\n                        -34.668796482297246\n                    ],\n                    [\n                        142.9840795063974,\n                        -34.68717205693581\n                    ]\n                ],\n                [\n                    [\n                        142.9734306381156,\n                        -34.68637027208421\n                    ],\n                    [\n                        142.93368574310452,\n                        -34.65813567500559\n                    ],\n                    [\n                        142.88026495022334,\n                        -34.679286048097005\n                    ]\n                ],\n                [\n                    [\n                        142.87996755165466,\n                        -34.67913956323787\n                    ],\n                    [\n                        142.85490970143783,\n                        -34.62078215938056\n                    ],\n                    [\n                        142.7898055347712,\n                        -34.58237070104729\n                    ],\n                    [\n                        142.7258406910212,\n                        -34.603204034380624\n                    ],\n                    [\n                        142.71536708217604,\n                        -34.62701743630387\n                    ]\n                ],\n                [\n                    [\n                        142.6672649722787,\n                        -34.73355393652735\n                    ],\n                    [\n                        142.63046308685452,\n                        -34.7363420552139\n                    ],\n                    [\n                        142.64250874499976,\n                        -34.78759863951274\n                    ]\n                ],\n                [\n                    [\n                        142.60966830603485,\n                        -34.782466091745206\n                    ],\n                    [\n                        142.5565815748183,\n                        -34.77412862410834\n                    ]\n                ],\n                [\n                    [\n                        142.52335997788074,\n                        -34.72742481537823\n                    ],\n                    [\n                        142.47128339935452,\n                        -34.643405857297275\n                    ],\n                    [\n                        142.46745852956283,\n                        -34.60344817500559\n                    ],\n                    [\n                        142.39606130630708,\n                        -34.547955684540334\n                    ]\n                ],\n                [\n                    [\n                        142.4060263881604,\n                        -34.3561761648689\n                    ],\n                    [\n                        142.3962508472712,\n                        -34.33806731563057\n                    ],\n                    [\n                        142.37374900488396,\n                        -34.33793286495445\n                    ]\n                ],\n                [\n                    [\n                        142.2727746803041,\n                        -34.28077083406028\n                    ],\n                    [\n                        142.27119200311304,\n                        -34.279873774928106\n                    ]\n                ],\n                [\n                    [\n                        142.255108481421,\n                        -34.26026503447065\n                    ],\n                    [\n                        142.23528619026567,\n                        -34.19247936029126\n                    ]\n                ],\n                [\n                    [\n                        142.17016809249677,\n                        -34.16731205154179\n                    ],\n                    [\n                        142.14694091714657,\n                        -34.15850323215478\n                    ]\n                ],\n                [\n                    [\n                        142.06559341907146,\n                        -34.12761117331616\n                    ],\n                    [\n                        142.02533584267343,\n                        -34.112299387255725\n                    ]\n                ],\n                [\n                    [\n                        147.0343555507776,\n                        -36.10245691396415\n                    ],\n                    [\n                        147.00497480560452,\n                        -36.09018320104731\n                    ],\n                    [\n                        146.96812079635131,\n                        -36.10070850901336\n                    ]\n                ],\n                [\n                    [\n                        146.90435316535297,\n                        -36.098998395843786\n                    ],\n                    [\n                        146.8784285816462,\n                        -36.08757903438063\n                    ],\n                    [\n                        146.84686607484406,\n                        -36.09742721743426\n                    ]\n                ],\n                [\n                    [\n                        146.84623331477866,\n                        -36.09713364661814\n                    ],\n                    [\n                        146.81251061289618,\n                        -36.06951262813064\n                    ],\n                    [\n                        146.78535557267196,\n                        -36.0688680218332\n                    ]\n                ],\n                [\n                    [\n                        146.76571434434462,\n                        -36.05973960213475\n                    ],\n                    [\n                        146.73085899858395,\n                        -36.04352951834204\n                    ]\n                ],\n                [\n                    [\n                        146.53344494927205,\n                        -35.989122612502676\n                    ],\n                    [\n                        146.50391686289618,\n                        -35.973972263547296\n                    ],\n                    [\n                        146.4795533691519,\n                        -35.98633205829564\n                    ]\n                ],\n                [\n                    [\n                        146.46524789005687,\n                        -35.985588123572384\n                    ],\n                    [\n                        146.4316512378962,\n                        -35.98390064896396\n                    ],\n                    [\n                        146.38484453186987,\n                        -36.04744733019961\n                    ]\n                ],\n                [\n                    [\n                        146.27873219767758,\n                        -36.0390598107821\n                    ],\n                    [\n                        146.23963352588672,\n                        -36.03595055527821\n                    ]\n                ],\n                [\n                    [\n                        148.12381238864776,\n                        -36.78300107459195\n                    ],\n                    [\n                        148.21349873179295,\n                        -36.652084744241115\n                    ]\n                ],\n                [\n                    [\n                        148.2138488891633,\n                        -36.650884467242726\n                    ],\n                    [\n                        148.2146916024795,\n                        -36.61687590938067\n                    ],\n                    [\n                        148.18311461412122,\n                        -36.581271220572404\n                    ]\n                ],\n                [\n                    [\n                        148.13440930794195,\n                        -36.4707130612536\n                    ],\n                    [\n                        148.12756793437947,\n                        -36.455159897929114\n                    ]\n                ],\n                [\n                    [\n                        148.0762495891069,\n                        -36.33830680976356\n                    ],\n                    [\n                        148.0719131167882,\n                        -36.328417497693245\n                    ]\n                ],\n                [\n                    [\n                        148.05569859428002,\n                        -36.29141950783345\n                    ],\n                    [\n                        148.0321609468341,\n                        -36.2376532472072\n                    ]\n                ],\n                [\n                    [\n                        148.0317545863542,\n                        -36.236248052721486\n                    ],\n                    [\n                        148.04509524831283,\n                        -36.17253997188064\n                    ],\n                    [\n                        148.012466061569,\n                        -36.13841385499408\n                    ]\n                ],\n                [\n                    [\n                        147.99976993823864,\n                        -36.07389732397677\n                    ],\n                    [\n                        147.9971810331782,\n                        -36.06072986002351\n                    ]\n                ],\n                [\n                    [\n                        147.92314882830294,\n                        -36.02811029364659\n                    ],\n                    [\n                        147.9094344410212,\n                        -36.005059503130646\n                    ],\n                    [\n                        147.7143981499089,\n                        -35.939659701821824\n                    ]\n                ],\n                [\n                    [\n                        147.71368954190868,\n                        -35.939450290258726\n                    ],\n                    [\n                        147.6880813205116,\n                        -35.948752181534076\n                    ]\n                ],\n                [\n                    [\n                        147.5557137096985,\n                        -35.996162086974586\n                    ],\n                    [\n                        147.5019637378962,\n                        -35.94874439896393\n                    ],\n                    [\n                        147.40829511810452,\n                        -35.95964934688064\n                    ],\n                    [\n                        147.36044355560452,\n                        -36.0081519510473\n                    ],\n                    [\n                        147.34843289595022,\n                        -36.06051330047932\n                    ]\n                ],\n                [\n                    [\n                        147.3431026674275,\n                        -36.07087899628372\n                    ],\n                    [\n                        147.33996142409185,\n                        -36.076304215188344\n                    ]\n                ],\n                [\n                    [\n                        147.33987280387782,\n                        -36.07629164835292\n                    ],\n                    [\n                        147.3059188160212,\n                        -36.05209726354731\n                    ],\n                    [\n                        147.2716577483128,\n                        -36.049004815630646\n                    ]\n                ]\n            ]\n        }\n    ]\n}"
  },
  {
    "path": "src/Presentations/Windows/Resources/Raw/swipeupordown.json",
    "content": "{\"ip\":0,\"fr\":60,\"v\":\"5.1.20\",\"assets\":[],\"layers\":[{\"ty\":4,\"nm\":\"swipe hand\",\"ip\":0,\"st\":0,\"ind\":5,\"hix\":2,\"ks\":{\"o\":{\"a\":0,\"k\":100},\"or\":{\"a\":0,\"k\":[0,0,0]},\"a\":{\"a\":0,\"k\":[41.5,53.5,0]},\"p\":{\"s\":true,\"x\":{\"a\":0,\"k\":298},\"y\":{\"a\":1,\"k\":[{\"t\":0,\"s\":[131.024],\"e\":[251.024],\"i\":{\"x\":[0.515],\"y\":[0.955]},\"o\":{\"x\":[0.455],\"y\":[0.03]}},{\"t\":30}]}},\"rx\":{\"a\":0,\"k\":0},\"ry\":{\"a\":0,\"k\":0},\"rz\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100,100]}},\"shapes\":[{\"ty\":\"gr\",\"nm\":\"swipe hand shape group\",\"it\":[{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[25.9166012,73.5529048],[23.5988011,71.2351047],[23.5988011,62.1199043],[25.9166012,59.8021042],[28.2344013,62.1199043],[28.2344013,71.2351047]],\"i\":[[1.280100000000001,0],[0,1.2801000000000045],[0,0],[-1.2801000999999985,0],[0,-1.2801000000000045],[0,0]],\"o\":[[-1.2804000999999978,0],[0,0],[0,-1.2801000000000045],[1.280100000000001,0],[0,0],[0,1.2798000000000087]]}}},{\"ty\":\"st\",\"o\":{\"a\":0,\"k\":0},\"w\":{\"a\":0,\"k\":0},\"c\":{\"a\":0,\"k\":[0,0,0,0]},\"lc\":3,\"lj\":1,\"ml\":1},{\"ty\":\"fl\",\"o\":{\"a\":0,\"k\":100},\"r\":1,\"c\":{\"a\":0,\"k\":[1,0.7333333333333333,0.6784313725490196,1]}},{\"ty\":\"tr\",\"o\":{\"a\":0,\"k\":100},\"a\":{\"a\":0,\"k\":[0,0]},\"s\":{\"a\":0,\"k\":[100,100]},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0}}]},{\"ty\":\"gr\",\"nm\":\"swipe hand shape group\",\"it\":[{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[68.5307029,53.995604],[66.2129028,51.6778039],[66.2129028,49.3531038],[68.5307029,47.0353037],[70.848503,49.3531038],[70.848503,51.6778039]],\"i\":[[1.2804000000000002,0],[0,1.2801000999999985],[0,0],[-1.2801000999999985,0],[0,-1.2800999999999974],[0,0]],\"o\":[[-1.2804000999999943,0],[0,0],[0,-1.2800999999999974],[1.2801000000000045,0],[0,0],[0,1.2801000999999985]]}}},{\"ty\":\"st\",\"o\":{\"a\":0,\"k\":0},\"w\":{\"a\":0,\"k\":0},\"c\":{\"a\":0,\"k\":[0,0,0,0]},\"lc\":3,\"lj\":1,\"ml\":1},{\"ty\":\"fl\",\"o\":{\"a\":0,\"k\":100},\"r\":1,\"c\":{\"a\":0,\"k\":[1,0.7333333333333333,0.6784313725490196,1]}},{\"ty\":\"tr\",\"o\":{\"a\":0,\"k\":100},\"a\":{\"a\":0,\"k\":[0,0]},\"s\":{\"a\":0,\"k\":[100,100]},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0}}]},{\"ty\":\"gr\",\"nm\":\"swipe hand shape group\",\"it\":[{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[54.3260023,53.995604],[52.0082022,51.6778039],[52.0082022,46.0291037],[54.3260023,43.7113036],[56.6438024,46.0291037],[56.6438024,51.6778039]],\"i\":[[1.2804001000000014,0],[0,1.2801000999999985],[0,0],[-1.2800999999999974,0],[0,-1.2801000999999985],[0,0]],\"o\":[[-1.2804000000000002,0],[0,0],[0,-1.2801000999999985],[1.2801000999999985,0],[0,0],[0,1.2801000999999985]]}}},{\"ty\":\"st\",\"o\":{\"a\":0,\"k\":0},\"w\":{\"a\":0,\"k\":0},\"c\":{\"a\":0,\"k\":[0,0,0,0]},\"lc\":3,\"lj\":1,\"ml\":1},{\"ty\":\"fl\",\"o\":{\"a\":0,\"k\":100},\"r\":1,\"c\":{\"a\":0,\"k\":[1,0.7333333333333333,0.6784313725490196,1]}},{\"ty\":\"tr\",\"o\":{\"a\":0,\"k\":100},\"a\":{\"a\":0,\"k\":[0,0]},\"s\":{\"a\":0,\"k\":[100,100]},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0}}]},{\"ty\":\"gr\",\"nm\":\"swipe hand shape group\",\"it\":[{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[40.1213018,53.995604],[37.8035017,51.6778039],[37.8035017,15.3607025],[40.1213018,13.0429024],[42.4391018,15.3607025],[42.4391018,51.6778039],[40.1213018,53.995604]],\"i\":[[0,0],[0,1.2801000999999985],[0,0],[-1.2801000999999985,0],[0,-1.2801001000000003],[0,0],[1.2804000000000002,0]],\"o\":[[-1.2804000999999943,0],[0,0],[0,-1.2801001000000003],[1.2804000000000002,0],[0,0],[0,1.2801000999999985],[0,0]]}}},{\"ty\":\"st\",\"o\":{\"a\":0,\"k\":0},\"w\":{\"a\":0,\"k\":0},\"c\":{\"a\":0,\"k\":[0,0,0,0]},\"lc\":3,\"lj\":1,\"ml\":1},{\"ty\":\"fl\",\"o\":{\"a\":0,\"k\":100},\"r\":1,\"c\":{\"a\":0,\"k\":[1,0.7333333333333333,0.6784313725490196,1]}},{\"ty\":\"tr\",\"o\":{\"a\":0,\"k\":100},\"a\":{\"a\":0,\"k\":[0,0]},\"s\":{\"a\":0,\"k\":[100,100]},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0}}]},{\"ty\":\"gr\",\"nm\":\"swipe hand shape group\",\"it\":[{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[82.7357034,49.3519038],[82.7357034,85.7476053],[61.8842026,106.599106],[57.3332024,106.599106],[78.1847033,85.7476053],[78.1847033,49.3519038],[73.3577031,42.6262036],[75.6320032,42.2506035]],\"i\":[[0,-3.9210001000000005],[0,0],[11.515500499999995,0],[0,0],[0,11.515500399999993],[0,0],[2.8074001000000095,0.945600000000006],[-0.7959000999999972,0]],\"o\":[[0,0],[0,11.515800400000003],[0,0],[11.515800500000005,0],[0,0],[0,-3.1251001000000045],[0.7116000000000042,-0.2441999999999993],[3.923400099999995,0]]}}},{\"ty\":\"st\",\"o\":{\"a\":0,\"k\":0},\"w\":{\"a\":0,\"k\":0},\"c\":{\"a\":0,\"k\":[0,0,0,0]},\"lc\":3,\"lj\":1,\"ml\":1},{\"ty\":\"fl\",\"o\":{\"a\":0,\"k\":100},\"r\":1,\"c\":{\"a\":0,\"k\":[1,0.7333333333333333,0.6784313725490196,1]}},{\"ty\":\"tr\",\"o\":{\"a\":0,\"k\":100},\"a\":{\"a\":0,\"k\":[0,0]},\"s\":{\"a\":0,\"k\":[100,100]},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0}}]},{\"ty\":\"gr\",\"nm\":\"swipe hand shape group\",\"it\":[{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[75.6329032,42.2506035],[68.5304029,49.3531038],[68.5304029,46.0291037],[61.4282026,38.9269034],[54.3257023,46.0294037],[54.3257023,7.15300215],[47.223202,0.0505018696],[40.1207018,7.15300215],[40.1207018,15.3607025],[33.0182015,8.2582022],[25.9160012,15.3604025],[25.9160012,62.1196043],[18.3398009,54.543404],[2.72660027,54.534704],[2.59580026,54.665204],[2.58920026,64.9369044],[14.1545007,76.5022049],[24.5699011,92.8147056],[44.1860019,106.599706],[61.8833026,106.599706],[82.7348034,85.7482053],[82.7348034,49.3528038],[75.6329032,42.2506035]],\"i\":[[0,0],[0,-3.9228000999999963],[0,0],[3.9225001999999947,0],[0,-3.9228002000000046],[0,0],[3.9228001999999975,0],[0,-3.92280015],[0,0],[3.9228000999999963,0],[0,-3.9225002],[0,0],[0,0],[4.315200170000001,-4.305900099999995],[0.043500000000000316,-0.04350000000000165],[-2.837400111,-2.8371001000000007],[0,0],[-2.224200100000001,-6.071400299999993],[-8.790900300000004,0],[0,0],[0,11.5161004],[0,0],[3.9228001000000035,0]],\"o\":[[-3.9225002000000018,0],[0,0],[0,-3.9225002000000018],[-3.9225002000000018,0],[0,0],[0,-3.92250015],[-3.9225001000000006,0],[0,0],[0,-3.9225002],[-3.9225002000000018,0],[0,0],[0,0],[-4.3104002,-4.3104001000000025],[-0.04349999999999987,0.04350000000000165],[-2.8404001109999997,2.8341001999999946],[0,0],[4.661400199999999,4.661400200000003],[3.0237002000000004,8.254800400000008],[0,0],[11.5161005,0],[0,0],[0,-3.9225000999999935],[0,0]]}}},{\"ty\":\"st\",\"o\":{\"a\":0,\"k\":0},\"w\":{\"a\":0,\"k\":0},\"c\":{\"a\":0,\"k\":[0,0,0,0]},\"lc\":3,\"lj\":1,\"ml\":1},{\"ty\":\"fl\",\"o\":{\"a\":0,\"k\":100},\"r\":1,\"c\":{\"a\":0,\"k\":[1,0.807843137254902,0.7529411764705882,1]}},{\"ty\":\"tr\",\"o\":{\"a\":0,\"k\":100},\"a\":{\"a\":0,\"k\":[0,0]},\"s\":{\"a\":0,\"k\":[100,100]},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0}}]}],\"op\":46},{\"ty\":4,\"nm\":\"PullDown\",\"ip\":0,\"st\":0,\"ind\":4,\"hix\":1,\"ks\":{\"o\":{\"a\":1,\"k\":[{\"t\":0,\"s\":[0],\"e\":[0],\"i\":{\"x\":[1],\"y\":[1]},\"o\":{\"x\":[0],\"y\":[0]}},{\"t\":9,\"s\":[0],\"e\":[100],\"i\":{\"x\":[1],\"y\":[1]},\"o\":{\"x\":[0],\"y\":[0]}},{\"t\":12,\"s\":[100],\"e\":[100],\"i\":{\"x\":[1],\"y\":[1]},\"o\":{\"x\":[0],\"y\":[0]}},{\"t\":30,\"s\":[100],\"e\":[0],\"i\":{\"x\":[1],\"y\":[1]},\"o\":{\"x\":[0],\"y\":[0]}},{\"t\":32}]},\"or\":{\"a\":0,\"k\":[0,0,0]},\"a\":{\"a\":0,\"k\":[33.5,6,0]},\"p\":{\"s\":true,\"x\":{\"a\":0,\"k\":275},\"y\":{\"a\":0,\"k\":96.02398681640625}},\"rx\":{\"a\":0,\"k\":0},\"ry\":{\"a\":0,\"k\":0},\"rz\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100,100]}},\"shapes\":[{\"ty\":\"gr\",\"nm\":\"PullDown shape group\",\"it\":[{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[0.299,11],[0.299,1.2],[5.087,1.2],[6.508,1.445],[7.6,2.117],[8.3,3.139],[8.545,4.434],[8.3,5.673],[7.6,6.674],[6.508,7.339],[5.087,7.584],[2.707,7.584],[2.707,11]],\"i\":[[0,0],[0,0],[0,0],[-0.42466879000000013,-0.16333415000000007],[-0.3033348499999997,-0.28466809000000004],[-0.16333415000000073,-0.3966686499999996],[0,-0.466669],[0.16333414999999896,-0.38733527000000034],[0.3033348500000006,-0.2800014000000006],[0.42466879000000013,-0.16333415000000073],[0.5226692800000006,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0.5226692800000006,0],[0.42466879000000013,0.16333414999999984],[0.3033348500000006,0.2846680899999998],[0.16333414999999896,0.39666865000000007],[0,0.43866885999999994],[-0.16333415000000073,0.38733527000000034],[-0.3033348499999997,0.28000139999999973],[-0.42466879000000013,0.16333414999999984],[0,0],[0,0],[0,0]]}}},{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[4.667,3.188],[2.707,3.188],[2.707,5.666],[4.653,5.666],[5.745,5.309],[6.109,4.42],[5.745,3.545]],\"i\":[[0.4760023800000006,0],[0,0],[0,0],[0,0],[-0.24266787999999995,0.23800118999999942],[0,0.3546684400000002],[0.24266787999999995,0.23800118999999986]],\"o\":[[0,0],[0,0],[0,0],[0.4853357600000008,0],[0.24266787999999995,-0.2380011900000003],[0,-0.34533506],[-0.24266787999999995,-0.23800118999999986]]}}},{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[12.241,3.776],[12.241,7.99],[12.57,8.963],[13.445,9.334],[14.11,9.187],[14.649,8.732],[14.649,3.776],[16.917,3.776],[16.917,11],[14.649,11],[14.649,9.824],[13.648,10.783],[12.367,11.112],[10.645,10.419],[9.973,8.648],[9.973,3.776]],\"i\":[[0,0],[0,0],[-0.21933440000000104,-0.2473345699999996],[-0.3640018000000005,0],[-0.20066769999999856,0.09800049000000044],[-0.15866749999999996,0.20533436000000016],[0,0],[0,0],[0,0],[0,0],[0,0],[0.38733530000000016,-0.21933439999999926],[0.46666899999999956,0],[0.44800220000000124,0.4620023],[0,0.7186702599999997],[0,0]],\"o\":[[0,0],[0,0.40133533999999926],[0.21933439999999926,0.24733457000000136],[0.24266789999999894,0],[0.20066770000000034,-0.09800048999999866],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.28000139999999973,0.4200020999999996],[-0.38733530000000016,0.21933440000000104],[-0.7000035000000011,0],[-0.44800219999999946,-0.4620023100000008],[0,0],[0,0]]}}},{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[20.949,0.64],[20.949,11],[18.681,11],[18.681,0.99]],\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]]}}},{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[24.981,0.64],[24.981,11],[22.713,11],[22.713,0.99]],\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]]}}},{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[29.965,11],[29.965,1.2],[33.955,1.2],[35.88,1.585],[37.448,2.628],[38.498,4.189],[38.883,6.128],[38.498,8.032],[37.448,9.586],[35.88,10.622],[33.955,11]],\"i\":[[0,0],[0,0],[0,0],[-0.6020030000000034,-0.25666795],[-0.4433355999999975,-0.43866885999999994],[-0.2566679999999977,-0.6020030100000002],[0,-0.69067012],[0.2566679000000036,-0.5973363200000001],[0.4433355999999975,-0.43866885999999994],[0.6020029999999963,-0.2520012999999999],[0.6813367000000028,0]],\"o\":[[0,0],[0,0],[0.6813367000000028,0],[0.6020029999999963,0.25666795],[0.4433355999999975,0.43866885999999994],[0.2566679000000036,0.6020030099999998],[0,0.6720033599999997],[-0.2566679999999977,0.5973363200000001],[-0.4433355999999975,0.4386688999999997],[-0.6020030000000034,0.2520012999999999],[0,0]]}}},{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[33.955,3.258],[32.373,3.258],[32.373,8.942],[33.955,8.942],[34.907,8.725],[35.684,8.13],[36.202,7.234],[36.391,6.128],[36.202,5.001],[35.684,4.091],[34.907,3.482]],\"i\":[[0.3360017000000042,0],[0,0],[0,0],[0,0],[-0.2986681999999945,0.1446673900000004],[-0.21933440000000104,0.25200125999999834],[-0.12600059999999758,0.34533506],[0,0.39200196],[0.12600060000000468,0.35000174999999967],[0.21933440000000104,0.25666794999999976],[0.2986682000000016,0.1493340799999996]],\"o\":[[0,0],[0,0],[0,0],[0.3360017000000042,0],[0.2986682000000016,-0.1446673900000004],[0.21933440000000104,-0.252001260000001],[0.12600060000000468,-0.34533506],[0,-0.40133534000000015],[-0.12600059999999758,-0.35000175000000056],[-0.21933440000000104,-0.2566679500000002],[-0.2986681999999945,-0.14933408000000004]]}}},{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[40.073,7.402],[40.36,5.918],[41.151,4.735],[42.348,3.951],[43.839,3.664],[45.337,3.951],[46.541,4.735],[47.332,5.918],[47.619,7.402],[47.325,8.886],[46.527,10.069],[45.33,10.853],[43.839,11.14],[42.348,10.853],[41.151,10.062],[40.36,8.872]],\"i\":[[0,0.5226692799999997],[-0.19133430000000118,0.4573356200000003],[-0.3360017000000042,0.33133498999999933],[-0.46200230000000175,0.1913342899999999],[-0.5320026999999996,0],[-0.4666690000000031,-0.1913342899999999],[-0.33600169999999707,-0.3313349900000002],[-0.19133430000000118,-0.4573356200000003],[0,-0.5320026599999998],[0.19600099999999543,-0.4573356199999985],[0.33600169999999707,-0.3313349900000002],[0.46200230000000175,-0.1913342999999994],[0.5320026999999996,0],[0.46200230000000175,0.1913342999999994],[0.33600169999999707,0.3360017000000006],[0.19133430000000118,0.4573356200000003]],\"o\":[[0,-0.5320026599999998],[0.19133430000000118,-0.4573356200000003],[0.33600169999999707,-0.3313349900000002],[0.46200230000000175,-0.1913342899999999],[0.5320026999999996,0],[0.466668999999996,0.1913342899999999],[0.3360017000000042,0.33133498999999933],[0.19133430000000118,0.4573356200000003],[0,0.5320026599999998],[-0.19600100000000253,0.4573356200000003],[-0.3360017000000042,0.33133499999999927],[-0.46200230000000175,0.1913342999999994],[-0.5320026999999996,0],[-0.46200230000000175,-0.1913342999999994],[-0.3360017000000042,-0.33600167999999897],[-0.19133430000000118,-0.4573356200000003]]}}},{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[43.839,9.222],[44.966,8.711],[45.407,7.402],[44.966,6.079],[43.839,5.554],[42.719,6.079],[42.285,7.402],[42.719,8.711]],\"i\":[[-0.4573356000000004,0],[-0.29400150000000025,0.3406683699999995],[0,0.5320026599999998],[0.29400150000000025,0.35000175000000056],[0.4573356000000004,0],[0.2893347999999989,-0.35000174999999967],[0,-0.5320026599999998],[-0.2893347999999989,-0.3406683699999995]],\"o\":[[0.4573356000000004,0],[0.29400150000000025,-0.3406683699999995],[0,-0.5320026599999998],[-0.29400150000000025,-0.35000174999999967],[-0.4573356000000004,0],[-0.2893347999999989,0.35000175000000056],[0,0.5320026599999998],[0.2893347999999989,0.3406683699999995]]}}},{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[52.519,11],[50.335,11],[48.403,3.776],[50.545,3.776],[51.553,8.088],[52.771,3.776],[54.633,3.776],[55.837,8.074],[56.831,3.776],[58.917,3.776],[56.999,11],[54.843,11],[53.667,6.744]],\"i\":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]]}}},{\"ty\":\"sh\",\"ks\":{\"a\":0,\"k\":{\"c\":true,\"v\":[[60.023,11],[60.023,3.776],[62.291,3.776],[62.291,4.952],[63.292,3.993],[64.573,3.664],[66.295,4.357],[66.967,6.128],[66.967,11],[64.699,11],[64.699,6.786],[64.37,5.813],[63.495,5.442],[62.83,5.589],[62.291,6.044],[62.291,11]],\"i\":[[0,0],[0,0],[0,0],[0,0],[-0.3873353000000037,0.2193344300000004],[-0.466668999999996,0],[-0.4480022000000048,-0.46200231000000036],[0,-0.7186702599999997],[0,0],[0,0],[0,0],[0.21933439999999393,0.24733457000000048],[0.36400180000000404,0],[0.2006677000000039,-0.09800049000000044],[0.15866749999999996,-0.20533435999999927],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0.2800014000000033,-0.4200020999999996],[0.3873352999999966,-0.21933442999999997],[0.7000035000000082,0],[0.4480022000000048,0.4620023099999999],[0,0],[0,0],[0,0],[0,-0.40133533999999926],[-0.21933440000000815,-0.2473345699999996],[-0.2426679000000007,0],[-0.20066769999999678,0.09800048999999955],[0,0],[0,0]]}}},{\"ty\":\"st\",\"o\":{\"a\":0,\"k\":0},\"w\":{\"a\":0,\"k\":0},\"c\":{\"a\":0,\"k\":[0,0,0,0]},\"lc\":3,\"lj\":1,\"ml\":1},{\"ty\":\"fl\",\"o\":{\"a\":0,\"k\":100},\"r\":1,\"c\":{\"a\":0,\"k\":[0.16862745098039217,0.32941176470588235,0.6,1]}},{\"ty\":\"tr\",\"o\":{\"a\":0,\"k\":100},\"a\":{\"a\":0,\"k\":[0,0]},\"s\":{\"a\":0,\"k\":[100,100]},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0}}]}],\"op\":46},{\"ty\":4,\"nm\":\"poni\",\"ip\":0,\"st\":0,\"ind\":3,\"hix\":4,\"ks\":{\"o\":{\"a\":0,\"k\":100},\"or\":{\"a\":0,\"k\":[0,0,0]},\"a\":{\"a\":0,\"k\":[33,8,0]},\"p\":{\"s\":true,\"x\":{\"a\":0,\"k\":275},\"y\":{\"a\":0,\"k\":51.024}},\"rx\":{\"a\":0,\"k\":0},\"ry\":{\"a\":0,\"k\":0},\"rz\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100,100]}},\"shapes\":[{\"ty\":\"gr\",\"nm\":\"poni shape group\",\"it\":[{\"ty\":\"rc\",\"s\":{\"a\":0,\"k\":[64.7999983,15.2999996]},\"r\":{\"a\":0,\"k\":5},\"p\":{\"a\":0,\"k\":[32.999997863,8.149999681]}},{\"ty\":\"st\",\"o\":{\"a\":0,\"k\":0},\"w\":{\"a\":0,\"k\":0},\"c\":{\"a\":0,\"k\":[0,0,0,0]},\"lc\":3,\"lj\":1,\"ml\":1},{\"ty\":\"fl\",\"o\":{\"a\":0,\"k\":100},\"r\":2,\"c\":{\"a\":0,\"k\":[0.2784313725490196,0.2549019607843137,0.2549019607843137,1]}},{\"ty\":\"tr\",\"o\":{\"a\":0,\"k\":100},\"a\":{\"a\":0,\"k\":[0,0]},\"s\":{\"a\":0,\"k\":[100,100]},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0}}]}],\"op\":46},{\"ty\":4,\"nm\":\"pulldown-bg\",\"ip\":0,\"st\":0,\"ind\":2,\"hix\":3,\"ks\":{\"o\":{\"a\":1,\"k\":[{\"t\":0,\"s\":[0],\"e\":[100],\"i\":{\"x\":[1],\"y\":[1]},\"o\":{\"x\":[0],\"y\":[0]}},{\"t\":7,\"s\":[100],\"e\":[100],\"i\":{\"x\":[1],\"y\":[1]},\"o\":{\"x\":[0],\"y\":[0]}},{\"t\":40,\"s\":[100],\"e\":[0],\"i\":{\"x\":[0.515],\"y\":[0.955]},\"o\":{\"x\":[0.455],\"y\":[0.03]}},{\"t\":46}]},\"or\":{\"a\":0,\"k\":[0,0,0]},\"a\":{\"a\":0,\"k\":[73.5,56,0]},\"p\":{\"s\":true,\"x\":{\"a\":0,\"k\":274.5},\"y\":{\"a\":0,\"k\":102.524}},\"rx\":{\"a\":0,\"k\":0},\"ry\":{\"a\":0,\"k\":0},\"rz\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]}},\"shapes\":[{\"ty\":\"gr\",\"nm\":\"pulldown-bg shape group\",\"it\":[{\"ty\":\"sh\",\"ks\":{\"a\":1,\"k\":[{\"t\":0,\"s\":[{\"c\":true,\"v\":[[132.499996,0.899999738],[146.899996,15.2999994],[146.28707618286953,26.203001929559875],[74.61360381713052,33.458711407295795],[0.19682878800002845,24.801225229559876],[0.199999809,15.2999994],[14.5999994,0.899999738]],\"i\":[[0,0],[0,-7.952900230000001],[0,0],[31.190881000000005,0],[22.832421651827,8.591914205998464],[0,0],[-7.9529001599999996,0]],\"o\":[[7.9529,0],[0,0],[-36.57924441669809,7.208294388867969],[-31.850791,0],[0,0],[0,-7.952900230000001],[0,0]]}],\"e\":[{\"c\":true,\"v\":[[132.499996,0.899999738],[146.899996,15.2999994],[146.28707618286953,77.74572256852201],[73.38639618286953,114.45441526852201],[0.19682878800002845,76.34394586852201],[0.199999809,15.2999994],[14.5999994,0.899999738]],\"i\":[[0,0],[0,-7.952900230000001],[0,0],[31.190881000000005,0],[14.241968212,22.704802],[0,0],[-7.9529001599999996,0]],\"o\":[[7.9529,0],[0,0],[-14.489507000000003,21.934786000000003],[-31.850791,0],[0,0],[0,-7.952900230000001],[0,0]]}],\"i\":{\"x\":[0.515],\"y\":[0.955]},\"o\":{\"x\":[0.455],\"y\":[0.03]}},{\"t\":21,\"s\":[{\"c\":true,\"v\":[[132.499996,0.899999738],[146.899996,15.2999994],[146.28707618286953,77.74572256852201],[73.38639618286953,114.45441526852201],[0.19682878800002845,76.34394586852201],[0.199999809,15.2999994],[14.5999994,0.899999738]],\"i\":[[0,0],[0,-7.952900230000001],[0,0],[31.190881000000005,0],[14.241968212,22.704802],[0,0],[-7.9529001599999996,0]],\"o\":[[7.9529,0],[0,0],[-14.489507000000003,21.934786000000003],[-31.850791,0],[0,0],[0,-7.952900230000001],[0,0]]}],\"e\":[{\"c\":true,\"v\":[[132.499996,0.899999738],[146.899996,15.2999994],[146.28707618286953,66.70085386017297],[73.38639618286953,70.8885442522564],[0.19682878800002845,65.29907716017297],[0.199999809,15.2999994],[14.5999994,0.899999738]],\"i\":[[0,0],[0,-7.952900230000001],[0,0],[31.190881000000005,0],[14.241968212,22.704802],[0,0],[-7.9529001599999996,0]],\"o\":[[7.9529,0],[0,0],[-14.489507000000003,21.934786000000003],[-31.850791,0],[0,0],[0,-7.952900230000001],[0,0]]}],\"i\":{\"x\":[0.515],\"y\":[0.955]},\"o\":{\"x\":[0.455],\"y\":[0.03]}},{\"t\":30,\"s\":[{\"c\":true,\"v\":[[132.499996,0.899999738],[146.899996,15.2999994],[146.28707618286953,66.70085386017297],[73.38639618286953,70.8885442522564],[0.19682878800002845,65.29907716017297],[0.199999809,15.2999994],[14.5999994,0.899999738]],\"i\":[[0,0],[0,-7.952900230000001],[0,0],[31.190881000000005,0],[14.241968212,22.704802],[0,0],[-7.9529001599999996,0]],\"o\":[[7.9529,0],[0,0],[-14.489507000000003,21.934786000000003],[-31.850791,0],[0,0],[0,-7.952900230000001],[0,0]]}],\"e\":[{\"c\":true,\"v\":[[132.499996,0.899999738],[146.899996,15.2999994],[146.28707618286953,77.74572256852201],[73.38639618286953,114.45441526852201],[0.19682878800002845,76.34394586852201],[0.199999809,15.2999994],[14.5999994,0.899999738]],\"i\":[[0,0],[0,-7.952900230000001],[0,0],[31.190881000000005,0],[14.241968212,22.704802],[0,0],[-7.9529001599999996,0]],\"o\":[[7.9529,0],[0,0],[-14.489507000000003,21.934786000000003],[-31.850791,0],[0,0],[0,-7.952900230000001],[0,0]]}],\"i\":{\"x\":[0.515],\"y\":[0.955]},\"o\":{\"x\":[0.455],\"y\":[0.03]}},{\"t\":39,\"s\":[{\"c\":true,\"v\":[[132.499996,0.899999738],[146.899996,15.2999994],[146.28707618286953,77.74572256852201],[73.38639618286953,114.45441526852201],[0.19682878800002845,76.34394586852201],[0.199999809,15.2999994],[14.5999994,0.899999738]],\"i\":[[0,0],[0,-7.952900230000001],[0,0],[31.190881000000005,0],[14.241968212,22.704802],[0,0],[-7.9529001599999996,0]],\"o\":[[7.9529,0],[0,0],[-14.489507000000003,21.934786000000003],[-31.850791,0],[0,0],[0,-7.952900230000001],[0,0]]}],\"e\":[{\"c\":true,\"v\":[[132.499996,0.899999738],[146.899996,15.2999994],[146.28707618286953,25.589398112429393],[73.38639618286953,62.29809081242939],[0.19682878800002845,24.187621412429394],[0.199999809,15.2999994],[14.5999994,0.899999738]],\"i\":[[0,0],[0,-7.952900230000001],[0,0],[31.190881000000005,0],[14.241968212,22.704802],[0,0],[-7.9529001599999996,0]],\"o\":[[7.9529,0],[0,0],[-14.489507000000003,21.934786000000003],[-31.850791,0],[0,0],[0,-7.952900230000001],[0,0]]}],\"i\":{\"x\":[0.515],\"y\":[0.955]},\"o\":{\"x\":[0.455],\"y\":[0.03]}},{\"t\":46}]}},{\"ty\":\"st\",\"o\":{\"a\":0,\"k\":0},\"w\":{\"a\":0,\"k\":0},\"c\":{\"a\":0,\"k\":[0,0,0,0]},\"lc\":3,\"lj\":1,\"ml\":1},{\"ty\":\"fl\",\"o\":{\"a\":0,\"k\":100},\"r\":2,\"c\":{\"a\":0,\"k\":[0.9254901960784314,0.9294117647058824,0.9490196078431372,1]}},{\"ty\":\"tr\",\"o\":{\"a\":0,\"k\":100},\"a\":{\"a\":0,\"k\":[0,0]},\"s\":{\"a\":0,\"k\":[100,100]},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0}}]}],\"op\":46},{\"ty\":4,\"nm\":\"phone\",\"ip\":0,\"st\":0,\"ind\":1,\"hix\":5,\"ks\":{\"o\":{\"a\":0,\"k\":100},\"or\":{\"a\":0,\"k\":[0,0,0]},\"a\":{\"a\":0,\"k\":[81,162,0]},\"p\":{\"s\":true,\"x\":{\"a\":0,\"k\":275},\"y\":{\"a\":0,\"k\":200}},\"rx\":{\"a\":0,\"k\":0},\"ry\":{\"a\":0,\"k\":0},\"rz\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100,100]}},\"shapes\":[{\"ty\":\"gr\",\"nm\":\"phone shape group\",\"it\":[{\"ty\":\"rc\",\"s\":{\"a\":0,\"k\":[146.699996,304.199992]},\"r\":{\"a\":0,\"k\":14},\"p\":{\"a\":0,\"k\":[80.54999781,161.99999574]}},{\"ty\":\"st\",\"o\":{\"a\":0,\"k\":0},\"w\":{\"a\":0,\"k\":0},\"c\":{\"a\":0,\"k\":[0,0,0,0]},\"lc\":3,\"lj\":1,\"ml\":1},{\"ty\":\"fl\",\"o\":{\"a\":0,\"k\":100},\"r\":2,\"c\":{\"a\":0,\"k\":[1,1,1,1]}},{\"ty\":\"tr\",\"o\":{\"a\":0,\"k\":100},\"a\":{\"a\":0,\"k\":[0,0]},\"s\":{\"a\":0,\"k\":[100,100]},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0}}]},{\"ty\":\"gr\",\"nm\":\"phone shape group\",\"it\":[{\"ty\":\"rc\",\"s\":{\"a\":0,\"k\":[161.099996,323.999991]},\"r\":{\"a\":0,\"k\":21},\"p\":{\"a\":0,\"k\":[80.549998,161.9999955]}},{\"ty\":\"st\",\"o\":{\"a\":0,\"k\":0},\"w\":{\"a\":0,\"k\":0},\"c\":{\"a\":0,\"k\":[0,0,0,0]},\"lc\":3,\"lj\":1,\"ml\":1},{\"ty\":\"fl\",\"o\":{\"a\":0,\"k\":100},\"r\":2,\"c\":{\"a\":0,\"k\":[0.2784313725490196,0.2549019607843137,0.2549019607843137,1]}},{\"ty\":\"tr\",\"o\":{\"a\":0,\"k\":100},\"a\":{\"a\":0,\"k\":[0,0]},\"s\":{\"a\":0,\"k\":[100,100]},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0}}]}],\"op\":46}],\"op\":46,\"w\":550,\"h\":400}"
  },
  {
    "path": "src/Presentations/Windows/Resources/Raw/totechs_logo.json",
    "content": "{\"assets\":[{\"id\":\"TuQ2z4gBAU-uffJqSS2Xq\",\"layers\":[{\"ddd\":0,\"ind\":25,\"ty\":4,\"ln\":\"layer_25\",\"sr\":1,\"ks\":{\"a\":{\"a\":0,\"k\":[311.26,236.63]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[415,315.5]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[133.33,133.33]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}},\"ao\":0,\"ip\":0,\"op\":120,\"st\":0,\"bm\":0,\"shapes\":[{\"ty\":\"gr\",\"nm\":\"surface346\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-3.31,0],[0,0],[0,-3.31],[0,0],[3.31,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.9,1.6],[1.6,-1.91],[0,0],[0,0],[0,0],[0,3.31]],\"o\":[[0,-3.31],[0,0],[3.31,0],[0,0],[0,3.31],[0,0],[0,0],[0,0],[0,0],[0,0],[1.6,-1.9],[-1.9,-1.6],[0,0],[0,0],[0,0],[-3.31,0],[0,0]],\"v\":[[0,6],[6,0],[616.5,0],[622.5,6],[622.5,134.25],[616.5,140.25],[390,140.25],[390,288],[232.5,473.25],[232.5,445.88],[352.2,303.23],[351.65,296.89],[345.31,297.45],[232.5,432],[232.5,140.25],[6,140.25],[0,134.25]]}}},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.06,0.09,0.16,1]},\"r\":1,\"o\":{\"a\":0,\"k\":100}},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]}]},{\"ddd\":0,\"ind\":26,\"ty\":4,\"ln\":\"layer_26\",\"sr\":1,\"ks\":{\"a\":{\"a\":0,\"k\":[34.5,44.25]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[474,499]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[133.33,133.33]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}},\"ao\":0,\"ip\":0,\"op\":120,\"st\":0,\"bm\":0,\"shapes\":[{\"ty\":\"gr\",\"nm\":\"surface351\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[2.07,1.73],[-1.74,2.07],[0,0]],\"o\":[[0,0],[-1.73,2.07],[-2.07,-1.73],[0,0],[0,0]],\"v\":[[69,14.66],[8.64,86.75],[1.75,87.36],[1.15,80.48],[69,0]]}}},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.06,0.09,0.16,1]},\"r\":1,\"o\":{\"a\":0,\"k\":100}},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]}]},{\"ddd\":0,\"ind\":27,\"ty\":4,\"ln\":\"layer_27\",\"sr\":1,\"ks\":{\"a\":{\"a\":0,\"k\":[78.75,210.755]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[415,664]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[133.33,133.33]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}},\"ao\":0,\"ip\":0,\"op\":120,\"st\":0,\"bm\":0,\"shapes\":[{\"ty\":\"gr\",\"nm\":\"surface356\",\"it\":[{\"ty\":\"gr\",\"nm\":\"use\",\"it\":[{\"ty\":\"gr\",\"nm\":\"surface363\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-0.02,4.42],[0,0],[0,0],[0,0],[4.39,0.02]],\"o\":[[-4.39,-0.02],[0,0],[0,0],[0,0],[-0.02,4.42],[0,0]],\"v\":[[10,562],[0,551.98],[0,247],[210,0],[210,551.98],[200,562]]}}},{\"ty\":\"st\",\"bm\":0,\"c\":{\"a\":0,\"k\":[0.06,0.09,0.16,1]},\"lc\":1,\"lj\":2,\"ml\":3.86,\"o\":{\"a\":0,\"k\":100},\"w\":{\"a\":0,\"k\":20}},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.92,0.93,0.94,1]},\"r\":1,\"o\":{\"a\":0,\"k\":100}},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[75,75]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]}]}]},{\"id\":\"8Ty4UV_G6vxRW9UMmWgxg\",\"layers\":[{\"ddd\":0,\"ind\":29,\"ty\":4,\"ln\":\"layer_29\",\"sr\":1,\"ks\":{\"a\":{\"a\":0,\"k\":[745.895,745.895]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[27000,26999.5]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[133.33,133.33]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}},\"ao\":0,\"ip\":0,\"op\":120,\"st\":0,\"bm\":0,\"shapes\":[{\"ty\":\"gr\",\"nm\":\"surface381\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[1.53,-382.73],[-382.73,-1.53],[-1.53,382.73],[382.73,1.53]],\"o\":[[-382.73,-1.53],[-1.53,382.73],[382.73,1.53],[1.53,-382.73],[0,0]],\"v\":[[748.97,53.2],[53.2,743.43],[743.43,1439.19],[1439.19,748.97],[748.97,53.2]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-407.58,-1.63],[1.63,-407.58],[407.59,1.63],[-1.63,407.59]],\"o\":[[1.63,-407.58],[407.59,1.63],[-1.63,407.59],[-407.58,-1.63],[0,0]],\"v\":[[8.2,743.24],[749.15,8.2],[1484.19,749.15],[743.24,1484.19],[8.2,743.24]]}}},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.06,0.09,0.16,1]},\"r\":2,\"o\":{\"a\":0,\"k\":100}},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"gr\",\"nm\":\"use\",\"it\":[{\"ty\":\"gr\",\"nm\":\"surface388\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[2.04,-510.31],[-510.31,-2.04],[-2.04,510.31],[510.31,2.04]],\"o\":[[-510.31,-2.04],[-2.04,510.31],[510.31,2.04],[2.04,-510.31],[0,0]],\"v\":[[998.63,70.94],[70.94,991.23],[991.23,1918.92],[1918.92,998.63],[998.63,70.94]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-543.44,-2.18],[2.17,-543.44],[543.45,2.17],[-2.18,543.45]],\"o\":[[2.17,-543.44],[543.45,2.17],[-2.17,543.45],[-543.44,-2.17],[0,0]],\"v\":[[10.94,990.99],[998.86,10.94],[1978.92,998.86],[990.99,1978.92],[10.94,990.99]]}}},{\"ty\":\"st\",\"bm\":0,\"c\":{\"a\":0,\"k\":[0.06,0.09,0.16,1]},\"lc\":1,\"lj\":1,\"ml\":4,\"o\":{\"a\":0,\"k\":100},\"w\":{\"a\":0,\"k\":20}},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[75,75]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]}]},{\"ddd\":0,\"ind\":30,\"ty\":4,\"ln\":\"layer_30\",\"sr\":1,\"ks\":{\"a\":{\"a\":0,\"k\":[982.15,1001.275]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[27000,27000]},\"r\":{\"a\":1,\"k\":[{\"t\":0,\"s\":[0],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":1,\"s\":[2.61],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":2,\"s\":[5.23],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":3,\"s\":[7.84],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":4,\"s\":[10.46],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":5,\"s\":[13.07],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":6,\"s\":[15.68],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":7,\"s\":[18.3],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":8,\"s\":[20.91],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":9,\"s\":[23.53],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":10,\"s\":[26.14],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":11,\"s\":[28.75],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":12,\"s\":[31.37],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":13,\"s\":[33.98],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":14,\"s\":[36.59],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":15,\"s\":[39.21],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":16,\"s\":[41.82],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":17,\"s\":[44.44],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":18,\"s\":[47.05],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":19,\"s\":[49.66],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":20,\"s\":[52.28],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":21,\"s\":[54.89],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":22,\"s\":[57.51],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":23,\"s\":[60.12],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":24,\"s\":[62.73],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":25,\"s\":[65.35],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":26,\"s\":[67.96],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":27,\"s\":[70.58],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":28,\"s\":[73.19],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":29,\"s\":[75.8],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":30,\"s\":[78.42],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":31,\"s\":[81.03],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":32,\"s\":[83.65],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":33,\"s\":[86.26],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":34,\"s\":[88.87],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":35,\"s\":[91.49],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":36,\"s\":[94.1],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":37,\"s\":[96.71],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":38,\"s\":[99.33],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":39,\"s\":[101.94],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":40,\"s\":[104.56],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":41,\"s\":[107.17],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":42,\"s\":[109.78],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":43,\"s\":[112.4],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":44,\"s\":[115.01],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":45,\"s\":[117.63],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":46,\"s\":[120.24],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":47,\"s\":[122.85],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":48,\"s\":[125.47],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":49,\"s\":[128.08],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":50,\"s\":[130.7],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":51,\"s\":[133.31],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":52,\"s\":[135.92],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":53,\"s\":[138.54],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":54,\"s\":[141.15],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":55,\"s\":[143.77],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":56,\"s\":[146.38],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":57,\"s\":[148.99],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":58,\"s\":[151.61],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":59,\"s\":[154.22],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":60,\"s\":[156.83],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":61,\"s\":[159.45],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":62,\"s\":[162.06],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":63,\"s\":[164.68],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":64,\"s\":[167.29],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":65,\"s\":[169.9],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":66,\"s\":[172.52],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":67,\"s\":[175.13],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":68,\"s\":[177.75],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":69,\"s\":[180.36],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":70,\"s\":[182.97],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":71,\"s\":[185.59],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":72,\"s\":[188.2],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":73,\"s\":[190.82],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":74,\"s\":[193.43],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":75,\"s\":[196.04],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":76,\"s\":[198.66],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":77,\"s\":[201.27],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":78,\"s\":[203.89],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":79,\"s\":[206.5],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":80,\"s\":[209.11],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":81,\"s\":[211.73],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":82,\"s\":[214.34],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":83,\"s\":[216.95],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":84,\"s\":[219.57],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":85,\"s\":[222.18],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":86,\"s\":[224.8],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":87,\"s\":[227.41],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":88,\"s\":[230.02],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":89,\"s\":[232.64],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":90,\"s\":[235.25],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":91,\"s\":[237.87],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":92,\"s\":[240.48],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":93,\"s\":[243.09],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":94,\"s\":[245.71],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":95,\"s\":[248.32],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":96,\"s\":[250.94],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":97,\"s\":[253.55],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":98,\"s\":[256.16],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":99,\"s\":[258.78],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":100,\"s\":[261.39],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":101,\"s\":[264.01],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":102,\"s\":[266.62],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":103,\"s\":[269.23],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":104,\"s\":[271.85],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":105,\"s\":[274.46],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":106,\"s\":[277.07],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":107,\"s\":[279.69],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":108,\"s\":[282.3],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":109,\"s\":[284.92],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":110,\"s\":[287.53],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":111,\"s\":[290.14],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":112,\"s\":[292.76],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":113,\"s\":[295.37],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":114,\"s\":[297.99],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":115,\"s\":[300.6],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":116,\"s\":[303.21],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":117,\"s\":[305.83],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":118,\"s\":[308.44],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}},{\"t\":119,\"s\":[311.06],\"i\":{\"x\":0,\"y\":0},\"o\":{\"x\":1,\"y\":1}}]},\"s\":{\"a\":0,\"k\":[133.33,133.33]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}},\"ao\":0,\"ip\":0,\"op\":120,\"st\":0,\"bm\":0,\"shapes\":[{\"ty\":\"gr\",\"nm\":\"surface406\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[-75.59,14.09],[0,0],[-34.84,0],[-33.91,-3.54],[0,0],[-67.5,-32.09],[0,0],[-51.05,-46.04],[0,0],[-36.47,-66.72],[0,0],[-14.41,-68.25],[0,0],[0,-38.36],[4.75,-37.06],[0,0],[27.76,-62.23],[0,0],[51.82,-54.82],[0,0],[59.88,-34.62],[0,0],[75.62,-14.08],[0,0],[34.84,0],[33.91,3.53],[0,0],[67.46,32.08],[0,0],[51.04,46.04],[0,0],[36.43,66.64],[0,0],[14.41,68.25],[0,0],[0,38.3],[-4.74,37],[0,0],[-27.77,62.22],[0,0],[-51.75,54.77],[0,0],[-59.88,34.63]],\"o\":[[0,0],[67.46,-32.08],[0,0],[33.91,-3.54],[34.84,0],[0,0],[75.62,14.08],[0,0],[59.88,34.63],[0,0],[51.82,54.82],[0,0],[27.76,62.22],[0,0],[4.75,37.06],[0,38.36],[0,0],[-14.41,68.25],[0,0],[-36.47,66.72],[0,0],[-51.05,46.04],[0,0],[-67.5,32.09],[0,0],[-33.91,3.53],[-34.84,0],[0,0],[-75.59,-14.09],[0,0],[-59.88,-34.62],[0,0],[-51.75,-54.77],[0,0],[-27.77,-62.23],[0,0],[-4.74,-37],[0,-38.3],[0,0],[14.41,-68.25],[0,0],[36.43,-66.64],[0,0],[51.04,-46.04],[0,0]],\"v\":[[490.79,149.42],[604.65,205.59],[819.89,135.66],[878.96,23.35],[982.13,18],[1085.29,23.35],[1144.34,135.63],[1359.69,205.54],[1473.46,149.42],[1640.28,270.84],[1622.06,396.45],[1755.22,579.47],[1880.34,600.97],[1944,797.09],[1855.39,888.05],[1862.6,1001.25],[1855.39,1114.45],[1944,1205.41],[1880.34,1401.53],[1755.22,1423.03],[1622.06,1606.06],[1640.28,1731.66],[1473.46,1853.08],[1359.69,1796.95],[1144.34,1866.87],[1085.29,1979.15],[982.13,1984.5],[878.96,1979.15],[819.89,1866.83],[604.65,1796.92],[490.79,1853.08],[323.97,1731.66],[342.21,1605.89],[209.23,1423.07],[83.91,1401.53],[20.25,1205.41],[109.02,1114.28],[101.83,1001.25],[109.02,888.22],[20.25,797.09],[83.91,600.97],[209.23,579.44],[342.21,396.61],[323.97,270.84],[490.79,149.42]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,316.09],[316.04,0],[0,-316.09],[-316.04,0]],\"o\":[[316.04,0],[0,-316.09],[-316.04,0],[0,316.09],[0,0]],\"v\":[[982.21,1573.59],[1554.46,1001.25],[982.21,428.91],[409.96,1001.25],[982.21,1573.59]]}}},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.2,0.25,0.33,1]},\"r\":2,\"o\":{\"a\":0,\"k\":100}},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"gr\",\"nm\":\"use\",\"it\":[{\"ty\":\"gr\",\"nm\":\"surface413\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"gr\",\"it\":[{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[604.65,205.59],[596.69,221.73],[604.51,225.59],[612.38,221.84]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[490.79,149.42],[498.75,133.28],[490.11,129.02],[481.78,133.84]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[819.89,135.66],[823.18,153.36],[831.76,151.76],[835.82,144.04]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[878.96,23.35],[877.09,5.45],[867.52,6.45],[863.03,14.97]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1085.29,23.35],[1101.22,14.97],[1096.73,6.45],[1087.16,5.45]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1144.34,135.63],[1128.41,144.01],[1132.47,151.73],[1141.05,153.32]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1359.69,205.54],[1351.96,221.8],[1359.83,225.54],[1367.66,221.68]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1473.46,149.42],[1482.47,133.84],[1474.14,129.02],[1465.5,133.28]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1640.28,270.84],[1658.09,273.43],[1659.47,263.91],[1652.33,257.48]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1622.06,396.45],[1604.25,393.86],[1603,402.48],[1608.98,408.81]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1755.22,579.47],[1739.42,588.1],[1743.59,595.74],[1752.16,597.21]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1880.34,600.97],[1896.77,593.63],[1892.86,584.86],[1883.39,583.23]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1944,797.09],[1956.89,809.65],[1963.6,802.76],[1961.61,793.36]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1855.39,888.05],[1842.5,875.49],[1836.43,881.71],[1837.54,890.34]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1855.39,1114.45],[1837.54,1112.16],[1836.43,1120.79],[1842.5,1127.01]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1944,1205.41],[1961.61,1209.14],[1963.6,1199.74],[1956.89,1192.85]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1880.34,1401.53],[1883.39,1419.27],[1892.86,1417.64],[1896.77,1408.87]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1755.22,1423.03],[1752.16,1405.29],[1743.59,1406.76],[1739.42,1414.39]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1622.06,1606.06],[1608.98,1593.69],[1603,1600.02],[1604.25,1608.64]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1640.28,1731.66],[1652.33,1745.02],[1659.47,1738.59],[1658.09,1729.07]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1473.46,1853.08],[1465.5,1869.23],[1474.14,1873.48],[1482.47,1868.66]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1359.69,1796.95],[1367.66,1780.82],[1359.83,1776.96],[1351.96,1780.7]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1144.34,1866.87],[1141.05,1849.18],[1132.47,1850.77],[1128.41,1858.49]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1085.29,1979.15],[1087.16,1997.05],[1096.73,1996.06],[1101.22,1987.53]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[878.96,1979.15],[863.03,1987.53],[867.52,1996.06],[877.09,1997.05]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[819.89,1866.83],[835.82,1858.45],[831.76,1850.74],[823.18,1849.14]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[604.65,1796.92],[612.38,1780.66],[604.51,1776.91],[596.69,1780.77]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[490.79,1853.08],[481.78,1868.66],[490.11,1873.48],[498.75,1869.23]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[323.97,1731.66],[306.16,1729.07],[304.78,1738.59],[311.91,1745.02]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[342.21,1605.89],[360.02,1608.47],[361.27,1599.86],[355.29,1593.52]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[209.23,1423.07],[225.03,1414.43],[220.86,1406.8],[212.29,1405.33]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[83.91,1401.53],[67.48,1408.87],[71.39,1417.64],[80.87,1419.27]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[20.25,1205.41],[7.36,1192.85],[0.65,1199.74],[2.64,1209.14]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[109.02,1114.28],[121.91,1126.84],[127.98,1120.62],[126.87,1112]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[109.02,888.22],[126.87,890.5],[127.98,881.88],[121.91,875.66]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[20.25,797.09],[2.64,793.36],[0.65,802.76],[7.36,809.65]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[83.91,600.97],[80.86,583.23],[71.39,584.86],[67.48,593.63]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[209.23,579.44],[212.29,597.18],[220.86,595.7],[225.03,588.07]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[342.21,396.61],[355.29,408.97],[361.27,402.64],[360.02,394.03]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[323.97,270.84],[311.91,257.48],[304.78,263.91],[306.16,273.43]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[612.61,189.44],[498.75,133.28],[482.82,165.56],[596.69,221.73]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[68.85,-32.74],[0,0],[-74.03,13.8]],\"o\":[[-77.14,14.38],[0,0],[66.08,-31.42],[0,0]],\"v\":[[816.59,117.97],[596.92,189.33],[612.38,221.84],[823.18,153.36]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[863.03,14.97],[803.95,127.29],[835.82,144.04],[894.89,31.73]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[34.52,-3.6],[0,0],[-34.21,0]],\"o\":[[-35.47,0],[0,0],[33.29,-3.47],[0,0]],\"v\":[[982.13,0],[877.09,5.45],[880.83,41.25],[982.13,36]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[35.47,0],[0,0],[-33.29,-3.47]],\"o\":[[-34.52,-3.6],[0,0],[34.21,0],[0,0]],\"v\":[[1087.16,5.45],[982.13,0],[982.13,36],[1083.42,41.25]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1160.27,127.25],[1101.22,14.97],[1069.36,31.73],[1128.41,144.01]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[77.18,14.37],[0,0],[-66.11,-31.43]],\"o\":[[-68.88,-32.75],[0,0],[74.07,13.79],[0,0]],\"v\":[[1367.41,189.29],[1147.64,117.93],[1141.05,153.32],[1351.96,221.8]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1465.5,133.28],[1351.73,189.4],[1367.66,221.68],[1481.43,165.56]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[60.98,35.26],[0,0],[-50.11,-45.2]],\"o\":[[-51.97,-46.87],[0,0],[58.79,33.99],[0,0]],\"v\":[[1652.33,257.48],[1482.47,133.84],[1464.45,165],[1628.22,284.21]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1639.88,399.03],[1658.09,273.43],[1622.47,268.26],[1604.25,393.86]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[52.88,55.94],[0,0],[-35.73,-65.35]],\"o\":[[-37.22,-68.09],[0,0],[50.77,53.71],[0,0]],\"v\":[[1771.01,570.84],[1635.14,384.08],[1608.98,408.81],[1739.42,588.1]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1883.39,583.23],[1758.26,561.73],[1752.16,597.21],[1877.29,618.71]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[28.27,63.37],[0,0],[-14.14,-67]],\"o\":[[-14.68,-69.51],[0,0],[27.25,61.08],[0,0]],\"v\":[[1961.61,793.36],[1896.77,593.63],[1863.9,608.3],[1926.39,800.8]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1868.29,900.61],[1956.89,809.65],[1931.11,784.52],[1842.5,875.49]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[4.85,37.82],[0,0],[0,-37.59]],\"o\":[[0,-39.13],[0,0],[4.66,36.31],[0,0]],\"v\":[[1880.6,1001.25],[1873.25,885.76],[1837.54,890.34],[1844.6,1001.25]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,39.13],[0,0],[4.66,-36.31]],\"o\":[[4.85,-37.82],[0,0],[0,37.59],[0,0]],\"v\":[[1873.25,1116.74],[1880.6,1001.25],[1844.6,1001.25],[1837.54,1112.16]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1956.89,1192.85],[1868.29,1101.89],[1842.5,1127.01],[1931.11,1217.98]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-14.68,69.51],[0,0],[27.25,-61.08]],\"o\":[[28.27,-63.37],[0,0],[-14.14,67],[0,0]],\"v\":[[1896.77,1408.87],[1961.61,1209.14],[1926.39,1201.7],[1863.9,1394.2]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1758.26,1440.77],[1883.39,1419.27],[1877.29,1383.8],[1752.16,1405.29]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-37.22,68.09],[0,0],[50.77,-53.71]],\"o\":[[52.88,-55.93],[0,0],[-35.73,65.36],[0,0]],\"v\":[[1635.14,1618.42],[1771.01,1431.66],[1739.42,1414.39],[1608.98,1593.69]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1658.09,1729.07],[1639.88,1603.47],[1604.25,1608.64],[1622.47,1734.24]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-51.97,46.88],[0,0],[58.79,-33.99]],\"o\":[[60.98,-35.26],[0,0],[-50.11,45.19],[0,0]],\"v\":[[1482.47,1868.66],[1652.33,1745.02],[1628.22,1718.3],[1464.45,1837.5]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1351.73,1813.1],[1465.5,1869.23],[1481.42,1836.94],[1367.66,1780.82]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-68.88,32.75],[0,0],[74.07,-13.79]],\"o\":[[77.18,-14.37],[0,0],[-66.11,31.43],[0,0]],\"v\":[[1147.64,1884.57],[1367.41,1813.21],[1351.96,1780.7],[1141.05,1849.18]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[1101.22,1987.53],[1160.27,1875.25],[1128.41,1858.49],[1069.36,1970.77]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-34.52,3.6],[0,0],[34.21,0]],\"o\":[[35.47,0],[0,0],[-33.29,3.47],[0,0]],\"v\":[[982.13,2002.5],[1087.16,1997.05],[1083.42,1961.25],[982.13,1966.5]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-35.47,0],[0,0],[33.29,3.47]],\"o\":[[34.52,3.6],[0,0],[-34.21,0],[0,0]],\"v\":[[877.09,1997.05],[982.13,2002.5],[982.13,1966.5],[880.83,1961.25]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[803.95,1875.22],[863.03,1987.53],[894.89,1970.77],[835.82,1858.45]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-77.14,-14.38],[0,0],[66.08,31.43]],\"o\":[[68.85,32.73],[0,0],[-74.03,-13.8],[0,0]],\"v\":[[596.92,1813.17],[816.59,1884.53],[823.18,1849.14],[612.38,1780.66]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[498.75,1869.23],[612.61,1813.06],[596.69,1780.77],[482.82,1836.94]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-60.98,-35.26],[0,0],[50.11,45.19]],\"o\":[[51.97,46.88],[0,0],[-58.79,-33.99],[0,0]],\"v\":[[311.91,1745.02],[481.78,1868.66],[499.8,1837.5],[336.03,1718.3]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[324.39,1603.3],[306.16,1729.07],[341.79,1734.24],[360.02,1608.47]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-52.8,-55.89],[0,0],[35.68,65.27]],\"o\":[[37.18,68],[0,0],[-50.7,-53.65],[0,0]],\"v\":[[193.44,1431.7],[329.13,1618.25],[355.29,1593.52],[225.03,1414.43]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[80.87,1419.27],[206.19,1440.8],[212.29,1405.33],[86.96,1383.8]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-28.28,-63.37],[0,0],[14.14,67]],\"o\":[[14.68,69.51],[0,0],[-27.25,-61.08],[0,0]],\"v\":[[2.64,1209.14],[67.48,1408.87],[100.35,1394.2],[37.86,1201.7]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[96.13,1101.73],[7.36,1192.85],[33.14,1217.98],[121.91,1126.84]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-4.84,-37.76],[0,0],[0,37.53]],\"o\":[[0,39.07],[0,0],[-4.64,-36.25],[0,0]],\"v\":[[83.83,1001.25],[91.16,1116.57],[126.87,1112],[119.83,1001.25]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,-39.07],[0,0],[-4.64,36.25]],\"o\":[[-4.84,37.76],[0,0],[0,-37.53],[0,0]],\"v\":[[91.16,885.93],[83.83,1001.25],[119.83,1001.25],[126.87,890.5]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[7.36,809.65],[96.13,900.77],[121.91,875.66],[33.14,784.52]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[14.68,-69.51],[0,0],[-27.25,61.08]],\"o\":[[-28.28,63.37],[0,0],[14.14,-67],[0,0]],\"v\":[[67.48,593.63],[2.64,793.36],[37.86,800.8],[100.35,608.3]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[206.19,561.7],[80.86,583.23],[86.96,618.71],[212.29,597.18]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[37.18,-68],[0,0],[-50.7,53.66]],\"o\":[[-52.8,55.88],[0,0],[35.68,-65.28],[0,0]],\"v\":[[329.13,384.25],[193.44,570.8],[225.03,588.07],[355.29,408.97]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,0],[0,0],[0,0]],\"o\":[[0,0],[0,0],[0,0],[0,0]],\"v\":[[306.16,273.43],[324.39,399.2],[360.02,394.03],[341.79,268.26]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[51.97,-46.87],[0,0],[-58.79,33.99]],\"o\":[[-60.98,35.26],[0,0],[50.11,-45.2],[0,0]],\"v\":[[481.78,133.84],[311.91,257.48],[336.03,284.21],[499.8,165]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[306.11,0],[0,0],[0,326.03]],\"o\":[[0,306.16],[0,0],[325.99,0],[0,0]],\"v\":[[1536.46,1001.25],[982.21,1555.59],[982.21,1591.59],[1572.46,1001.25]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,-306.16],[0,0],[325.99,0]],\"o\":[[306.11,0],[0,0],[0,-326.03],[0,0]],\"v\":[[982.21,446.91],[1536.46,1001.25],[1572.46,1001.25],[982.21,410.91]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[-306.1,0],[0,0],[0,-326.03]],\"o\":[[0,-306.16],[0,0],[-325.99,0],[0,0]],\"v\":[[427.96,1001.25],[982.21,446.91],[982.21,410.91],[391.96,1001.25]]}}},{\"ty\":\"sh\",\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":true,\"i\":[[0,0],[0,306.16],[0,0],[-325.99,0]],\"o\":[[-306.1,0],[0,0],[0,326.03],[0,0]],\"v\":[[982.21,1555.59],[427.96,1001.25],[391.96,1001.25],[982.21,1591.59]]}}},{\"ty\":\"fl\",\"c\":{\"a\":0,\"k\":[0.06,0.09,0.16,1]},\"r\":1,\"o\":{\"a\":0,\"k\":100}},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}]}]},{\"ddd\":0,\"ind\":31,\"ty\":4,\"nm\":\"\",\"ln\":\"FZ5w2fDiwim4b0NKzqRw2\",\"sr\":1,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[26999.98,27000.5]},\"r\":{\"a\":0,\"k\":0.23},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}},\"ao\":0,\"ip\":0,\"op\":120,\"st\":0,\"bm\":0,\"shapes\":[{\"ty\":\"gr\",\"hd\":false,\"bm\":0,\"it\":[{\"ty\":\"el\",\"hd\":false,\"p\":{\"a\":0,\"k\":[0,0]},\"s\":{\"a\":0,\"k\":[2503,2503]},\"d\":1},{\"ty\":\"st\",\"hd\":false,\"bm\":0,\"c\":{\"a\":0,\"k\":[0.06,0.09,0.16]},\"lc\":2,\"lj\":1,\"o\":{\"a\":0,\"k\":100},\"w\":{\"a\":0,\"k\":18}},{\"ty\":\"fl\",\"hd\":false,\"bm\":0,\"c\":{\"a\":0,\"k\":[0.97,0.97,0.97]},\"r\":1,\"o\":{\"a\":0,\"k\":100}},{\"ty\":\"tr\",\"nm\":\"Transform\",\"a\":{\"a\":0,\"k\":[0,0]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[0,0]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}}],\"np\":0}]}]},{\"id\":\"1tULlhsWFnJ3f2X8ydsZj\",\"layers\":[{\"ddd\":0,\"ind\":24,\"ty\":0,\"nm\":\"\",\"ln\":\"precomp_mW-CIKXd2eqdA6OxYyp6f24\",\"sr\":1,\"ks\":{\"a\":{\"a\":0,\"k\":[415,473]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[27000,27047]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}},\"ao\":0,\"w\":830,\"h\":946,\"ip\":0,\"op\":120,\"st\":0,\"bm\":0,\"refId\":\"TuQ2z4gBAU-uffJqSS2Xq\"},{\"ddd\":0,\"ind\":28,\"ty\":0,\"nm\":\"\",\"ln\":\"precomp_Hz7uDPM0j0vDjIl0-rLJj28\",\"sr\":1,\"ks\":{\"a\":{\"a\":0,\"k\":[27000,27000]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[27000,27000]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}},\"ao\":0,\"w\":54000,\"h\":54000,\"ip\":0,\"op\":120,\"st\":0,\"bm\":0,\"refId\":\"8Ty4UV_G6vxRW9UMmWgxg\"}]}],\"ddd\":0,\"fr\":60,\"h\":2700,\"ip\":0,\"layers\":[{\"ddd\":0,\"ind\":23,\"ty\":0,\"nm\":\"\",\"ln\":\"precomp_Sckd41mU81uMK2cbQUFWX23\",\"sr\":1,\"ks\":{\"a\":{\"a\":0,\"k\":[27000,27000]},\"o\":{\"a\":0,\"k\":100},\"p\":{\"a\":0,\"k\":[1350,1350]},\"r\":{\"a\":0,\"k\":0},\"s\":{\"a\":0,\"k\":[100,100]},\"sk\":{\"a\":0,\"k\":0},\"sa\":{\"a\":0,\"k\":0}},\"ao\":0,\"w\":54000,\"h\":54000,\"ip\":0,\"op\":120,\"st\":0,\"bm\":0,\"refId\":\"1tULlhsWFnJ3f2X8ydsZj\"}],\"meta\":{\"g\":\"https://jitter.video\"},\"nm\":\"Totechs-Logo\",\"op\":120,\"v\":\"5.7.4\",\"w\":2700}"
  },
  {
    "path": "src/Presentations/Windows/Resources/Raw/world-map.json",
    "content": "﻿    {\n        \"type\": \"FeatureCollection\",\n        \"crs\": { \"type\": \"name\", \"properties\": { \"name\": \"urn:ogc:def:crs:OGC:1.3:CRS84\" } },\n        \"features\": [\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Afghanistan\", \"name\": \"Afghanistan\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[61.21081709172573, 35.650072333309218], [62.230651483005879, 35.270663967422287], [62.984662306576588, 35.404040839167614], [63.193538445900337, 35.857165635718907], [63.982895949158696, 36.007957465146596], [64.546479119733888, 36.31207326918426], [64.746105177677393, 37.111817735333297], [65.588947788357828, 37.305216783185628], [65.745630731066811, 37.661164048812061], [66.217384881459324, 37.393790188133913], [66.518606805288655, 37.362784328758785], [67.075782098259609, 37.35614390720928], [67.829999627559502, 37.144994004864678], [68.135562371701369, 37.023115139304302], [68.859445835245921, 37.344335842430588], [69.196272820924364, 37.15114350030742], [69.518785434857946, 37.608996690413413], [70.116578403610319, 37.588222764632086], [70.270574171840124, 37.73516469985401], [70.376304152309274, 38.138395901027515], [70.806820509732873, 38.486281643216408], [71.348131137990251, 38.258905341132156], [71.239403924448155, 37.953265082341879], [71.541917759084768, 37.905774441065631], [71.448693475230229, 37.065644843080513], [71.84463829945058, 36.738171291646914], [72.193040805962383, 36.94828766534566], [72.636889682917271, 37.047558091778349], [73.260055779924983, 37.495256862938994], [73.948695916646486, 37.421566270490786], [74.980002475895404, 37.419990139305888], [75.158027785140902, 37.13303091078911], [74.575892775372964, 37.02084137628345], [74.067551710917812, 36.836175645488446], [72.920024855444453, 36.720007025696312], [71.846291945283909, 36.509942328429851], [71.262348260385735, 36.074387518857797], [71.498767938121077, 35.650563259415996], [71.613076206350698, 35.153203436822857], [71.115018751921625, 34.733125718722228], [71.156773309213449, 34.348911444632144], [70.881803012988385, 33.988855902638512], [69.93054324735958, 34.020120144175102], [70.323594191371583, 33.358532619758385], [69.687147251264847, 33.105498969041228], [69.262522007122541, 32.501944078088293], [69.317764113242546, 31.901412258424436], [68.926676873657655, 31.620189113892064], [68.556932000609308, 31.713310044882011], [67.792689243444769, 31.582930406209623], [67.683393589147457, 31.303154201781414], [66.938891229118454, 31.304911200479346], [66.38145755398601, 30.738899237586448], [66.346472609324408, 29.88794342703617], [65.046862013616092, 29.472180691031902], [64.350418735618504, 29.560030625928089], [64.148002150331237, 29.340819200145965], [63.550260858011164, 29.468330796826162], [62.549856805272775, 29.318572496044304], [60.874248488208778, 29.829238999952604], [61.78122155136343, 30.735850328081231], [61.699314406180811, 31.379506130492661], [60.941944614511115, 31.548074652628745], [60.863654819588952, 32.182919623334421], [60.536077915290761, 32.981268825811561], [60.963700392505991, 33.528832302376252], [60.528429803311575, 33.676446031217999], [60.80319339380744, 34.404101874319856], [61.21081709172573, 35.650072333309218]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Angola\", \"name\": \"Angola\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[16.326528354567042, -5.877470391466217], [16.573179965896141, -6.622644545115092], [16.860190870845226, -7.222297865429978], [17.089995965247166, -7.545688978712474], [17.472970004962288, -8.068551120641656], [18.134221632569048, -7.987677504104865], [18.464175652752683, -7.847014255406475], [19.016751743249664, -7.988245944860138], [19.166613396896079, -7.738183688999724], [19.417502475673214, -7.155428562044277], [20.037723016040214, -7.116361179231658], [20.091621534920616, -6.943090101756949], [20.60182295093832, -6.939317722199688], [20.514748162526526, -7.299605808138663], [21.728110792739752, -7.290872491081315], [21.74645592620336, -7.920084730667113], [21.949130893652033, -8.305900974158304], [21.80180138518795, -8.908706556842985], [21.875181919042397, -9.523707777548564], [22.208753289486417, -9.894796237836529], [22.155268182064326, -11.084801120653777], [22.402798292742428, -10.99307545333569], [22.837345411884762, -11.017621758674334], [23.456790805767461, -10.867863457892481], [23.912215203555743, -10.926826267137541], [24.017893507592614, -11.237298272347115], [23.904153680118235, -11.722281589406332], [24.079905226342895, -12.191296888887305], [23.930922072045373, -12.565847670138821], [24.0161365088947, -12.91104623784855], [21.933886346125941, -12.898437188369353], [21.887842644953871, -16.080310153876891], [22.562478468524283, -16.898451429921831], [23.215048455506086, -17.523116143465952], [21.377176141045592, -17.930636488519706], [18.956186964603628, -17.789094740472233], [18.263309360434217, -17.309950860262003], [14.209706658595049, -17.353100681225708], [14.058501417709035, -17.423380629142653], [13.462362094789963, -16.971211846588741], [12.814081251688405, -16.941342868724075], [12.21546146001938, -17.111668389558059], [11.734198846085146, -17.301889336824498], [11.640096062881609, -16.673142185129205], [11.778537224991563, -15.793816013250687], [12.123580763404444, -14.878316338767927], [12.175618930722264, -14.449143568583889], [12.500095249083014, -13.547699883684398], [12.738478631245439, -13.137905775609934], [13.312913852601834, -12.483630466362511], [13.633721144269824, -12.038644707897189], [13.738727654686924, -11.297863050993142], [13.686379428775293, -10.73107594161584], [13.38732791510216, -10.373578383020726], [13.120987583069873, -9.766897067914112], [12.875369500386567, -9.166933689005488], [12.929061313537797, -8.959091078327573], [13.23643273280987, -8.56262948978434], [12.933040398824314, -7.596538588087752], [12.728298374083916, -6.927122084178803], [12.227347039446441, -6.294447523629372], [12.322431674863562, -6.100092461779651], [12.735171339578695, -5.965682061388476], [13.024869419006988, -5.984388929878106], [13.375597364971892, -5.864241224799555], [16.326528354567042, -5.877470391466217]]], [[[12.436688266660919, -5.684303887559223], [12.182336866920277, -5.789930515163801], [11.914963006242115, -5.037986748884733], [12.318607618873923, -4.606230157086158], [12.620759718484548, -4.438023369976121], [12.995517205465202, -4.781103203961918], [12.631611769265842, -4.991271254092935], [12.468004184629759, -5.248361504744991], [12.436688266660919, -5.684303887559223]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Albania\", \"name\": \"Albania\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[20.590247430104906, 41.855404161133592], [20.463175083099195, 41.515089016275333], [20.605181919037356, 41.086226304685219], [21.020040317476397, 40.842726955725873], [20.99998986174722, 40.580003973953964], [20.67499677906363, 40.43499990494302], [20.61500044117275, 40.110006822259365], [20.150015903410516, 39.624997666983965], [19.980000441170144, 39.694993394523401], [19.9600016618732, 39.915005805006039], [19.40608198413673, 40.250773423822459], [19.319058872157139, 40.727230129553554], [19.403549838954287, 41.409565741535445], [19.540027296637099, 41.71998607031275], [19.371768833094958, 41.87754751237064], [19.304486118250786, 42.195745144207812], [19.738051385179627, 42.688247382165564], [19.801613396898681, 42.500093492190835], [20.0707, 42.58863], [20.28375451018189, 42.320259507815074], [20.52295, 42.21787], [20.590247430104906, 41.855404161133592]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"United Arab Emirates\", \"name\": \"United Arab Emirates\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[51.579518670463258, 24.245497137951102], [51.757440626844172, 24.294072984305462], [51.794389275932865, 24.019826158132499], [52.577080519425593, 24.177439276622703], [53.404006788960139, 24.151316840099167], [54.008000929587574, 24.121757920828212], [54.693023716048614, 24.797892360935084], [55.439024692614126, 25.439145209244934], [56.070820753814544, 26.055464178973978], [56.261041701080948, 25.714606431576762], [56.396847365143991, 24.924732163995483], [55.886232537667993, 24.92083059335744], [55.804118686756212, 24.269604193615258], [55.981213820220454, 24.130542914317822], [55.528631626208231, 23.933604030853498], [55.525841098864461, 23.524869289640929], [55.234489373602869, 23.110992743415316], [55.208341098863187, 22.708329982997039], [55.006803012924898, 22.496947536707129], [52.000733270074321, 23.001154486578937], [51.617707553926969, 24.014219265228824], [51.579518670463258, 24.245497137951102]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Argentina\", \"name\": \"Argentina\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[-65.5, -55.2], [-66.45, -55.25], [-66.95992, -54.89681], [-67.56244, -54.87001], [-68.63335, -54.8695], [-68.634010227583147, -52.636370458874453], [-68.25, -53.1], [-67.75, -53.85], [-66.45, -54.45], [-65.05, -54.7], [-65.5, -55.2]]], [[[-64.964892137294569, -22.075861504812348], [-64.377021043542257, -22.79809132252354], [-63.986838141522462, -21.993644301035953], [-62.84646847192154, -22.034985446869452], [-62.685057135657885, -22.249029229422401], [-60.846564704009928, -23.880712579038299], [-60.028966030503973, -24.032796319273238], [-58.807128465394939, -24.771459242453268], [-57.777217169817952, -25.162339776309032], [-57.633660040911124, -25.603656508081666], [-58.618173590719707, -27.123718763947117], [-57.609759690976134, -27.395898532828419], [-56.486701626192989, -27.548499037386243], [-55.695845506398186, -27.387837009390815], [-54.788794928595038, -26.621785577096087], [-54.625290696823541, -25.739255466415479], [-54.130049607954412, -25.547639255477243], [-53.628348965048716, -26.12486500417743], [-53.648735317587885, -26.923472588816104], [-54.490725267135517, -27.474756768505767], [-55.162286342984586, -27.881915378533414], [-56.290899624239088, -28.852760512000849], [-57.62513342958291, -30.21629485445424], [-57.874937303281897, -31.016556084926158], [-58.14244035504074, -32.044503676076182], [-58.132647671121404, -33.040566908502008], [-58.349611172098818, -33.263188978815428], [-58.427074144104367, -33.909454441057541], [-58.495442064026541, -34.4314897600701], [-57.225829637263629, -35.288026625307886], [-57.362358771378737, -35.977390232081497], [-56.737487352105447, -36.413125909166574], [-56.788285285048339, -36.901571547189327], [-57.749156867083421, -38.183870538079901], [-59.231857062401865, -38.720220228837199], [-61.2374452378656, -38.92842457454114], [-62.335956997310134, -38.827707208004362], [-62.125763108962914, -39.424104913084868], [-62.33053097191943, -40.172586358400316], [-62.145994432205228, -40.676896661136723], [-62.74580278181697, -41.028761488612083], [-63.770494757732514, -41.166789239263657], [-64.732089809819698, -40.802677097335128], [-65.118035244391578, -41.064314874028874], [-64.97856055363583, -42.058000990569312], [-64.303407965742466, -42.359016208669495], [-63.755947842042339, -42.043686618824495], [-63.458059048095883, -42.563138116222355], [-64.378803880456289, -42.873558444999638], [-65.181803961839691, -43.495380954767782], [-65.328823411710133, -44.501366062193689], [-65.565268927661592, -45.03678557716978], [-66.509965786389344, -45.039627780945843], [-67.293793911392427, -45.551896254255183], [-67.580546434180079, -46.301772963242527], [-66.597066413017259, -47.033924655953804], [-65.641026577401433, -47.23613453551188], [-65.98508826360073, -48.133289076531128], [-67.166178961847649, -48.697337334996931], [-67.816087612566449, -49.869668877970412], [-68.728745083273154, -50.26421843851886], [-69.138539191347789, -50.732510267947788], [-68.815561489523517, -51.771104011594097], [-68.149994879820397, -52.349983406127699], [-68.571545376241332, -52.299443855346247], [-69.498362189396076, -52.142760912637236], [-71.914803839796321, -52.009022305865912], [-72.329403856074023, -51.425956312872394], [-72.309973517532342, -50.677009779666342], [-72.975746832964617, -50.741450290734299], [-73.328050910114456, -50.378785088909865], [-73.415435757120022, -49.318436374712952], [-72.648247443314929, -48.878618259476774], [-72.331160854771937, -48.244238376661819], [-72.44735531278026, -47.738532810253517], [-71.917258470330196, -46.884838148791786], [-71.552009446891233, -45.560732924177117], [-71.659315558545316, -44.973688653341434], [-71.222778896759721, -44.784242852559409], [-71.329800788036195, -44.407521661151677], [-71.793622606071935, -44.207172133156099], [-71.464056159130493, -43.787611179378324], [-71.915423956983901, -43.408564548517404], [-72.148898078078517, -42.254888197601375], [-71.746803758415453, -42.051386407235988], [-71.915734015577542, -40.832339369470716], [-71.680761277946445, -39.808164157878061], [-71.413516608349042, -38.916022230791107], [-70.814664272734703, -38.552995293940732], [-71.118625047475419, -37.576827487947192], [-71.121880662709771, -36.65812387466233], [-70.364769253201658, -36.005088799789931], [-70.388049485949082, -35.169687595359441], [-69.817309129501453, -34.193571465798279], [-69.814776984319209, -33.273886000299839], [-70.074399380153622, -33.09120981214803], [-70.535068935819439, -31.365010267870279], [-69.919008348251921, -30.336339206668306], [-70.013550381129861, -29.367922865518544], [-69.656130337183143, -28.459141127233686], [-69.001234910748266, -27.521213881136127], [-68.295541551370391, -26.899339694935787], [-68.594799770772667, -26.50690886811126], [-68.386001146097342, -26.185016371365229], [-68.417652960876111, -24.518554782816874], [-67.328442959244128, -24.025303236590908], [-66.985233934177629, -22.986348565362825], [-67.106673550063604, -22.735924574476392], [-66.273339402924833, -21.832310479420677], [-64.964892137294569, -22.075861504812348]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Armenia\", \"name\": \"Armenia\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[43.582745802592726, 41.09214325618256], [44.972480096218071, 41.248128567055588], [45.179495883979335, 40.985353908851401], [45.560351189970433, 40.812289537105919], [45.359174839058156, 40.561503811193447], [45.891907179555076, 40.218475653639992], [45.610012241402913, 39.899993801425175], [46.034534132680662, 39.628020738273058], [46.483498976432443, 39.464154771475528], [46.505719842317966, 38.770605373686287], [46.143623081248812, 38.74120148371221], [45.735379266143006, 39.319719143219736], [45.739978468616975, 39.473999131827114], [45.298144972521456, 39.471751207022422], [45.00198733905674, 39.740003567049548], [44.793989699081934, 39.713002631177041], [44.400008579288695, 40.005000311842267], [43.656436395040934, 40.253563951166178], [43.752657911968399, 40.740200914058754], [43.582745802592726, 41.09214325618256]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"French Southern and Antarctic Lands\", \"name\": \"Fr. S. Antarctic Lands\", \"continent\": \"Seven seas (open ocean)\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[68.935, -48.625], [69.58, -48.94], [70.525, -49.065], [70.56, -49.255], [70.28, -49.71], [68.745, -49.775], [68.72, -49.2425], [68.8675, -48.83], [68.935, -48.625]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Australia\", \"name\": \"Australia\", \"continent\": \"Australia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[145.397978143494782, -40.792548516605883], [146.364120721623692, -41.137695407883335], [146.908583612250823, -41.000546156580668], [147.689259474884125, -40.808258152022681], [148.289067824495987, -40.875437514002122], [148.359864536735785, -42.062445163746439], [148.017301467073082, -42.40702361426861], [147.914051955353784, -43.211522312188485], [147.564564243763982, -42.937688897473855], [146.87034305235494, -43.634597263362082], [146.663327264593647, -43.580853773778543], [146.048377720320389, -43.54974456153888], [145.431929559510536, -42.693776137056268], [145.295090366801674, -42.03360971452755], [144.7180713238306, -41.162551771815707], [144.743754510679622, -40.703975111657705], [145.397978143494782, -40.792548516605883]]], [[[143.561811151299935, -13.763655694232209], [143.922099237238882, -14.548310642152], [144.563713820574804, -14.171176039285879], [144.894908075133515, -14.594457696188622], [145.374723748963419, -14.984976495018284], [145.271991001567244, -15.428205254785691], [145.48525963763575, -16.285672295804769], [145.637033319276952, -16.784918308176611], [145.888904250267672, -16.906926364817647], [146.160308872664473, -17.76165455492524], [146.063673944278662, -18.280072523677315], [146.387478469019584, -18.958274021075905], [147.471081577747896, -19.480722751546676], [148.177601760042478, -19.955939222902767], [148.848413527623222, -20.391209812097252], [148.717465448195583, -20.633468926681513], [149.289420200802056, -21.260510756111096], [149.678337030230637, -22.342511895438388], [150.07738244038859, -22.122783705333315], [150.482939081015161, -22.556142266533012], [150.727265252891158, -22.402404880464655], [150.899554478152254, -23.462236830338679], [151.609175246384211, -24.076256198830755], [152.07353966695905, -24.45788665130619], [152.855197381805908, -25.267501316023008], [153.136162144176751, -26.071173191026187], [153.161948683890358, -26.641319268502439], [153.09290897034856, -27.260299574494503], [153.569469028944184, -28.110066827102099], [153.512108189100218, -28.995077406532751], [153.339095493787056, -29.458201592732443], [153.069241164358857, -30.350240166954809], [153.089601678681788, -30.923641859665445], [152.891577590139377, -31.640445651985949], [152.450002476205327, -32.550002536755237], [151.709117466436766, -33.041342054986337], [151.343971795862387, -33.816023451473846], [151.010555454715103, -34.310360202777879], [150.714139439089024, -35.173459974916803], [150.328219842733233, -35.671879164371923], [150.075212030232251, -36.420205580390508], [149.946124302367139, -37.109052422841224], [149.997283970336127, -37.425260512035123], [149.423882277625523, -37.772681166333463], [148.304622430615893, -37.809061374666875], [147.38173302631526, -38.219217217767543], [146.922122837511324, -38.606532077795116], [146.317921991154776, -39.035756524411433], [145.489652134380549, -38.593767999019043], [144.876976353128157, -38.41744801203911], [145.032212355732952, -37.896187839510972], [144.485682407814011, -38.085323581699257], [143.609973586196077, -38.809465427405321], [142.745426873952965, -38.538267510737519], [142.17832970598198, -38.380034275059835], [141.606581659104677, -38.308514092767872], [140.638578729413211, -38.019332777662541], [139.992158237874321, -37.402936293285094], [139.806588169514043, -36.643602797188272], [139.574147577065219, -36.138362318670666], [139.082808058834075, -35.732754001611774], [138.120747918856296, -35.612296237939397], [138.449461704664998, -35.127261244447887], [138.207564325106659, -34.384722588845925], [137.719170363516128, -35.07682504653102], [136.829405552314711, -35.260534763328614], [137.352371047108477, -34.707338555644093], [137.503886346588331, -34.130267836240769], [137.890116001537649, -33.640478610978327], [137.810327590079112, -32.900007012668105], [136.996837192940347, -33.752771498348629], [136.372069126531642, -34.094766127256186], [135.98904341038434, -34.89011809666048], [135.208212518454104, -34.478670342752601], [135.239218377829161, -33.947953383114971], [134.613416782774607, -33.222778008763136], [134.085903761939107, -32.848072198214759], [134.273902622617015, -32.617233575166949], [132.990776808809812, -32.011224053680188], [132.288080682504869, -31.982646986622761], [131.326330601120901, -31.495803318001041], [129.535793898639668, -31.590422865527476], [128.240937534702198, -31.948488864877849], [127.102867466338282, -32.282266941051041], [126.148713820501129, -32.2159660784206], [125.088623488465586, -32.728751316052829], [124.22164798390493, -32.959486586236061], [124.028946567888511, -33.483847344701708], [123.65966678273071, -33.890179131812722], [122.811036411633609, -33.914467054989835], [122.18306440642283, -34.003402194964217], [121.299190708502579, -33.821036065406126], [120.580268182458113, -33.930176690406618], [119.893695103028222, -33.976065362281808], [119.298899367348781, -34.50936614353396], [119.007340936357977, -34.464149265278529], [118.505717808100769, -34.746819349915093], [118.024971958489516, -35.064732761374707], [117.295507440257438, -35.025458672832862], [116.62510908413492, -35.025096937806829], [115.564346958479689, -34.386427911111547], [115.026808709779516, -34.196517022438918], [115.048616164206763, -33.623425388322026], [115.545123325667078, -33.487257989232951], [115.714673700016661, -33.259571628554944], [115.679378696761376, -32.900368747694124], [115.801645135563959, -32.205062351207026], [115.689610630355105, -31.612437025683782], [115.160909051576937, -30.601594333622455], [114.99704308477942, -30.030724786094162], [115.040037876446249, -29.461095472940794], [114.64197431850198, -28.810230808224706], [114.61649783738217, -28.516398614213042], [114.173579136208446, -28.118076674107321], [114.048883905088132, -27.33476531342712], [113.477497593236876, -26.543134047147898], [113.338953078262477, -26.116545098578477], [113.77835778204026, -26.549025160429174], [113.440962355606587, -25.621278171493152], [113.936901076311642, -25.911234633082877], [114.232852004047288, -26.298446140245868], [114.216160516417006, -25.786281019801105], [113.721255324357685, -24.998938897402123], [113.625343866024025, -24.683971042583146], [113.393523390762667, -24.384764499613262], [113.502043898575607, -23.80635019297025], [113.706992629045146, -23.56021534596406], [113.843418410295669, -23.059987481378734], [113.736551548316072, -22.475475355725372], [114.149756300921865, -21.755881036061009], [114.225307244932651, -22.51748829517863], [114.64776207891866, -21.829519952076904], [115.460167270979298, -21.495173435148541], [115.94737267462699, -21.068687839443708], [116.711615431791529, -20.701681817306817], [117.166316359527684, -20.623598728113802], [117.441545037914238, -20.746898695562162], [118.229558953932951, -20.374208265873232], [118.836085239742701, -20.263310642174822], [118.987807244951753, -20.044202569257319], [119.252493931150624, -19.952941989829835], [119.805225050944543, -19.976506442954978], [120.856220330896633, -19.683707777589188], [121.399856398607199, -19.239755547769729], [121.655137974129062, -18.70531788500713], [122.241665480641757, -18.197648614171765], [122.286623976735655, -17.798603204013911], [122.312772251475408, -17.254967136303446], [123.012574497571904, -16.405199883695854], [123.433789097183009, -17.268558037996225], [123.859344517106592, -17.069035332917249], [123.503242222183232, -16.596506036040363], [123.817073195491915, -16.11131601325199], [124.258286574399847, -16.32794361741956], [124.379726190285794, -15.567059828353973], [124.926152785340022, -15.07510019293532], [125.167275018413875, -14.680395603090004], [125.670086704613823, -14.510070082256018], [125.685796340030493, -14.230655612853834], [126.125149367376096, -14.347340996968949], [126.142822707219864, -14.095986830301211], [126.582589146023736, -13.95279143642041], [127.065867140817332, -13.817967624570922], [127.804633416861932, -14.276906019755042], [128.359689976108939, -14.869169610252253], [128.985543247595899, -14.875990899314738], [129.621473423379598, -14.969783623924553], [129.409600050982988, -14.420669854391031], [129.888640578328591, -13.618703301653481], [130.339465773642928, -13.357375583553473], [130.183506300985982, -13.107520033422301], [130.617795037966971, -12.536392103732464], [131.223494500859999, -12.183648776908113], [131.73509118054946, -12.302452894747159], [132.575298293183096, -12.114040622611013], [132.557211541881031, -11.603012383676683], [131.824698114143644, -11.273781833545097], [132.357223748911395, -11.128519382372641], [133.019560581596409, -11.376411228076844], [133.550845981989028, -11.786515394745134], [134.393068475481982, -12.042365411022173], [134.678632440327021, -11.9411829565947], [135.298491245667975, -12.248606052299051], [135.882693312727611, -11.962266940969796], [136.258380975489445, -12.049341729381606], [136.492475213771627, -11.857208754120389], [136.951620314684988, -12.351958916882735], [136.685124953355739, -12.887223402562054], [136.305406528875096, -13.291229750219895], [135.961758254134111, -13.324509372615889], [136.077616815332533, -13.72427825282578], [135.783836297753226, -14.223989353088211], [135.4286641786112, -14.715432224183896], [135.500184360903177, -14.997740573794427], [136.295174595281367, -15.550264987859121], [137.065360142159477, -15.870762220933353], [137.580470819244795, -16.215082289294084], [138.303217401278971, -16.807604261952658], [138.58516401586337, -16.806622409739173], [139.108542922115475, -17.062679131745366], [139.260574985918197, -17.371600843986183], [140.215245396078274, -17.710804945550063], [140.875463495039241, -17.36906869880394], [141.071110467696258, -16.832047214426719], [141.274095493738798, -16.388870131091604], [141.398222284103781, -15.840531508042584], [141.702183058844611, -15.044921156476928], [141.563380161708665, -14.561333103089506], [141.635520461188094, -14.270394789286284], [141.519868605718955, -13.698078301653805], [141.650920038011009, -12.944687595270562], [141.842691278246207, -12.741547539931187], [141.68699018775078, -12.407614434461134], [141.928629185147543, -11.877465915578778], [142.118488397387978, -11.328042087451619], [142.14370649634634, -11.04273650476814], [142.51526004452495, -10.668185723516642], [142.797310011974048, -11.157354831591515], [142.866763136974271, -11.784706719614929], [143.11594689348567, -11.90562957117791], [143.158631626558758, -12.325655612846187], [143.522123651299864, -12.834358412327429], [143.597157830987669, -13.400422051652594], [143.561811151299935, -13.763655694232209]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Austria\", \"name\": \"Austria\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[16.979666782304033, 48.123497015976298], [16.903754103267257, 47.714865627628321], [16.340584344150411, 47.712901923201215], [16.534267612380372, 47.496170966169103], [16.202298211337361, 46.852385972676949], [16.011663852612653, 46.683610744811688], [15.137091912504982, 46.658702704447016], [14.632471551174827, 46.431817328469535], [13.806475457421524, 46.509306138691201], [12.376485223040813, 46.767559109069843], [12.153088006243051, 47.115393174826437], [11.164827915093268, 46.941579494812721], [11.048555942436533, 46.751358547546324], [10.442701450246627, 46.893546250997424], [9.932448357796657, 46.920728054382948], [9.479969516649019, 47.102809963563367], [9.632931756232974, 47.347601223329974], [9.594226108446346, 47.525058091820256], [9.896068149463188, 47.58019684507569], [10.402083774465209, 47.302487697939156], [10.544504021861625, 47.566399237653762], [11.426414015354736, 47.523766181012967], [12.141357456112784, 47.703083401065761], [12.620759718484491, 47.672387600284395], [12.932626987365945, 47.467645575543983], [13.025851271220487, 47.637583523135824], [12.884102817443901, 48.289145819687903], [13.243357374736998, 48.41611481382904], [13.595945672264433, 48.877171942737135], [14.33889773932472, 48.555305284207193], [14.901447381254055, 48.964401760445817], [15.253415561593979, 49.039074205107575], [16.029647251050218, 48.733899034207916], [16.49928266771877, 48.785808010445095], [16.960288120194573, 48.596982326850593], [16.879982944412998, 48.470013332709463], [16.979666782304033, 48.123497015976298]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Azerbaijan\", \"name\": \"Azerbaijan\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[45.001987339056789, 39.740003567049591], [45.298144972521435, 39.471751207022422], [45.739978468616997, 39.473999131827149], [45.735379266143092, 39.319719143219785], [46.143623081248812, 38.74120148371221], [45.457721795438729, 38.874139105783108], [44.952688022650264, 39.33576467544642], [44.79398969908199, 39.713002631177027], [45.001987339056789, 39.740003567049591]]], [[[47.373315464066216, 41.219732367511249], [47.81566572448471, 41.151416124021338], [47.987283156126033, 41.405819200194223], [48.584352654826283, 41.808869533854669], [49.110263706260653, 41.282286688800518], [49.618914829309588, 40.572924302729966], [50.084829542853093, 40.526157131505776], [50.392821079312704, 40.256561184239096], [49.569202101444795, 40.176100979160701], [49.395259230350419, 39.39948171646224], [49.2232283872507, 39.04921885838791], [48.856532423707584, 38.815486355131775], [48.883249139202533, 38.320245266262638], [48.634375441284831, 38.270377509100925], [48.010744256386502, 38.794014797514528], [48.355529412637928, 39.288764960276886], [48.060095249225256, 39.582235419262439], [47.685079380083117, 39.508363959301185], [46.505719842317966, 38.770605373686251], [46.483498976432443, 39.464154771475528], [46.034534132680697, 39.628020738273044], [45.610012241402913, 39.899993801425175], [45.891907179555133, 40.21847565363997], [45.359174839058156, 40.561503811193482], [45.560351189970469, 40.812289537105947], [45.179495883979392, 40.98535390885143], [44.972480096218156, 41.248128567055623], [45.217426385281634, 41.411451931314041], [45.962600538930438, 41.123872585609789], [46.501637404166978, 41.064444688474104], [46.637908156120567, 41.181672675128219], [46.145431756378983, 41.72280243587263], [46.404950799348818, 41.860675157227341], [46.686070591016652, 41.827137152669899], [47.373315464066216, 41.219732367511249]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Burundi\", \"name\": \"Burundi\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[29.339997592900342, -4.499983412294092], [29.276383904749046, -3.293907159034063], [29.02492638521678, -2.839257907730157], [29.632176141078585, -2.917857761246096], [29.938359002407935, -2.348486830254238], [30.469696079232978, -2.413857517103458], [30.527677036264457, -2.807631931167534], [30.743012729624692, -3.034284763199686], [30.752262811004943, -3.359329522315569], [30.505559523243559, -3.568567396665364], [30.116332635221166, -4.090137627787242], [29.753512404099919, -4.45238941815328], [29.339997592900342, -4.499983412294092]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Belgium\", \"name\": \"Belgium\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[3.314971144228536, 51.345780951536071], [4.047071160507527, 51.267258612668556], [4.973991326526913, 51.475023708698124], [5.60697594567, 51.037298488969768], [6.156658155958779, 50.803721015010574], [6.043073357781109, 50.128051662794221], [5.782417433300905, 50.090327867221205], [5.674051954784828, 49.52948354755749], [4.799221632515809, 49.985373033236371], [4.286022983425084, 49.90749664977254], [3.588184441755685, 50.378992418003563], [3.123251580425801, 50.780363267614561], [2.658422071960274, 50.796848049515731], [2.513573032246142, 51.148506171261815], [3.314971144228536, 51.345780951536071]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Benin\", \"name\": \"Benin\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[2.691701694356254, 6.258817246928628], [1.865240512712318, 6.14215770102973], [1.618950636409238, 6.832038072126236], [1.664477573258381, 9.128590399609378], [1.46304284018467, 9.334624335157086], [1.425060662450136, 9.825395412632998], [1.077795037448737, 10.175606594275022], [0.772335646171484, 10.470808213742357], [0.899563022474069, 10.997339382364258], [1.243469679376488, 11.11051076908346], [1.447178175471066, 11.547719224488857], [1.93598554851988, 11.641150214072551], [2.154473504249921, 11.940150051313337], [2.49016360841793, 12.233052069543671], [2.84864301922667, 12.235635891158266], [3.611180454125558, 11.660167141155966], [3.572216424177469, 11.327939357951516], [3.797112257511713, 10.734745591673104], [3.600070021182801, 10.332186184119406], [3.705438266625918, 10.063210354040207], [3.220351596702101, 9.4441525333997], [2.912308383810255, 9.13760793704432], [2.723792758809509, 8.506845404489708], [2.74906253420022, 7.870734361192886], [2.691701694356254, 6.258817246928628]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Burkina Faso\", \"name\": \"Burkina Faso\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-2.827496303712706, 9.642460842319775], [-3.511898972986272, 9.900326239456216], [-3.980449184576684, 9.862344061721698], [-4.330246954760383, 9.610834865757139], [-4.779883592131966, 9.821984768101741], [-4.954653286143098, 10.152713934769732], [-5.404341599946973, 10.370736802609144], [-5.470564947929004, 10.951269842976044], [-5.197842576508648, 11.375145778850136], [-5.220941941743119, 11.713858954307224], [-4.427166103523802, 12.542645575404292], [-4.280405035814879, 13.228443508349738], [-4.006390753587225, 13.472485459848112], [-3.52280270019986, 13.337661647998612], [-3.103706834312759, 13.54126679122859], [-2.967694464520576, 13.798150336151506], [-2.191824510090384, 14.246417548067352], [-2.001035122068771, 14.559008287000887], [-1.066363491205663, 14.973815009007764], [-0.515854458000348, 15.116157741755725], [-0.26625729003058, 14.924308986872147], [0.374892205414682, 14.928908189346128], [0.295646396495101, 14.444234930880651], [0.429927605805517, 13.988733018443922], [0.993045688490071, 13.335749620003821], [1.024103224297477, 12.851825669806573], [2.177107781593775, 12.625017808477532], [2.154473504249921, 11.940150051313337], [1.93598554851988, 11.641150214072551], [1.447178175471066, 11.547719224488857], [1.243469679376488, 11.11051076908346], [0.899563022474069, 10.997339382364258], [0.023802524423701, 11.018681748900802], [-0.438701544588582, 11.09834096927872], [-0.761575893548183, 10.936929633015053], [-1.203357713211431, 11.009819240762736], [-2.94040930827046, 10.962690334512557], [-2.963896246747111, 10.395334784380081], [-2.827496303712706, 9.642460842319775]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Bangladesh\", \"name\": \"Bangladesh\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[92.672720981825549, 22.041238918541247], [92.652257114637976, 21.324047552978481], [92.30323449093865, 21.475485337809815], [92.368553501355606, 20.670883287025344], [92.082886183646124, 21.192195135985767], [92.025215285208361, 21.701569729086764], [91.834890985077408, 22.182935695885561], [91.417087029997646, 22.765019029221218], [90.496006300827247, 22.805016587815125], [90.586956821660948, 22.392793687422863], [90.272970819055544, 21.836367702720107], [89.847467075564268, 22.039146023033421], [89.70204959509492, 21.857115790285299], [89.41886274613546, 21.966178900637296], [89.031961297566198, 22.055708319582973], [88.876311883503064, 22.879146429937826], [88.529769728553759, 23.631141872649163], [88.699940220090895, 24.233714911388557], [88.084422235062405, 24.501657212821918], [88.30637251175601, 24.866079413344199], [88.931553989623069, 25.238692328384769], [88.209789259802477, 25.768065700782707], [88.56304935094974, 26.446525580342716], [89.355094028687276, 26.014407253518065], [89.832480910199592, 25.965082098895476], [89.920692580121838, 25.269749864192171], [90.872210727912105, 25.13260061288954], [91.799595981822065, 25.14743174895731], [92.376201613334786, 24.976692816664961], [91.915092807994398, 24.130413723237108], [91.467729933643668, 24.072639471934789], [91.158963250699713, 23.503526923104381], [91.706475050832083, 22.985263983649183], [91.869927606171302, 23.62434642180278], [92.146034783906799, 23.62749868417259], [92.672720981825549, 22.041238918541247]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Bulgaria\", \"name\": \"Bulgaria\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[22.657149692482985, 44.234923000661276], [22.94483239105184, 43.823785305347123], [23.332302280376322, 43.897010809904707], [24.100679152124169, 43.741051337247846], [25.569271681426923, 43.688444729174712], [26.065158725699739, 43.943493760751259], [27.242399529740904, 44.175986029632398], [27.970107049275068, 43.812468166675202], [28.55808149589199, 43.707461656258118], [28.039095086384712, 43.293171698574177], [27.673897739378042, 42.577892361006214], [27.996720411905383, 42.007358710287775], [27.135739373490473, 42.141484890301335], [26.117041863720793, 41.826904608724554], [26.106138136507205, 41.328898830727766], [25.197201368925441, 41.234485988930523], [24.492644891058031, 41.583896185872028], [23.692073601992345, 41.309080918943842], [22.952377150166445, 41.337993882811141], [22.881373732197424, 41.999297186850242], [22.380525750424585, 42.320259507815081], [22.545011834409614, 42.461362006188025], [22.436594679461273, 42.580321153323929], [22.604801466571324, 42.898518785161137], [22.986018507588479, 43.211161200526959], [22.500156691180276, 43.642814439460977], [22.410446404721593, 44.008063462899948], [22.657149692482985, 44.234923000661276]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"The Bahamas\", \"name\": \"Bahamas\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[-77.53466, 23.75975], [-77.78, 23.71], [-78.03405, 24.28615], [-78.40848, 24.57564], [-78.19087, 25.2103], [-77.89, 25.17], [-77.54, 24.34], [-77.53466, 23.75975]]], [[[-77.82, 26.58], [-78.91, 26.42], [-78.98, 26.79], [-78.51, 26.87], [-77.85, 26.84], [-77.82, 26.58]]], [[[-77.0, 26.59], [-77.17255, 25.87918], [-77.35641, 26.00735], [-77.34, 26.53], [-77.78802, 26.92516], [-77.79, 27.04], [-77.0, 26.59]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Bosnia and Herzegovina\", \"name\": \"Bosnia and Herz.\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[19.005486281010118, 44.860233669609144], [19.36803, 44.863], [19.11761, 44.42307], [19.59976, 44.03847], [19.454, 43.568100000000115], [19.21852, 43.52384], [19.03165, 43.43253], [18.70648, 43.20011], [18.56, 42.65], [17.674921502358981, 43.028562527023603], [17.297373488034449, 43.446340643887353], [16.916156447017325, 43.667722479825663], [16.456442905348862, 44.041239732431265], [16.239660271884528, 44.351143296885695], [15.750026075918978, 44.81871165626255], [15.959367303133373, 45.233776760430935], [16.318156772535868, 45.004126695325901], [16.534939406000202, 45.211607570977705], [17.00214603035101, 45.233776760430935], [17.861783481526398, 45.067740383477137], [18.553214145591646, 45.08158966733145], [19.005486281010118, 44.860233669609144]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Belarus\", \"name\": \"Belarus\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[23.484127638449841, 53.912497667041123], [24.45068362803703, 53.905702216194747], [25.536353794056989, 54.282423407602515], [25.768432651479792, 54.846962592175082], [26.588279249790386, 55.167175604871659], [26.494331495883749, 55.61510691997762], [27.102459751094525, 55.783313707087672], [28.17670942557799, 56.169129950578807], [29.2295133806603, 55.918344224666356], [29.371571893030669, 55.67009064393617], [29.896294386522353, 55.789463202530406], [30.87390913262, 55.550976467503396], [30.971835971813132, 55.081547756564028], [30.75753380709871, 54.811770941784303], [31.384472283663733, 54.157056382862422], [31.791424187962232, 53.974638576872117], [31.731272820774503, 53.794029446012011], [32.405598585751157, 53.618045355842028], [32.693643019346034, 53.351420803432106], [32.304519484188226, 53.132726141972903], [31.497643670382924, 53.167426866256889], [31.30520063652801, 53.073995876673195], [31.540018344862254, 52.742052313846344], [31.78599816257158, 52.10167796488544], [30.927549269338975, 52.042353420614383], [30.619454380014837, 51.822806098022362], [30.55511722181145, 51.319503485715643], [30.157363722460889, 51.416138414101454], [29.254938185347921, 51.368234361366881], [28.992835320763522, 51.602044379271462], [28.617612745892242, 51.427713934934836], [28.241615024536564, 51.572227077839059], [27.454066196408426, 51.59230337178446], [26.337958611768549, 51.832288723347915], [25.327787713327005, 51.910656032918538], [24.553106316839511, 51.888461005249177], [24.005077752384206, 51.617443956094448], [23.52707075368437, 51.578454087930233], [23.508002150168689, 52.023646552124717], [23.19949384938618, 52.486977444053664], [23.799198846133375, 52.691099351606553], [23.804934930117774, 53.08973135030606], [23.527535841574995, 53.47012156840654], [23.484127638449841, 53.912497667041123]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Belize\", \"name\": \"Belize\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-89.143080410503302, 17.808318996649316], [-89.150909389995519, 17.955467637600414], [-89.029857347351808, 18.001511338772485], [-88.848343878926585, 17.883198147040229], [-88.490122850279334, 18.486830552641603], [-88.300031094093669, 18.499982204659897], [-88.296336229184803, 18.353272813383263], [-88.106812913754368, 18.348673610909284], [-88.123478563168476, 18.076674709541003], [-88.285354987322776, 17.644142971258031], [-88.197866787452625, 17.489475409408453], [-88.302640753924422, 17.13169363043566], [-88.239517991879893, 17.036066392479551], [-88.355428229510551, 16.530774237529624], [-88.551824510435821, 16.265467434143144], [-88.732433641295927, 16.233634751851351], [-88.930612759135244, 15.887273464415072], [-89.229121670269265, 15.886937567605166], [-89.15080603713092, 17.015576687075832], [-89.143080410503302, 17.808318996649316]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Bolivia\", \"name\": \"Bolivia\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-62.84646847192154, -22.034985446869442], [-63.986838141522462, -21.993644301035946], [-64.377021043542243, -22.798091322523533], [-64.964892137294598, -22.07586150481232], [-66.273339402924833, -21.832310479420713], [-67.10667355006359, -22.735924574476414], [-67.82817989772272, -22.872918796482171], [-68.219913092711266, -21.494346612231858], [-68.757167121033731, -20.372657972904459], [-68.442225104430904, -19.405068454671426], [-68.966818406841853, -18.9816834449041], [-69.100246955019472, -18.260125420812674], [-69.590423753524036, -17.580011895419329], [-68.959635382753291, -16.500697930571267], [-69.389764166934697, -15.66012908291165], [-69.160346645774936, -15.323973890853015], [-69.339534674747, -14.953195489158828], [-68.94888668483658, -14.45363941819328], [-68.929223802349526, -13.602683607643007], [-68.880079515239956, -12.89972909917665], [-68.665079718689611, -12.561300144097171], [-69.52967810736493, -10.951734307502193], [-68.786157599549469, -11.036380303596276], [-68.27125362819325, -11.014521172736817], [-68.048192308205373, -10.712059014532484], [-67.173801235610725, -10.30681243249961], [-66.646908331962791, -9.931331475466861], [-65.33843522811641, -9.76198780684639], [-65.444837002205375, -10.51145110437543], [-65.321898769783004, -10.895872084194675], [-65.402281460213018, -11.566270440317151], [-64.31635291203159, -12.461978041232191], [-63.196498786050562, -12.627032565972433], [-62.803060268796372, -13.000653171442682], [-62.127080857986371, -13.19878061284972], [-61.713204311760769, -13.489202162330049], [-61.084121263255646, -13.479383640194595], [-60.503304002511122, -13.775954685117656], [-60.459198167550014, -14.354007256734551], [-60.264326341377355, -14.645979099183638], [-60.251148851142922, -15.077218926659318], [-60.542965664295131, -15.093910414289592], [-60.158389655179022, -16.258283786690082], [-58.241219855366673, -16.299573256091289], [-58.388058437724027, -16.877109063385273], [-58.280804002502244, -17.271710300366014], [-57.734558274960989, -17.552468357007765], [-57.498371141170971, -18.174187513911289], [-57.676008877174297, -18.961839694904025], [-57.949997321185819, -19.400004164306814], [-57.853801642474494, -19.969995212486186], [-58.166392381408038, -20.176700941653674], [-58.183471442280492, -19.868399346600359], [-59.11504248720609, -19.356906019775398], [-60.043564622626477, -19.342746677327419], [-61.786326463453761, -19.633736667562957], [-62.265961269770784, -20.513734633061272], [-62.291179368729203, -21.051634616787389], [-62.685057135657871, -22.24902922942238], [-62.84646847192154, -22.034985446869442]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Brazil\", \"name\": \"Brazil\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-57.625133429582945, -30.216294854454258], [-56.290899624239067, -28.852760512000884], [-55.162286342984558, -27.881915378533456], [-54.49072526713551, -27.474756768505785], [-53.648735317587885, -26.923472588816086], [-53.628348965048737, -26.124865004177465], [-54.130049607954376, -25.547639255477247], [-54.625290696823562, -25.739255466415507], [-54.428946092330577, -25.162184747012162], [-54.293476325077435, -24.570799655863958], [-54.292959560754511, -24.021014092710722], [-54.652834235235119, -23.839578138933955], [-55.027901780809543, -24.001273695575225], [-55.400747239795407, -23.956935316668797], [-55.517639329639621, -23.57199757252663], [-55.61068274598113, -22.655619398694839], [-55.797958136606894, -22.356929620047815], [-56.473317430229379, -22.086300144135279], [-56.881509568902885, -22.282153822521476], [-57.937155727761287, -22.090175876557169], [-57.870673997617786, -20.732687676681948], [-58.166392381408038, -20.176700941653674], [-57.853801642474494, -19.969995212486186], [-57.949997321185819, -19.400004164306814], [-57.676008877174297, -18.961839694904025], [-57.498371141170971, -18.174187513911289], [-57.734558274960989, -17.552468357007765], [-58.280804002502244, -17.271710300366014], [-58.388058437724027, -16.877109063385273], [-58.241219855366673, -16.299573256091289], [-60.158389655179022, -16.258283786690082], [-60.542965664295131, -15.093910414289592], [-60.251148851142922, -15.077218926659318], [-60.264326341377355, -14.645979099183638], [-60.459198167550014, -14.354007256734551], [-60.503304002511122, -13.775954685117656], [-61.084121263255646, -13.479383640194595], [-61.713204311760769, -13.489202162330049], [-62.127080857986371, -13.19878061284972], [-62.803060268796372, -13.000653171442682], [-63.196498786050562, -12.627032565972433], [-64.31635291203159, -12.461978041232191], [-65.402281460213018, -11.566270440317151], [-65.321898769783004, -10.895872084194675], [-65.444837002205375, -10.51145110437543], [-65.33843522811641, -9.76198780684639], [-66.646908331962791, -9.931331475466861], [-67.173801235610725, -10.30681243249961], [-68.048192308205373, -10.712059014532484], [-68.27125362819325, -11.014521172736817], [-68.786157599549469, -11.036380303596276], [-69.52967810736493, -10.951734307502193], [-70.093752204046879, -11.123971856331011], [-70.548685675728393, -11.009146823778462], [-70.481893886991159, -9.490118096558842], [-71.302412278921523, -10.079436130415372], [-72.184890713169821, -10.05359791426943], [-72.563033006465631, -9.520193780152715], [-73.226713426390148, -9.462212823121233], [-73.015382656532537, -9.03283334720806], [-73.571059332967053, -8.424446709835832], [-73.987235480429646, -7.523829847853063], [-73.723401455363486, -7.340998630404412], [-73.724486660441627, -6.918595472850638], [-73.120027431923575, -6.629930922068238], [-73.219711269814596, -6.089188734566076], [-72.964507208941185, -5.741251315944892], [-72.891927659787243, -5.274561455916979], [-71.748405727816532, -4.59398284263301], [-70.928843349883564, -4.401591485210367], [-70.79476884630229, -4.251264743673302], [-69.893635219996611, -4.298186944194326], [-69.444101935489599, -1.556287123219817], [-69.420485805932216, -1.122618503426409], [-69.577065395776586, -0.549991957200163], [-70.02065589057004, -0.185156345219539], [-70.015565761989293, 0.541414292804205], [-69.452396002872447, 0.706158758950693], [-69.252434048119042, 0.602650865070075], [-69.218637661400166, 0.985676581217433], [-69.804596727157701, 1.089081122233466], [-69.816973232691609, 1.714805202639624], [-67.868565029558823, 1.692455145673392], [-67.537810024674684, 2.037162787276329], [-67.25999752467358, 1.719998684084956], [-67.065048183852483, 1.130112209473225], [-66.876325853122566, 1.253360500489336], [-66.325765143484944, 0.724452215982012], [-65.548267381437554, 0.78925446207603], [-65.354713304288353, 1.0952822941085], [-64.611011928959854, 1.328730576987041], [-64.199305792890499, 1.49285492594602], [-64.083085496666072, 1.91636912679408], [-63.368788011311644, 2.200899562993129], [-63.422867397705105, 2.411067613124174], [-64.269999152265783, 2.497005520025566], [-64.408827887617903, 3.126786200366623], [-64.368494432214092, 3.797210394705246], [-64.816064012294007, 4.056445217297422], [-64.628659430587533, 4.14848094320925], [-63.888342861574145, 4.020530096854571], [-63.093197597899092, 3.770571193858784], [-62.804533047116692, 4.006965033377951], [-62.085429653559125, 4.162123521334308], [-60.966893276601517, 4.536467596856638], [-60.601179165271922, 4.918098049332129], [-60.733574184803707, 5.2002772078619], [-60.213683437731319, 5.2444863956876], [-59.980958624904865, 5.014061184098138], [-60.111002366767373, 4.574966538914082], [-59.767405768458701, 4.423502915866606], [-59.538039923731219, 3.958802598481937], [-59.815413174057852, 3.606498521332085], [-59.974524909084543, 2.755232652188055], [-59.718545701726732, 2.249630438644359], [-59.646043667221242, 1.786893825686789], [-59.030861579002639, 1.317697658692722], [-58.540012986878288, 1.26808828369252], [-58.429477098205957, 1.46394196207872], [-58.113449876525003, 1.507195135907025], [-57.660971035377358, 1.682584947105638], [-57.33582292339689, 1.948537705895759], [-56.782704230360814, 1.863710842288653], [-56.53938574891454, 1.89952260986692], [-55.995698004771739, 1.817667141116601], [-55.905600145070871, 2.021995754398659], [-56.073341844290283, 2.220794989425499], [-55.973322109589361, 2.510363877773016], [-55.569755011605984, 2.42150625244713], [-55.097587449755125, 2.523748073736612], [-54.524754197799709, 2.311848863123785], [-54.088062506717243, 2.105556545414629], [-53.778520677288903, 2.376702785650081], [-53.554839240113537, 2.33489655192595], [-53.4184651352953, 2.05338918701598], [-52.939657151894949, 2.124857692875636], [-52.556424730018414, 2.504705308437053], [-52.249337531123942, 3.241094468596244], [-51.657797410678882, 4.156232408053028], [-51.317146369010842, 4.203490505383953], [-51.069771287629649, 3.65039765056403], [-50.508875291533641, 1.901563828942456], [-49.974075893745045, 1.736483465986069], [-49.947100796088705, 1.046189683431223], [-50.699251268096901, 0.222984117021681], [-50.388210822132123, -0.078444512536819], [-48.620566779156313, -0.235489190271821], [-48.584496629416577, -1.237805271005001], [-47.824956427590621, -0.5816179337628], [-46.566583624851219, -0.941027520352776], [-44.9057030909904, -1.551739597178134], [-44.417619187993658, -2.137750339367975], [-44.581588507655773, -2.691308282078523], [-43.418791266440188, -2.383110039889793], [-41.47265682632824, -2.912018324397116], [-39.97866533055403, -2.87305429444904], [-38.50038347019656, -3.700652357603394], [-37.223252122535193, -4.820945733258915], [-36.45293738457638, -5.109403578312153], [-35.597795783010454, -5.149504489770648], [-35.235388963347553, -5.464937432480245], [-34.896029832486825, -6.738193047719709], [-34.729993455533027, -7.343220716992965], [-35.128212042774216, -8.996401462442284], [-35.636966518687707, -9.649281508017811], [-37.046518724096991, -11.040721123908799], [-37.683611619607355, -12.17119475672582], [-38.423876512188436, -13.038118584854285], [-38.673887091616507, -13.057652276260615], [-38.953275722802537, -13.79336964280002], [-38.882298143049645, -15.667053724838764], [-39.161092495264306, -17.208406670808468], [-39.267339240056394, -17.867746270420479], [-39.583521491034219, -18.262295830968934], [-39.76082333022763, -19.599113457927402], [-40.774740770010332, -20.90451181405242], [-40.944756232250597, -21.937316989837807], [-41.75416419123821, -22.370675551037454], [-41.988284267736546, -22.970070489190888], [-43.074703742024738, -22.967693373305462], [-44.647811855637798, -23.351959323827838], [-45.35213578955991, -23.796841729428579], [-46.472093268405523, -24.088968601174539], [-47.648972337420645, -24.885199069927715], [-48.495458136577689, -25.877024834905647], [-48.641004808127725, -26.623697605090928], [-48.474735887228647, -27.175911960561887], [-48.661520351747612, -28.186134535435713], [-48.888457404157393, -28.674115085567877], [-49.587329474472668, -29.224469089476333], [-50.696874152211478, -30.984465020472953], [-51.576226162306149, -31.777698256153204], [-52.256081305538032, -32.245369968394662], [-52.71209998229768, -33.196578057591175], [-53.373661668498229, -33.768377780900757], [-53.650543992718084, -33.202004082981823], [-53.209588995971529, -32.727666110974717], [-53.787951626182185, -32.047242526987617], [-54.572451544805105, -31.494511407193745], [-55.601510179249331, -30.853878676071385], [-55.97324459494093, -30.883075860316296], [-56.976025763564721, -30.109686374636119], [-57.625133429582945, -30.216294854454258]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Brunei\", \"name\": \"Brunei\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[114.204016554828343, 4.525873928236805], [114.599961379048707, 4.900011298029965], [115.450710483869798, 5.447729803891532], [115.405700311343566, 4.955227565933837], [115.347460972150643, 4.316636053887009], [114.869557326315373, 4.348313706881924], [114.659595981913498, 4.007636826997753], [114.204016554828343, 4.525873928236805]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Bhutan\", \"name\": \"Bhutan\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[91.69665652869665, 27.771741848251661], [92.10371178585973, 27.4526140406332], [92.033483514375078, 26.838310451763554], [91.217512648486405, 26.808648179628019], [90.37327477413406, 26.875724188742872], [89.744527622438838, 26.71940298105995], [88.835642531289366, 27.098966376243755], [88.814248488320544, 27.299315904239361], [89.475810174521101, 28.04275889740639], [90.015828891971154, 28.296438503527209], [90.730513950567769, 28.064953925075748], [91.258853794319904, 28.040614325466287], [91.69665652869665, 27.771741848251661]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Botswana\", \"name\": \"Botswana\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[25.649163445750155, -18.536025892818987], [25.850391473094724, -18.714412937090533], [26.164790887158478, -19.293085625894935], [27.296504754350501, -20.391519870690995], [27.724747348753247, -20.499058526290387], [27.727227817503252, -20.851801853114711], [28.02137007010861, -21.485975030200578], [28.794656202924209, -21.639454034107445], [29.432188348109033, -22.091312758067584], [28.017235955525244, -22.827753594659072], [27.119409620886238, -23.574323011979772], [26.78640669119741, -24.240690606383478], [26.485753208123292, -24.616326592713097], [25.941652052522151, -24.696373386333214], [25.765848829865206, -25.174845472923671], [25.664666375437712, -25.486816094669706], [25.025170525825782, -25.719670098576891], [24.211266717228792, -25.670215752873567], [23.733569777122703, -25.39012948985161], [23.312096795350179, -25.268689873965712], [22.824271274514896, -25.500458672794768], [22.579531691180584, -25.979447523708142], [22.105968865657864, -26.28025603607913], [21.60589603036939, -26.726533705351748], [20.889609002371731, -26.828542982695907], [20.666470167735437, -26.477453301704916], [20.758609246511831, -25.868136488551446], [20.165725538827186, -24.917961928000768], [19.895767856534427, -24.767790215760588], [19.895457797940672, -21.849156996347865], [20.881134067475866, -21.814327080983144], [20.910641310314531, -18.252218926672018], [21.655040317478971, -18.219146010005222], [23.196858351339298, -17.869038181227783], [23.579005568137713, -18.281261081620055], [24.217364536239209, -17.889347019118485], [24.520705193792534, -17.887124932529932], [25.084443393664564, -17.661815687737366], [25.264225701608005, -17.736539808831413], [25.649163445750155, -18.536025892818987]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Central African Republic\", \"name\": \"Central African Rep.\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[15.279460483469107, 7.421924546737968], [16.106231723706767, 7.497087917506504], [16.290561557691884, 7.754307359239304], [16.456184523187343, 7.734773667832966], [16.705988396886251, 7.508327541529978], [17.964929640380884, 7.890914008002865], [18.389554884523218, 8.281303615751822], [18.911021762780504, 8.630894680206351], [18.81200971850927, 8.982914536978596], [19.094008009526018, 9.074846910025837], [20.059685499764267, 9.01270600019485], [21.00086836109616, 9.475985215691507], [21.723821648859452, 10.567055568885973], [22.231129184668784, 10.971888739460507], [22.864165480244218, 11.142395127807543], [22.977543572692603, 10.714462591998538], [23.554304233502187, 10.089255275915306], [23.557249790142826, 9.681218166538683], [23.394779087017181, 9.26506785729222], [23.459012892355979, 8.954285793488891], [23.805813429466745, 8.666318874542425], [24.567369012152078, 8.229187933785466], [25.114932488716786, 7.825104071479172], [25.12413089366472, 7.500085150579436], [25.796647983511171, 6.979315904158069], [26.21341840994511, 6.546603298362071], [26.465909458123232, 5.94671743410187], [27.213409051225163, 5.550953477394557], [27.374226108517483, 5.233944403500059], [27.044065382604703, 5.127852688004835], [26.402760857862535, 5.150874538590869], [25.650455356557465, 5.256087754737123], [25.278798455514302, 5.170408229997191], [25.128833449003274, 4.927244777847789], [24.805028924262409, 4.897246608902349], [24.41053104014625, 5.108784084489129], [23.297213982850135, 4.609693101414221], [22.841479526468103, 4.710126247573483], [22.704123569436284, 4.633050848810156], [22.405123732195531, 4.02916006104732], [21.659122755630019, 4.224341945813719], [20.927591180106273, 4.322785549329736], [20.290679152108932, 4.691677761245287], [19.467783644293146, 5.031527818212779], [18.932312452884755, 4.709506130385973], [18.542982211997778, 4.201785183118317], [18.453065219809925, 3.504385891123348], [17.809900343505259, 3.560196437998569], [17.133042433346297, 3.728196519379451], [16.537058139724135, 3.198254706226278], [16.01285241055535, 2.267639675298084], [15.907380812247649, 2.557389431158612], [15.862732374747479, 3.013537298998982], [15.405395948964379, 3.335300604664339], [15.036219516671249, 3.851367295747123], [14.950953403389658, 4.21038930909492], [14.478372430080466, 4.732605495620446], [14.558935988023501, 5.03059764243153], [14.459407179429345, 5.451760565610299], [14.536560092841111, 6.22695872642069], [14.776545444404572, 6.408498033062044], [15.279460483469107, 7.421924546737968]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Canada\", \"name\": \"Canada\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[-63.6645, 46.55001], [-62.9393, 46.41587], [-62.01208, 46.44314], [-62.50391, 46.03339], [-62.87433, 45.96818], [-64.1428, 46.39265], [-64.39261, 46.72747], [-64.01486, 47.03601], [-63.6645, 46.55001]]], [[[-61.806305, 49.10506], [-62.29318, 49.08717], [-63.58926, 49.40069], [-64.51912, 49.87304], [-64.17322, 49.95718], [-62.85829, 49.70641], [-61.835585, 49.28855], [-61.806305, 49.10506]]], [[[-123.510001587551116, 48.51001089130343], [-124.012890788399474, 48.370846259141402], [-125.655012777338342, 48.825004584338494], [-125.954994466792726, 49.179995835967638], [-126.850004435871853, 49.530000311880421], [-127.029993449544392, 49.814995835970073], [-128.059336304366212, 49.994959011426594], [-128.444584107102145, 50.53913768167611], [-128.358413656255408, 50.770648098343678], [-127.308581096029883, 50.552573554071948], [-126.695000977212302, 50.40090322529538], [-125.755006673823161, 50.295018215529367], [-125.415001587558791, 49.950000515332604], [-124.920768189119315, 49.47527497008339], [-123.92250870832099, 49.062483628935794], [-123.510001587551116, 48.51001089130343]]], [[[-56.134035814017111, 50.687009792679298], [-56.795881720595261, 49.812308661490945], [-56.143105027884289, 50.15011749938283], [-55.471492275602934, 49.935815334668447], [-55.822401089080913, 49.587128607779093], [-54.93514258484565, 49.313010972686833], [-54.473775397343772, 49.556691189159167], [-53.47654944519131, 49.24913890237405], [-53.786013759971233, 48.516780503933617], [-53.086133999226249, 48.687803656603528], [-52.95864824076223, 48.157164211614472], [-52.648098720904173, 47.53554840757549], [-53.069158291218336, 46.655498765644936], [-53.521456264853029, 46.618291734394823], [-54.178935512902527, 46.807065741556997], [-53.961868659060471, 47.625207017601909], [-54.240482143762122, 47.752279364607617], [-55.400773078011483, 46.88499380145312], [-55.997480841685835, 46.919720363953289], [-55.291219041552765, 47.389562486350982], [-56.250798712780508, 47.632545070987383], [-57.325229254777085, 47.572807115257987], [-59.26601518414676, 47.603347886742498], [-59.41949418805369, 47.89945384377485], [-58.796586473207398, 48.251525376979473], [-59.23162451845652, 48.523188381537793], [-58.391804979065213, 49.125580552764163], [-57.358689744686025, 50.718274034215845], [-56.738650071831998, 51.287438259478527], [-55.87097693543528, 51.632094224649187], [-55.406974249886602, 51.588272610065722], [-55.600218268442077, 51.317074693397913], [-56.134035814017111, 50.687009792679298]]], [[[-133.180004041711669, 54.169975490935308], [-132.710007884431292, 54.040009315423518], [-131.749989584003259, 54.120004380909208], [-132.049480347350965, 52.984621487024519], [-131.179042521826574, 52.18043284769827], [-131.577829549822894, 52.182370713909236], [-132.180428426778519, 52.639707139692391], [-132.549992432313843, 53.100014960332132], [-133.054611178755493, 53.411468817755363], [-133.239664482792676, 53.851080227262386], [-133.180004041711669, 54.169975490935308]]], [[[-79.26582, 62.158675], [-79.65752, 61.63308], [-80.09956, 61.7181], [-80.36215, 62.01649], [-80.315395, 62.085565], [-79.92939, 62.3856], [-79.52002, 62.36371], [-79.26582, 62.158675]]], [[[-81.89825, 62.7108], [-83.06857, 62.15922], [-83.77462, 62.18231], [-83.99367, 62.4528], [-83.25048, 62.91409], [-81.87699, 62.90458], [-81.89825, 62.7108]]], [[[-85.161307949549851, 65.657284654392797], [-84.975763719405933, 65.217518215588981], [-84.464012010419495, 65.371772365980163], [-83.88262630891974, 65.109617824963536], [-82.78757687043877, 64.766693020274673], [-81.642013719392509, 64.455135809986942], [-81.553440314444245, 63.979609280037131], [-80.817361212878851, 64.057485663500998], [-80.103451300766594, 63.725981350348597], [-80.991019863595653, 63.41124603947496], [-82.547178107416997, 63.651722317145229], [-83.108797573565042, 64.101875718839707], [-84.100416632813847, 63.569711819098004], [-85.523404710618991, 63.052379055424076], [-85.866768764982339, 63.637252916103542], [-87.221983201836721, 63.541238104905212], [-86.352759772471259, 64.035833238370699], [-86.224886440765133, 64.822916978608262], [-85.883847825854858, 65.738778388117041], [-85.161307949549851, 65.657284654392797]]], [[[-75.86588, 67.14886], [-76.98687, 67.09873], [-77.2364, 67.58809], [-76.81166, 68.14856], [-75.89521, 68.28721], [-75.1145, 68.01036], [-75.10333, 67.58202], [-75.21597, 67.44425], [-75.86588, 67.14886]]], [[[-95.647681203800488, 69.107690358321761], [-96.269521203800579, 68.757040358321731], [-97.61740120380054, 69.060030358321782], [-98.431801203800504, 68.950700358321768], [-99.797401203800504, 69.400030358321786], [-98.917401203800523, 69.710030358321788], [-98.218261203800466, 70.143540358321744], [-97.157401203800532, 69.860030358321794], [-96.557401203800524, 69.680030358321758], [-96.257401203800498, 69.490030358321761], [-95.647681203800488, 69.107690358321761]]], [[[-90.5471, 69.49766], [-90.55151, 68.47499], [-89.21515, 69.25873], [-88.01966, 68.61508], [-88.31749, 67.87338], [-87.35017, 67.19872], [-86.30607, 67.92146], [-85.57664, 68.78456], [-85.52197, 69.88211], [-84.10081, 69.80539], [-82.62258, 69.65826], [-81.28043, 69.16202], [-81.2202, 68.66567], [-81.96436, 68.13253], [-81.25928, 67.59716], [-81.38653, 67.11078], [-83.34456, 66.41154], [-84.73542, 66.2573], [-85.76943, 66.55833], [-86.0676, 66.05625], [-87.03143, 65.21297], [-87.32324, 64.77563], [-88.48296, 64.09897], [-89.91444, 64.03273], [-90.70398, 63.61017], [-90.77004, 62.96021], [-91.93342, 62.83508], [-93.15698, 62.02469], [-94.24153, 60.89865], [-94.62931, 60.11021], [-94.6846, 58.94882], [-93.21502, 58.78212], [-92.76462, 57.84571], [-92.297029999999893, 57.08709], [-90.89769, 57.28468], [-89.03953, 56.85172], [-88.03978, 56.47162], [-87.32421, 55.99914], [-86.07121, 55.72383], [-85.01181, 55.3026], [-83.36055, 55.24489], [-82.27285, 55.14832], [-82.4362, 54.28227], [-82.12502, 53.27703], [-81.40075, 52.15788], [-79.91289, 51.20842], [-79.14301, 51.53393], [-78.60191, 52.56208], [-79.12421, 54.14145], [-79.82958, 54.66772], [-78.22874, 55.13645], [-77.0956, 55.83741], [-76.54137, 56.53423], [-76.62319, 57.20263], [-77.30226, 58.05209], [-78.51688, 58.80458], [-77.33676, 59.85261], [-77.77272, 60.75788], [-78.10687, 62.31964], [-77.41067, 62.55053], [-75.69621, 62.2784], [-74.6682, 62.18111], [-73.83988, 62.4438], [-72.90853, 62.10507], [-71.67708, 61.52535], [-71.37369, 61.13717], [-69.59042, 61.06141], [-69.62033, 60.22125], [-69.2879, 58.95736], [-68.37455, 58.80106], [-67.64976, 58.21206], [-66.20178, 58.76731], [-65.24517, 59.87071], [-64.58352, 60.33558], [-63.80475, 59.4426], [-62.50236, 58.16708], [-61.39655, 56.96745], [-61.79866, 56.33945], [-60.46853, 55.77548], [-59.56962, 55.20407], [-57.97508, 54.94549], [-57.3332, 54.6265], [-56.93689, 53.78032], [-56.15811, 53.64749], [-55.75632, 53.27036], [-55.68338, 52.14664], [-56.40916, 51.7707], [-57.12691, 51.41972], [-58.77482, 51.0643], [-60.03309, 50.24277], [-61.72366, 50.08046], [-63.86251, 50.29099], [-65.36331, 50.2982], [-66.39905, 50.22897], [-67.23631, 49.51156], [-68.51114, 49.06836], [-69.95362, 47.74488], [-71.10458, 46.82171], [-70.25522, 46.98606], [-68.65, 48.3], [-66.55243, 49.1331], [-65.05626, 49.23278], [-64.17099, 48.74248], [-65.11545, 48.07085], [-64.79854, 46.99297], [-64.47219, 46.23849], [-63.17329, 45.73902], [-61.52072, 45.88377], [-60.51815, 47.00793], [-60.4486, 46.28264], [-59.80287, 45.9204], [-61.03988, 45.26525], [-63.25471, 44.67014], [-64.24656, 44.26553], [-65.36406, 43.54523], [-66.1234, 43.61867], [-66.16173, 44.46512], [-64.42549, 45.29204], [-66.02605, 45.25931], [-67.13741, 45.13753], [-67.79134, 45.70281], [-67.79046, 47.06636], [-68.23444, 47.35486], [-68.905, 47.185], [-69.237216, 47.447781], [-69.99997, 46.69307], [-70.305, 45.915], [-70.66, 45.46], [-71.08482, 45.30524], [-71.405, 45.255], [-71.50506, 45.0082], [-73.34783, 45.00738], [-74.867, 45.00048], [-75.31821, 44.81645], [-76.375, 44.09631], [-76.5, 44.018458893758712], [-76.820034145805565, 43.628784288093748], [-77.737885097957687, 43.62905558936329], [-78.720279914042365, 43.625089423184868], [-79.171673550111862, 43.466339423184216], [-79.01, 43.27], [-78.92, 42.965], [-78.939362148743683, 42.863611355148031], [-80.247447679347928, 42.366199856122584], [-81.277746548167144, 42.209025987306845], [-82.439277716791608, 41.675105088867149], [-82.690089280920162, 41.675105088867149], [-83.029810146806909, 41.832795722005834], [-83.141999681312555, 41.975681057292825], [-83.12, 42.08], [-82.9, 42.43], [-82.43, 42.98], [-82.137642381503881, 43.571087551439909], [-82.337763125431053, 44.44], [-82.550924648758169, 45.347516587905368], [-83.592850714843067, 45.816893622412373], [-83.469550747394621, 45.994686387712584], [-83.616130947590563, 46.116926988299056], [-83.890765347005726, 46.116926988299056], [-84.091851264161463, 46.27541860613816], [-84.14211951367335, 46.512225857115723], [-84.3367, 46.40877], [-84.6049, 46.4396], [-84.543748745445853, 46.538684190449132], [-84.779238247399888, 46.637101955749038], [-84.876079881514855, 46.900083319682366], [-85.652363247403414, 47.220218817730498], [-86.461990831228249, 47.553338019392037], [-87.439792623300207, 47.94], [-88.378114183286698, 48.302917588893727], [-89.272917446636654, 48.019808254582657], [-89.6, 48.01], [-90.83, 48.27], [-91.64, 48.14], [-92.61, 48.45], [-93.63087, 48.60926], [-94.32914, 48.67074], [-94.64, 48.84], [-94.81758, 49.38905], [-95.15609, 49.38425], [-95.159069509172014, 49.0], [-97.228720000004799, 49.0007], [-100.65, 49.0], [-104.04826, 48.99986], [-107.05, 49.0], [-110.05, 49.0], [-113.0, 49.0], [-116.04818, 49.0], [-117.03121, 49.0], [-120.0, 49.0], [-122.84, 49.0], [-122.97421, 49.002537777777789], [-124.91024, 49.98456], [-125.62461, 50.41656], [-127.43561, 50.83061], [-127.99276, 51.71583], [-127.85032, 52.32961], [-129.12979, 52.75538], [-129.30523, 53.56159], [-130.51497, 54.28757], [-130.53611, 54.80278], [-129.98, 55.285], [-130.00778, 55.91583], [-131.70781, 56.55212], [-132.73042, 57.69289], [-133.35556, 58.41028], [-134.27111, 58.86111], [-134.945, 59.27056], [-135.47583, 59.78778], [-136.47972, 59.46389], [-137.4525, 58.905], [-138.34089, 59.56211], [-139.039, 60.0], [-140.013, 60.27682], [-140.99778, 60.30639], [-140.9925, 66.00003], [-140.986, 69.712], [-139.12052, 69.47102], [-137.54636, 68.99002], [-136.50358, 68.89804], [-135.62576, 69.31512], [-134.41464, 69.62743], [-132.92925, 69.50534], [-131.43136, 69.94451], [-129.79471, 70.19369], [-129.10773, 69.77927], [-128.36156, 70.01286], [-128.13817, 70.48384], [-127.44712, 70.37721], [-125.75632, 69.48058], [-124.42483, 70.1584], [-124.28968, 69.39969], [-123.06108, 69.56372], [-122.6835, 69.85553], [-121.47226, 69.79778], [-119.94288, 69.37786], [-117.60268, 69.01128], [-116.22643, 68.84151], [-115.2469, 68.90591], [-113.89794, 68.3989], [-115.30489, 67.90261], [-113.49727, 67.68815], [-110.798, 67.80612], [-109.94619, 67.98104], [-108.8802, 67.38144], [-107.79239, 67.88736], [-108.81299, 68.31164], [-108.16721, 68.65392], [-106.95, 68.7], [-106.15, 68.8], [-105.34282, 68.56122], [-104.33791, 68.018], [-103.22115, 68.09775], [-101.45433, 67.64689], [-99.90195, 67.80566], [-98.4432, 67.78165], [-98.5586, 68.40394], [-97.66948, 68.57864], [-96.11991, 68.23939], [-96.12588, 67.29338], [-95.48943, 68.0907], [-94.685, 68.06383], [-94.23282, 69.06903], [-95.30408, 69.68571], [-96.47131, 70.08976], [-96.39115, 71.19482], [-95.2088, 71.92053], [-93.88997, 71.76015], [-92.87818, 71.31869], [-91.51964, 70.19129], [-92.40692, 69.69997], [-90.5471, 69.49766]]], [[[-114.167169999999871, 73.12145], [-114.66634, 72.65277], [-112.441019999999867, 72.9554], [-111.05039, 72.4504], [-109.920349999999857, 72.96113], [-109.00654, 72.63335], [-108.188349999999886, 71.65089], [-107.68599, 72.06548], [-108.39639, 73.08953], [-107.51645, 73.23598], [-106.522589999999866, 73.07601], [-105.402459999999877, 72.67259], [-104.77484, 71.6984], [-104.464759999999814, 70.99297], [-102.78537, 70.49776], [-100.980779999999868, 70.02432], [-101.089289999999892, 69.58447000000011], [-102.731159999999875, 69.50402], [-102.09329, 69.11962], [-102.43024, 68.75282], [-104.24, 68.91], [-105.96, 69.180000000000135], [-107.12254, 69.11922], [-108.999999999999872, 68.78], [-111.534148875200117, 68.630059156817921], [-113.3132, 68.53554], [-113.854959999999807, 69.007440000000102], [-115.22, 69.28], [-116.10794, 69.16821], [-117.34, 69.960000000000107], [-116.674729999999869, 70.06655], [-115.13112, 70.2373], [-113.72141, 70.19237], [-112.4161, 70.36638], [-114.35, 70.6], [-116.48684, 70.52045], [-117.9048, 70.540560000000127], [-118.43238, 70.9092], [-116.11311, 71.30918], [-117.65568, 71.2952], [-119.40199, 71.55859], [-118.56267, 72.30785], [-117.866419999999877, 72.70594], [-115.18909, 73.314590000000109], [-114.167169999999871, 73.12145]]], [[[-104.5, 73.42], [-105.38, 72.76], [-106.94, 73.46], [-106.6, 73.6], [-105.26, 73.64], [-104.5, 73.42]]], [[[-76.34, 73.102684989953005], [-76.251403808593736, 72.826385498046861], [-77.314437866210895, 72.85554504394527], [-78.391670227050795, 72.876655578613253], [-79.486251831054645, 72.742202758789062], [-79.775833129882827, 72.80290222167973], [-80.876098632812514, 73.333183288574205], [-80.833885192871051, 73.693183898925767], [-80.353057861328111, 73.75971984863277], [-78.064437866210923, 73.651931762695327], [-76.34, 73.102684989953005]]], [[[-86.562178514334107, 73.157447007938444], [-85.774371304044521, 72.534125881633798], [-84.850112474288224, 73.34027822538711], [-82.315590176100969, 73.750950832810574], [-80.600087653307611, 72.716543687624181], [-80.748941616524391, 72.061906643350753], [-78.770638597310764, 72.352173163534147], [-77.824623989559569, 72.749616604291035], [-75.605844692675717, 72.243678493937381], [-74.228616095664975, 71.767144273557889], [-74.099140794557698, 71.330840155717638], [-72.242225714797641, 71.556924546994495], [-71.200015428335192, 70.920012518997211], [-68.78605424668487, 70.525023708774242], [-67.914970465756923, 70.121947536897594], [-66.969033372654152, 69.18608734809186], [-68.805122850200533, 68.720198472764409], [-66.449866095633851, 68.067163397892003], [-64.862314419195215, 67.847538560651614], [-63.424934454996745, 66.928473212340649], [-61.851981370680569, 66.862120673277829], [-62.163176845942296, 66.160251369889593], [-63.91844438338417, 64.998668524832837], [-65.148860236253611, 65.426032619886669], [-66.72121904159853, 66.388041083432185], [-68.015016038673949, 66.262725735124391], [-68.141287400979152, 65.689789130304362], [-67.089646165623392, 65.108455105236985], [-65.732080451099748, 64.64840566675862], [-65.320167609301265, 64.382737128346051], [-64.669406297449669, 63.392926744227474], [-65.013803880458894, 62.674185085695974], [-66.275044725190455, 62.945098781986069], [-68.783186204692711, 63.745670071051805], [-67.369680752213029, 62.883965562584869], [-66.328297288667201, 62.28007477482204], [-66.165568203380147, 61.930897121825879], [-68.877366502544632, 62.330149237712803], [-71.023437059193824, 62.910708116295829], [-72.23537858751898, 63.397836005295154], [-71.886278449171286, 63.679989325608837], [-73.37830624051837, 64.193963121183813], [-74.834418911422588, 64.679075629323776], [-74.818502570276706, 64.389093329517962], [-77.709979824520019, 64.229542344816778], [-78.55594885935416, 64.572906399180127], [-77.897281053361908, 65.309192206474776], [-76.018274298797181, 65.326968899183143], [-73.95979529488271, 65.454764716240888], [-74.293883429649625, 65.81177134872938], [-73.94491248238262, 66.310578111426722], [-72.65116716173938, 67.284575507263853], [-72.926059943316076, 67.726925767682374], [-73.311617804645721, 68.069437160912898], [-74.8433072577768, 68.554627183701271], [-76.869100918266739, 68.894735622830254], [-76.228649054657339, 69.147769273547411], [-77.28736996123709, 69.769540106883269], [-78.168633999326588, 69.826487535268896], [-78.95724219431672, 70.166880194775402], [-79.492455003563649, 69.871807766388898], [-81.305470954091732, 69.743185126414332], [-84.944706183598456, 69.966634019644388], [-87.060003424817864, 70.260001125765356], [-88.681713223001495, 70.410741278760796], [-89.513419562523012, 70.762037665480975], [-88.467721116880753, 71.218185533321318], [-89.888151211287465, 71.222552191849942], [-90.205160285181989, 72.235074367960792], [-89.43657670770493, 73.129464219852352], [-88.408241543312784, 73.537888902471209], [-85.826151089200906, 73.803815823045213], [-86.562178514334107, 73.157447007938444]]], [[[-100.35642, 73.84389], [-99.16387, 73.63339], [-97.38, 73.76], [-97.12, 73.47], [-98.05359, 72.99052], [-96.54, 72.56], [-96.72, 71.66], [-98.35966, 71.27285], [-99.32286, 71.35639], [-100.01482, 71.73827], [-102.5, 72.51], [-102.48, 72.83], [-100.43836, 72.70588], [-101.54, 73.36], [-100.35642, 73.84389]]], [[[-93.196295539100205, 72.771992499473342], [-94.26904659704725, 72.024596259235949], [-95.409855516322637, 72.061880805134578], [-96.033745083382428, 72.940276801231789], [-96.01826799191096, 73.437429918095788], [-95.495793423224001, 73.862416897264154], [-94.503657599652328, 74.134906724739196], [-92.420012173211745, 74.100025132942179], [-90.509792853542578, 73.85673248971203], [-92.003965216829869, 72.966244208458477], [-93.196295539100205, 72.771992499473342]]], [[[-120.46, 71.383601793087578], [-123.09219, 70.90164], [-123.62, 71.34], [-125.92894873747332, 71.868688463011395], [-125.499999999999872, 72.292260811795003], [-124.80729, 73.02256], [-123.94, 73.680000000000135], [-124.917749999999899, 74.292750000000112], [-121.53788, 74.44893], [-120.10978, 74.24135], [-117.55564, 74.18577], [-116.58442, 73.89607], [-115.51081, 73.47519], [-116.767939999999882, 73.22292], [-119.22, 72.52], [-120.46, 71.82], [-120.46, 71.383601793087578]]], [[[-93.612755906940464, 74.979997260224437], [-94.156908738973812, 74.59234650338685], [-95.60868058956558, 74.666863918751758], [-96.820932176484561, 74.927623196096576], [-96.288587409229791, 75.377828274223333], [-94.850819871789113, 75.647217515760886], [-93.977746548217908, 75.296489569795952], [-93.612755906940464, 74.979997260224437]]], [[[-98.5, 76.72], [-97.735585, 76.25656], [-97.704415, 75.74344], [-98.16, 75.0], [-99.80874, 74.89744], [-100.88366, 75.05736], [-100.86292, 75.64075], [-102.50209, 75.5638], [-102.56552, 76.3366], [-101.48973, 76.30537], [-99.98349, 76.64634], [-98.57699, 76.58859], [-98.5, 76.72]]], [[[-108.21141, 76.20168], [-107.81943, 75.84552], [-106.92893, 76.01282], [-105.881, 75.9694], [-105.70498, 75.47951], [-106.31347, 75.00527], [-109.7, 74.85], [-112.22307, 74.41696], [-113.74381, 74.39427], [-113.87135, 74.72029], [-111.79421, 75.1625], [-116.31221, 75.04343], [-117.7104, 75.2222], [-116.34602, 76.19903], [-115.40487, 76.47887], [-112.59056, 76.14134], [-110.81422, 75.54919], [-109.0671, 75.47321], [-110.49726, 76.42982], [-109.5811, 76.79417], [-108.54859, 76.67832], [-108.21141, 76.20168]]], [[[-94.684085862999439, 77.097878323058367], [-93.573921068073105, 76.776295884906062], [-91.605023159536586, 76.778517971494594], [-90.741845872749209, 76.449597479956807], [-90.969661424507976, 76.074013170059445], [-89.822237921899244, 75.847773749485626], [-89.187082892599776, 75.610165513807615], [-87.838276333349611, 75.566188869927217], [-86.379192267588664, 75.482421373182163], [-84.789625210290595, 75.699204006646497], [-82.753444586910049, 75.784315090631225], [-81.12853084992436, 75.713983466282016], [-80.05751095245914, 75.336848863415867], [-79.833932868148324, 74.923127346487192], [-80.457770758775823, 74.657303778777774], [-81.948842536125511, 74.442459011524321], [-83.2288936022114, 74.564027818490928], [-86.097452358733292, 74.410032050261137], [-88.150350307960196, 74.392307033984977], [-89.764722052758358, 74.515555325001117], [-92.422440965529418, 74.837757880340973], [-92.768285488642789, 75.38681997344213], [-92.889905972041717, 75.882655341282629], [-93.893824022175977, 76.319243679500516], [-95.962457445035795, 76.44138092722244], [-97.121378953829463, 76.751077785947587], [-96.745122850312342, 77.161388658345132], [-94.684085862999439, 77.097878323058367]]], [[[-116.198586595507322, 77.645286770326194], [-116.335813361458349, 76.876961575010554], [-117.106050584768766, 76.530031846819114], [-118.040412157038119, 76.481171780087081], [-119.899317586885687, 76.053213406061971], [-121.499995077126471, 75.900018622532784], [-122.85492448615895, 76.116542873835684], [-122.854925293603188, 76.116542873835684], [-121.157535360328239, 76.864507554828336], [-119.103938971821023, 77.512219957174608], [-117.570130784965954, 77.498318996888102], [-116.198586595507322, 77.645286770326194]]], [[[-93.840003017943971, 77.51999726023449], [-94.295608283245244, 77.491342678528682], [-96.169654100310055, 77.55511139597688], [-96.436304490936109, 77.83462921824362], [-94.422577277386353, 77.820004787904978], [-93.720656297565867, 77.634331366680314], [-93.840003017943971, 77.51999726023449]]], [[[-110.186938035912945, 77.697014879050286], [-112.051191169058455, 77.409228827616843], [-113.534278937619035, 77.732206529441143], [-112.724586758253835, 78.051050116681935], [-111.264443325630822, 78.152956041161545], [-109.854451870547067, 77.996324774884812], [-110.186938035912945, 77.697014879050286]]], [[[-109.663145718202557, 78.601972561345676], [-110.88131425661885, 78.406919867659994], [-112.542091437615142, 78.407901719873493], [-112.525890876091566, 78.550554511215225], [-111.500010342233367, 78.849993598130538], [-110.96366065147599, 78.804440823065207], [-109.663145718202557, 78.601972561345676]]], [[[-95.830294969449312, 78.056941229963243], [-97.309842902397975, 77.85059723582178], [-98.124289313533964, 78.082856960757567], [-98.55286780474664, 78.458105373845086], [-98.631984422585504, 78.871930243638374], [-97.337231411512604, 78.831984361476756], [-96.754398769908761, 78.765812689926989], [-95.559277920294562, 78.41831452098026], [-95.830294969449312, 78.056941229963243]]], [[[-100.060191820052111, 78.324754340315891], [-99.670939093813601, 77.907544664207393], [-101.303940192452984, 78.018984890444798], [-102.949808722733025, 78.343228664860206], [-105.176132778731514, 78.38033234324574], [-104.210429450277147, 78.677420152491777], [-105.419580451258511, 78.918335679836431], [-105.492289191493128, 79.301593939929177], [-103.529282396237917, 79.16534902619162], [-100.8251580472688, 78.80046173777869], [-100.060191820052111, 78.324754340315891]]], [[[-87.02, 79.66], [-85.81435, 79.3369], [-87.18756, 79.0393], [-89.03535, 78.28723], [-90.80436, 78.21533], [-92.87669, 78.34333], [-93.95116, 78.75099], [-93.93574, 79.11373], [-93.14524, 79.3801], [-94.974, 79.37248], [-96.07614, 79.70502], [-96.70972, 80.15777], [-96.01644, 80.60233], [-95.32345, 80.90729], [-94.29843, 80.97727], [-94.73542, 81.20646], [-92.40984, 81.25739], [-91.13289, 80.72345], [-89.45, 80.509322033898258], [-87.81, 80.32], [-87.02, 79.66]]], [[[-68.5, 83.106321516765732], [-65.82735, 83.02801], [-63.68, 82.9], [-61.85, 82.6286], [-61.89388, 82.36165], [-64.334, 81.92775], [-66.75342, 81.72527], [-67.65755, 81.50141], [-65.48031, 81.50657], [-67.84, 80.9], [-69.4697, 80.61683], [-71.18, 79.8], [-73.2428, 79.63415], [-73.88, 79.430162204802073], [-76.90773, 79.32309], [-75.52924, 79.19766], [-76.22046, 79.01907], [-75.39345, 78.52581], [-76.34354, 78.18296], [-77.88851, 77.89991], [-78.36269, 77.50859], [-79.75951, 77.20968], [-79.61965, 76.98336], [-77.91089, 77.022045], [-77.88911, 76.777955], [-80.56125, 76.17812], [-83.17439, 76.45403], [-86.11184, 76.29901], [-87.6, 76.42], [-89.49068, 76.47239], [-89.6161, 76.95213], [-87.76739, 77.17833], [-88.26, 77.9], [-87.65, 77.970222222222205], [-84.97634, 77.53873], [-86.34, 78.18], [-87.96192, 78.37181], [-87.15198, 78.75867], [-85.37868, 78.9969], [-85.09495, 79.34543], [-86.50734, 79.73624], [-86.93179, 80.25145], [-84.19844, 80.20836], [-83.408695652173819, 80.1], [-81.84823, 80.46442], [-84.1, 80.58], [-87.59895, 80.51627], [-89.36663, 80.85569], [-90.2, 81.26], [-91.36786, 81.5531], [-91.58702, 81.89429], [-90.1, 82.085], [-88.93227, 82.11751], [-86.97024, 82.27961], [-85.5, 82.652273458057024], [-84.260005, 82.6], [-83.18, 82.32], [-82.42, 82.86], [-81.1, 83.02], [-79.30664, 83.13056], [-76.25, 83.172058823529369], [-75.71878, 83.06404], [-72.83153, 83.23324], [-70.665765, 83.169780758382828], [-68.5, 83.106321516765732]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Switzerland\", \"name\": \"Switzerland\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[9.594226108446346, 47.525058091820256], [9.632931756232974, 47.347601223329974], [9.479969516649019, 47.102809963563367], [9.932448357796657, 46.920728054382948], [10.442701450246627, 46.893546250997424], [10.36337812667861, 46.483571275409851], [9.922836541390378, 46.314899400409182], [9.182881707403054, 46.440214748716976], [8.966305779667804, 46.036931871111186], [8.489952426801322, 46.005150865251672], [8.316629672894377, 46.163642483090847], [7.755992058959832, 45.824490057959302], [7.273850945676655, 45.776947740250769], [6.843592970414504, 45.991146552100595], [6.500099724970424, 46.429672756529428], [6.022609490593537, 46.272989813820466], [6.037388950229, 46.725778713561859], [6.768713820023605, 47.287708238303686], [6.736571079138058, 47.541801255882838], [7.192202182655505, 47.449765529971003], [7.466759067422228, 47.620581976911794], [8.31730146651415, 47.613579820336255], [8.522611932009765, 47.830827541691285], [9.594226108446346, 47.525058091820256]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Chile\", \"name\": \"Chile\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[-68.634010227583147, -52.636370458874353], [-68.633349999999879, -54.8695], [-67.56244, -54.87001], [-66.95992, -54.89681], [-67.291029999999878, -55.30124], [-68.148629999999841, -55.61183], [-68.639990810811796, -55.580017999086877], [-69.2321, -55.49906], [-69.95809, -55.19843], [-71.00568, -55.05383], [-72.2639, -54.49514], [-73.2852, -53.957519999999874], [-74.66253, -52.83749], [-73.8381, -53.04743], [-72.43418, -53.7154], [-71.10773, -54.07433], [-70.591779999999787, -53.61583], [-70.26748, -52.93123], [-69.345649999999878, -52.5183], [-68.634010227583147, -52.636370458874353]]], [[[-68.219913092711224, -21.49434661223183], [-67.828179897722634, -22.872918796482178], [-67.106673550063604, -22.735924574476392], [-66.985233934177629, -22.986348565362825], [-67.328442959244128, -24.025303236590908], [-68.417652960876111, -24.518554782816874], [-68.386001146097342, -26.185016371365229], [-68.594799770772667, -26.50690886811126], [-68.295541551370391, -26.899339694935787], [-69.001234910748266, -27.521213881136127], [-69.656130337183143, -28.459141127233686], [-70.013550381129861, -29.367922865518544], [-69.919008348251921, -30.336339206668306], [-70.535068935819439, -31.365010267870279], [-70.074399380153622, -33.09120981214803], [-69.814776984319209, -33.273886000299839], [-69.817309129501453, -34.193571465798279], [-70.388049485949082, -35.169687595359441], [-70.364769253201658, -36.005088799789931], [-71.121880662709771, -36.65812387466233], [-71.118625047475419, -37.576827487947192], [-70.814664272734703, -38.552995293940732], [-71.413516608349042, -38.916022230791107], [-71.680761277946445, -39.808164157878061], [-71.915734015577542, -40.832339369470716], [-71.746803758415453, -42.051386407235988], [-72.148898078078517, -42.254888197601375], [-71.915423956983901, -43.408564548517404], [-71.464056159130493, -43.787611179378324], [-71.793622606071935, -44.207172133156099], [-71.329800788036195, -44.407521661151677], [-71.222778896759721, -44.784242852559409], [-71.659315558545316, -44.973688653341434], [-71.552009446891233, -45.560732924177117], [-71.917258470330196, -46.884838148791786], [-72.44735531278026, -47.738532810253517], [-72.331160854771937, -48.244238376661819], [-72.648247443314929, -48.878618259476774], [-73.415435757120022, -49.318436374712952], [-73.328050910114456, -50.378785088909865], [-72.975746832964617, -50.741450290734299], [-72.309973517532342, -50.677009779666342], [-72.329403856074023, -51.425956312872394], [-71.914803839796321, -52.009022305865912], [-69.498362189396076, -52.142760912637236], [-68.571545376241332, -52.299443855346247], [-69.461284349226617, -52.291950772663924], [-69.94277950710611, -52.537930590373243], [-70.8451016913545, -52.899200528525711], [-71.006332160105217, -53.833252042201345], [-71.429794684520928, -53.856454760300373], [-72.557942877884855, -53.531410001184447], [-73.702756720662862, -52.835069268607249], [-73.702756720662862, -52.835070076051487], [-74.946763475225154, -52.262753588419017], [-75.260026007778507, -51.62935475037321], [-74.976632453089806, -51.043395684615675], [-75.47975419788348, -50.378371677451547], [-75.608015102831942, -48.673772881871784], [-75.182769741502128, -47.711919447623153], [-74.126580980104677, -46.939253431995084], [-75.644395311165439, -46.647643324572016], [-74.69215369332305, -45.76397633238097], [-74.351709357384252, -44.10304412208788], [-73.240356004515192, -44.454960625995611], [-72.717803921179765, -42.383355808278985], [-73.388899909138232, -42.117532240569567], [-73.701335618774834, -43.365776462579738], [-74.33194312203257, -43.224958184584395], [-74.017957119427152, -41.794812920906828], [-73.677099372029943, -39.942212823243111], [-73.217592536090663, -39.258688653318508], [-73.505559455037044, -38.282882582351064], [-73.588060879191076, -37.156284681956016], [-73.166717088499283, -37.123780206044351], [-72.553136969681717, -35.508840020491022], [-71.861732143832555, -33.909092706031522], [-71.438450486929895, -32.418899428030819], [-71.668720669222424, -30.920644626592516], [-71.370082567007714, -30.095682061484997], [-71.48989437527645, -28.861442152625909], [-70.905123867461569, -27.640379734001193], [-70.724953986275963, -25.705924167587209], [-70.403965827095035, -23.628996677344542], [-70.091245897080668, -21.393319187101223], [-70.164419725205974, -19.756468194256183], [-70.372572394477714, -18.347975355708879], [-69.858443569605797, -18.092693780187027], [-69.590423753523979, -17.580011895419286], [-69.100246955019401, -18.260125420812653], [-68.966818406841824, -18.981683444904089], [-68.442225104430918, -19.405068454671419], [-68.757167121033703, -20.37265797290447], [-68.219913092711224, -21.49434661223183]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"China\", \"name\": \"China\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[110.339187860151526, 18.678395087147603], [109.475209588663702, 18.19770091396861], [108.655207961056135, 18.507681993071397], [108.626217482540426, 19.367887885001974], [109.119055617308007, 19.821038519769385], [110.211598748822837, 20.101253973872073], [110.786550734502228, 20.077534491450077], [111.01005130416462, 19.695929877190732], [110.570646600386794, 19.255879218009305], [110.339187860151526, 18.678395087147603]]], [[[127.657407261262378, 49.760270494172929], [129.397817824420429, 49.440600084015429], [130.58229332898236, 48.729687404976112], [130.987281528853828, 47.790132351261391], [132.506671991099495, 47.788969631534876], [133.373595819228001, 48.183441677434914], [135.026311476786702, 48.478229885443902], [134.500813836810607, 47.578439846377833], [134.112362095272601, 47.212467352886719], [133.76964399631288, 46.116926988299056], [133.097126906466428, 45.14406647397216], [131.883454217659562, 45.32116160743643], [131.025212030156069, 44.967953192721573], [131.288555129115537, 44.111519680348252], [131.144687941614848, 42.929989732426932], [130.633866408409801, 42.903014634770543], [130.640015903852429, 42.39500946712527], [129.994267205933227, 42.985386867843793], [129.596668735879462, 42.424981797854592], [128.05221520397231, 41.994284572917984], [128.208433058790717, 41.466771552082534], [127.343782993683021, 41.503151760415953], [126.869083286649854, 41.816569322266155], [126.18204511932943, 41.107336127276362], [125.079941847840587, 40.569823716792449], [124.265624627785314, 39.928493353834135], [122.86757042856101, 39.637787583976255], [122.131387974130917, 39.170451768544623], [121.054554478032856, 38.89747101496291], [121.585994907722466, 39.360853583324136], [121.376757033372641, 39.750261338859524], [122.168595005381007, 40.422442531896046], [121.640358514493528, 40.946389878903304], [120.768628778161954, 40.593388169917596], [119.639602085449056, 39.898055935214209], [119.023463983233015, 39.252333075511096], [118.042748651197897, 39.204273993479674], [117.532702264477052, 38.73763580988409], [118.05969852098967, 38.061475531561051], [118.878149855628351, 37.897325344385898], [118.911636183753501, 37.448463853498723], [119.702802362142037, 37.156388658185072], [120.823457472823648, 37.870427761377968], [121.711258579597938, 37.481123358707165], [122.357937453298462, 37.454484157860684], [122.519994744965814, 36.930614325501828], [121.104163853033029, 36.651329047180432], [120.63700890511457, 36.111439520811125], [119.66456180224607, 35.609790554337728], [119.151208123858567, 34.909859117160458], [120.227524855633717, 34.360331936168613], [120.620369093916565, 33.37672272392512], [121.229014113450219, 32.460318711877186], [121.908145786630044, 31.692174384074683], [121.891919386890336, 30.949351508095098], [121.264257440273298, 30.676267401648712], [121.503519321784722, 30.14291494396425], [122.092113885589086, 29.832520453403156], [121.93842817595305, 29.018022365834803], [121.684438511238469, 28.225512600206677], [121.125661248866436, 28.135673122667178], [120.395473260582307, 27.053206895449385], [119.585496860839555, 25.740780544532605], [118.656871372554519, 24.547390855400234], [117.281606479970833, 23.624501451099714], [115.890735304835118, 22.782873236578094], [114.763827345846209, 22.668074042241663], [114.152546828265656, 22.223760077396204], [113.806779819800752, 22.548339748621423], [113.241077915501592, 22.051367499270462], [111.843592157032447, 21.550493679281512], [110.78546552942413, 21.39714386645533], [110.444039341271662, 20.34103261970639], [109.88986128137357, 20.282457383703441], [109.627655063924635, 21.008227037026725], [109.864488153118316, 21.395050970947516], [108.522812941524421, 21.715212307211821], [108.050180291782979, 21.552379869060101], [107.043420037872636, 21.8118989120299], [106.567273390735352, 22.21820486092474], [106.725403273548466, 22.794267889898375], [105.811247186305209, 22.976892401617899], [105.329209425886631, 23.352063300056976], [104.476858351664475, 22.819150092046918], [103.504514601660503, 22.703756618739217], [102.706992222100155, 22.708795070887696], [102.170435825613552, 22.464753119389336], [101.652017856861576, 22.318198757409554], [101.803119744882906, 21.174366766845051], [101.27002566936001, 21.201651923095167], [101.180005324307558, 21.436572984294052], [101.150032993578236, 21.849984442629015], [100.416537713627349, 21.558839423096654], [99.983489211021549, 21.742936713136451], [99.240898878987196, 22.118314317304559], [99.53199222208741, 22.949038804612591], [98.898749220782804, 23.142722072842581], [98.66026248575578, 24.063286037690002], [97.604719679762027, 23.897404690033049], [97.724609002679131, 25.083637193293036], [98.671838006589212, 25.91870250091349], [98.712093947344556, 26.743535874940243], [98.682690057370507, 27.508812160750658], [98.246230910233351, 27.747221381129172], [97.91198774616943, 28.335945136014367], [97.327113885490007, 28.261582749946339], [96.248833449287829, 28.411030992134467], [96.586590610747521, 28.830979519154361], [96.117678664131006, 29.452802028922513], [95.404802280664626, 29.031716620392157], [94.565990431702929, 29.27743805593996], [93.413347609432662, 28.640629380807233], [92.503118931043616, 27.896876329046442], [91.696656528696693, 27.771741848251615], [91.258853794319876, 28.040614325466343], [90.730513950567797, 28.064953925075738], [90.015828891971182, 28.296438503527177], [89.475810174521158, 28.042758897406365], [88.814248488320573, 27.299315904239389], [88.730325962278528, 28.086864732367552], [88.120440708369941, 27.876541652939572], [86.954517043000635, 27.974261786403524], [85.823319940131526, 28.203575954698742], [85.011638218123053, 28.642773952747369], [84.23457970575015, 28.839893703724691], [83.89899295444674, 29.320226141877633], [83.337115106137176, 29.463731594352193], [82.327512648450877, 30.115268052688204], [81.525804477874786, 30.422716986608659], [81.111256138029276, 30.183480943313402], [79.721366815107118, 30.882714748654728], [78.738894484374001, 31.515906073527045], [78.458446486326025, 32.61816437431272], [79.176128777995544, 32.483779812137747], [79.208891636068543, 32.994394639613738], [78.811086460285722, 33.506198025032397], [78.912268914713209, 34.321936346975768], [77.83745079947461, 35.494009507787794], [76.192848341785705, 35.89840342868785], [75.896897414050173, 36.666806138651872], [75.158027785140987, 37.133030910789152], [74.980002475895404, 37.419990139305888], [74.829985792952144, 37.990007025701445], [74.864815708316783, 38.378846340481587], [74.25751427602269, 38.606506862943476], [73.928852166646394, 38.505815334622717], [73.675379266254836, 39.431236884105566], [73.960013055318427, 39.660008449861714], [73.822243686828315, 39.893973497063136], [74.776862420556043, 40.366425279291619], [75.467827996730719, 40.56207225194867], [76.526368035797432, 40.427946071935132], [76.90448449087711, 41.066485907549648], [78.187196893226044, 41.185315863604799], [78.543660923175253, 41.582242540038713], [80.119430373051401, 42.12394074153822], [80.259990268885318, 42.34999929459908], [80.180150180994374, 42.920067857426844], [80.866206496101213, 43.180362046881008], [79.966106398441426, 44.917516994804622], [81.947070753918084, 45.317027492853143], [82.458925815769035, 45.539649563166499], [83.180483839860543, 47.330031236350735], [85.164290399113213, 47.000955715516099], [85.720483839870667, 47.452969468773077], [85.76823286330837, 48.455750637396896], [86.59877648310335, 48.549181626980605], [87.359970330762692, 49.214980780629148], [87.751264276076668, 49.297197984405464], [88.013832228551678, 48.599462795600594], [88.854297723346747, 48.069081732773007], [90.280825636763893, 47.693549099307901], [90.970809360724957, 46.88814606382293], [90.585768263718307, 45.719716091487491], [90.945539585334316, 45.286073309910243], [92.133890822318222, 45.115075995456429], [93.480733677141316, 44.97547211362], [94.688928664125356, 44.352331854828456], [95.306875441471504, 44.241330878265458], [95.762454868556688, 43.319449164394619], [96.349395786527808, 42.725635280928643], [97.451757440177971, 42.74888967546007], [99.515817498779995, 42.524691473961688], [100.845865513108279, 42.663804429691417], [101.833040399179936, 42.51487295182627], [103.312278273534787, 41.907468166667613], [104.522281935649005, 41.90834666601662], [104.964993931093431, 41.597409572916334], [106.129315627061658, 42.134327704428891], [107.744772576937976, 42.481515814781908], [109.243595819131428, 42.519446316084149], [110.412103306115299, 42.871233628911014], [111.129682244920218, 43.406834011400171], [111.82958784388137, 43.743118394539486], [111.667737257943202, 44.073175767587706], [111.348376906379428, 44.457441718110047], [111.87330610560025, 45.102079372735112], [112.436062453258842, 45.01164561622425], [113.463906691544196, 44.808893134127111], [114.46033165899604, 45.339816799493875], [115.985096470200133, 45.727235012386004], [116.717868280098855, 46.38820241961524], [117.421701287914246, 46.67273285581421], [118.874325799638711, 46.805412095723646], [119.663269891438745, 46.692679958678944], [119.772823927897562, 47.048058783550132], [118.866574334794947, 47.747060044946195], [118.064142694166719, 48.06673045510373], [117.295507440257438, 47.697709052107385], [116.308952671373234, 47.853410142602812], [115.742837355615734, 47.726544501326273], [115.485282017073018, 48.135382595403442], [116.191802199367601, 49.134598090199056], [116.67880089728618, 49.888531399121398], [117.879244419426371, 49.510983384796944], [119.288460728025839, 50.142882798862033], [119.279365675942358, 50.582907619827282], [120.182049595216924, 51.64356639261802], [120.738191359541972, 51.964115302124547], [120.725789015791975, 52.516226304730814], [120.177088657716865, 52.753886216841195], [121.003084751470226, 53.251401068731226], [122.245747918792858, 53.431725979213681], [123.571506789240843, 53.458804429734627], [125.068211297710434, 53.161044826868832], [125.946348911646169, 52.792798570356936], [126.564399041856959, 51.784255479532689], [126.939156528837657, 51.353894151405896], [127.287455682484904, 50.739797268265434], [127.657407261262378, 49.760270494172929]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Ivory Coast\", \"name\": \"Côte d'Ivoire\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-2.856125047202397, 4.994475816259508], [-3.311084357100071, 4.984295559098014], [-4.008819545904941, 5.179813340674314], [-4.64991736491791, 5.168263658057084], [-5.834496222344525, 4.993700669775135], [-6.528769090185845, 4.705087795425015], [-7.518941209330434, 4.338288479017307], [-7.712159389669749, 4.364565944837721], [-7.63536821128403, 5.188159084489455], [-7.53971513511176, 5.313345241716517], [-7.570152553731686, 5.707352199725903], [-7.993692592795879, 6.126189683451541], [-8.311347622094017, 6.193033148621081], [-8.602880214868618, 6.467564195171659], [-8.385451626000572, 6.911800645368742], [-8.485445522485348, 7.395207831243068], [-8.439298468448696, 7.686042792181736], [-8.280703497744936, 7.687179673692156], [-8.221792364932197, 8.123328762235571], [-8.299048631208562, 8.316443589710302], [-8.203498907900878, 8.455453192575446], [-7.832100389019186, 8.575704250518625], [-8.079113735374348, 9.376223863152033], [-8.309616461612249, 9.789531968622439], [-8.22933712404682, 10.129020290563897], [-8.029943610048617, 10.206534939001711], [-7.89958980959237, 10.297382106970824], [-7.622759161804808, 10.147236232946792], [-6.850506557635057, 10.138993841996237], [-6.666460944027547, 10.430810655148447], [-6.493965013037267, 10.411302801958268], [-6.205222947606429, 10.524060777219132], [-6.050452032892266, 10.096360785355442], [-5.816926235365286, 10.222554633012191], [-5.404341599946973, 10.370736802609144], [-4.954653286143098, 10.152713934769732], [-4.779883592131966, 9.821984768101741], [-4.330246954760383, 9.610834865757139], [-3.980449184576684, 9.862344061721698], [-3.511898972986272, 9.900326239456216], [-2.827496303712706, 9.642460842319775], [-2.56218950032624, 8.219627793811481], [-2.983584967450326, 7.379704901555511], [-3.244370083011261, 6.2504715031135], [-2.810701463217839, 5.389051215024109], [-2.856125047202397, 4.994475816259508]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Cameroon\", \"name\": \"Cameroon\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[13.07582238124675, 2.267097072759014], [12.951333855855605, 2.321615708826939], [12.359380323952218, 2.19281220133945], [11.751665480199787, 2.326757513839993], [11.276449008843711, 2.261050930180871], [9.649158155972627, 2.283866075037735], [9.795195753629455, 3.073404445809117], [9.404366896205998, 3.734526882335202], [8.948115675501068, 3.904128933117135], [8.744923943729416, 4.352215277519959], [8.488815545290889, 4.495617377129917], [8.500287713259693, 4.771982937026847], [8.757532993208626, 5.47966583904791], [9.233162876023043, 6.444490668153334], [9.522705926154398, 6.453482367372116], [10.118276808318255, 7.038769639509879], [10.497375115611417, 7.055357774275562], [11.058787876030349, 6.644426784690593], [11.745774366918509, 6.981382961449753], [11.839308709366801, 7.397042344589434], [12.063946160539556, 7.799808457872301], [12.218872104550597, 8.305824082874322], [12.753671502339214, 8.717762762888993], [12.955467970438971, 9.417771714714702], [13.1675997249971, 9.64062632897341], [13.308676385153914, 10.160362046748926], [13.572949659894558, 10.798565985553564], [14.415378859116682, 11.572368882692071], [14.468192172918974, 11.90475169519341], [14.57717776862253, 12.085360826053501], [14.181336297266792, 12.483656927943112], [14.213530714584634, 12.802035427293344], [14.495787387762842, 12.859396267137326], [14.893385857816522, 12.219047756392582], [14.960151808337598, 11.555574042197222], [14.923564894274955, 10.891325181517471], [15.467872755605269, 9.982336737503429], [14.909353875394713, 9.99212942142273], [14.627200555081057, 9.920919297724536], [14.171466098699025, 10.021378282099928], [13.954218377344002, 9.549494940626685], [14.544466586981766, 8.965861314322266], [14.979995558337688, 8.796104234243471], [15.120865512765331, 8.382150173369423], [15.436091749745765, 7.692812404811971], [15.279460483469107, 7.421924546737968], [14.776545444404572, 6.408498033062044], [14.536560092841111, 6.22695872642069], [14.459407179429345, 5.451760565610299], [14.558935988023501, 5.03059764243153], [14.478372430080466, 4.732605495620446], [14.950953403389658, 4.21038930909492], [15.036219516671249, 3.851367295747123], [15.405395948964379, 3.335300604664339], [15.862732374747479, 3.013537298998982], [15.907380812247649, 2.557389431158612], [16.01285241055535, 2.267639675298084], [15.940918816805061, 1.727672634280295], [15.14634199388524, 1.964014797367184], [14.337812534246577, 2.22787466064949], [13.07582238124675, 2.267097072759014]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Democratic Republic of the Congo\", \"name\": \"Dem. Rep. Congo\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[30.833859897593801, 3.50916596111034], [30.773346795380036, 2.339883327642127], [31.174149204235807, 2.204465236821263], [30.852670118948048, 1.849396470543809], [30.468507521290292, 1.58380544677972], [30.086153598762703, 1.062312730306288], [29.875778842902488, 0.597379868976304], [29.819503208136634, -0.205310153813372], [29.587837762172164, -0.58740569417948], [29.579466180140876, -1.341313164885626], [29.29188683443661, -1.620055840667987], [29.254834832483336, -2.215109958508911], [29.117478875451546, -2.292211195488384], [29.02492638521678, -2.839257907730157], [29.276383904749046, -3.293907159034063], [29.339997592900342, -4.499983412294092], [29.519986606572925, -5.419978936386313], [29.41999271008816, -5.939998874539432], [29.620032179490003, -6.520015150583424], [30.199996779101692, -7.079980970898161], [30.740015496551781, -8.340007419470913], [30.34608605319081, -8.238256524288216], [29.002912225060467, -8.40703175215347], [28.734866570762495, -8.526559340044576], [28.449871046672818, -9.164918308146083], [28.673681674928922, -9.605924981324931], [28.496069777141763, -10.789883721564044], [28.372253045370421, -11.793646742401389], [28.642417433392346, -11.971568698782312], [29.341547885869087, -12.36074391037241], [29.616001417771223, -12.178894545137307], [29.699613885219485, -13.257226657771827], [28.934285922976834, -13.248958428605132], [28.52356163912102, -12.698604424696679], [28.15510867687998, -12.272480564017894], [27.38879886242378, -12.132747491100663], [27.164419793412456, -11.608748467661071], [26.55308759939961, -11.924439792532125], [25.752309604604726, -11.784965101776356], [25.418118116973197, -11.330935967659958], [24.783169793402948, -11.238693536018962], [24.314516228947948, -11.262826429899269], [24.257155389103982, -10.951992689663655], [23.912215203555714, -10.926826267137512], [23.456790805767433, -10.867863457892481], [22.837345411884733, -11.017621758674329], [22.402798292742371, -10.99307545333569], [22.155268182064304, -11.084801120653768], [22.208753289486388, -9.894796237836507], [21.87518191904234, -9.523707777548564], [21.801801385187897, -8.908706556842978], [21.949130893652036, -8.305900974158275], [21.746455926203303, -7.920084730667147], [21.728110792739695, -7.2908724910813], [20.514748162526498, -7.299605808138629], [20.601822950938292, -6.93931772219968], [20.091621534920645, -6.943090101756993], [20.037723016040214, -7.116361179231644], [19.417502475673157, -7.155428562044297], [19.166613396896107, -7.738183688999753], [19.016751743249664, -7.988245944860132], [18.464175652752683, -7.847014255406442], [18.134221632569048, -7.98767750410492], [17.472970004962232, -8.068551120641699], [17.089995965247166, -7.545688978712525], [16.860190870845198, -7.222297865429984], [16.573179965896141, -6.622644545115087], [16.326528354567042, -5.877470391466267], [13.375597364971892, -5.864241224799548], [13.02486941900696, -5.984388929878157], [12.735171339578695, -5.965682061388497], [12.322431674863507, -6.100092461779658], [12.182336866920249, -5.789930515163837], [12.436688266660866, -5.684303887559245], [12.468004184629734, -5.248361504745003], [12.631611769265788, -4.991271254092935], [12.995517205465173, -4.781103203961883], [13.258240187237044, -4.882957452009165], [13.600234816144676, -4.500138441590969], [14.144956088933295, -4.510008640158715], [14.209034864975219, -4.793092136253597], [14.582603794013179, -4.970238946150139], [15.170991652088441, -4.3435071753143], [15.753540073314749, -3.855164890156096], [16.006289503654298, -3.535132744972528], [15.972803175529149, -2.712392266453612], [16.407091912510051, -1.740927015798682], [16.86530683764212, -1.225816338713287], [17.523716261472853, -0.743830254726987], [17.638644646889983, -0.424831638189246], [17.663552687254676, -0.058083998213817], [17.826540154703245, 0.288923244626105], [17.774191928791563, 0.855658677571085], [17.89883548347958, 1.741831976728278], [18.09427575040743, 2.365721543788055], [18.39379235197114, 2.90044342692822], [18.453065219809925, 3.504385891123348], [18.542982211997778, 4.201785183118317], [18.932312452884755, 4.709506130385973], [19.467783644293146, 5.031527818212779], [20.290679152108932, 4.691677761245287], [20.927591180106273, 4.322785549329736], [21.659122755630019, 4.224341945813719], [22.405123732195531, 4.02916006104732], [22.704123569436284, 4.633050848810156], [22.841479526468103, 4.710126247573483], [23.297213982850135, 4.609693101414221], [24.41053104014625, 5.108784084489129], [24.805028924262409, 4.897246608902349], [25.128833449003274, 4.927244777847789], [25.278798455514302, 5.170408229997191], [25.650455356557465, 5.256087754737123], [26.402760857862535, 5.150874538590869], [27.044065382604703, 5.127852688004835], [27.374226108517483, 5.233944403500059], [27.979977247842807, 4.408413397637373], [28.428993768026906, 4.287154649264493], [28.696677687298795, 4.455077215996936], [29.159078403446497, 4.38926727947323], [29.715995314256013, 4.600804755060024], [29.953500197069467, 4.173699042167683], [30.833859897593801, 3.50916596111034]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Republic of Congo\", \"name\": \"Congo\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[12.995517205465173, -4.781103203961883], [12.620759718484491, -4.438023369976135], [12.318607618873923, -4.606230157086187], [11.914963006242086, -5.037986748884789], [11.093772820691923, -3.978826592630546], [11.855121697648114, -3.42687061932105], [11.478038771214299, -2.765618991714241], [11.820963575903189, -2.514161472181982], [12.495702752338159, -2.391688327650242], [12.575284458067639, -1.948511244315134], [13.109618767965626, -2.428740329603513], [13.992407260807706, -2.470804945489099], [14.299210239324564, -1.998275648612213], [14.425455763413593, -1.333406670744971], [14.316418491277741, -0.552627455247048], [13.843320753645653, 0.038757635901149], [14.276265903386953, 1.196929836426619], [14.026668735417214, 1.395677395021153], [13.282631463278816, 1.31418366129688], [13.003113641012074, 1.830896307783319], [13.07582238124675, 2.267097072759014], [14.337812534246577, 2.22787466064949], [15.14634199388524, 1.964014797367184], [15.940918816805061, 1.727672634280295], [16.01285241055535, 2.267639675298084], [16.537058139724135, 3.198254706226278], [17.133042433346297, 3.728196519379451], [17.809900343505259, 3.560196437998569], [18.453065219809925, 3.504385891123348], [18.39379235197114, 2.90044342692822], [18.09427575040743, 2.365721543788055], [17.89883548347958, 1.741831976728278], [17.774191928791563, 0.855658677571085], [17.826540154703245, 0.288923244626105], [17.663552687254676, -0.058083998213817], [17.638644646889983, -0.424831638189246], [17.523716261472853, -0.743830254726987], [16.86530683764212, -1.225816338713287], [16.407091912510051, -1.740927015798682], [15.972803175529149, -2.712392266453612], [16.006289503654298, -3.535132744972528], [15.753540073314749, -3.855164890156096], [15.170991652088441, -4.3435071753143], [14.582603794013179, -4.970238946150139], [14.209034864975219, -4.793092136253597], [14.144956088933295, -4.510008640158715], [13.600234816144676, -4.500138441590969], [13.258240187237044, -4.882957452009165], [12.995517205465173, -4.781103203961883]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Colombia\", \"name\": \"Colombia\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-75.373223232713841, -0.15203175212045], [-75.801465827116587, 0.084801337073202], [-76.292314419240938, 0.416047268064119], [-76.576379767549383, 0.256935533037435], [-77.424984300430367, 0.395686753741117], [-77.668612840470416, 0.825893052570961], [-77.855061408179509, 0.809925034992773], [-78.855258755188686, 1.380923773601822], [-78.990935228171026, 1.691369940595251], [-78.617831387023699, 1.766404120283056], [-78.662118089497838, 2.267355454920476], [-78.427610439757302, 2.629555568854215], [-77.931542527971473, 2.696605739752925], [-77.510431281224996, 3.325016994638246], [-77.127689785455246, 3.849636135265356], [-77.496271938776999, 4.087606105969427], [-77.307601284479375, 4.667984117039452], [-77.533220587865713, 5.582811997902496], [-77.318815070286718, 5.845354112161359], [-77.476660732722266, 6.691116441266301], [-77.881571417945239, 7.223771267114783], [-77.75341386586139, 7.709839789252141], [-77.431107957656977, 7.638061224798733], [-77.242566494440069, 7.935278225125442], [-77.474722866511314, 8.524286200388216], [-77.353360765273848, 8.670504665558068], [-76.836673957003541, 8.638749497914715], [-76.086383836557843, 9.336820583529486], [-75.674600185840035, 9.443248195834597], [-75.664704149056149, 9.774003200718736], [-75.480425991503338, 10.618990383339305], [-74.906895107711975, 11.08304474532032], [-74.276752692344871, 11.102035834187586], [-74.197222663047683, 11.310472723836865], [-73.414763963500278, 11.227015285685479], [-72.62783525255962, 11.731971543825519], [-72.238194953078903, 11.955549628136325], [-71.754090135368628, 12.437303168177305], [-71.399822353791691, 12.376040757695289], [-71.137461107045866, 12.112981879113503], [-71.331583624950284, 11.776284084515805], [-71.973921678338272, 11.608671576377116], [-72.227575446242923, 11.108702093953237], [-72.614657762325194, 10.821975409381777], [-72.905286017534692, 10.45034434655477], [-73.027604132769554, 9.736770331252441], [-73.304951544880026, 9.151999823437604], [-72.788729824500379, 9.085027167187331], [-72.660494757768092, 8.62528778730268], [-72.439862230097944, 8.405275376820027], [-72.360900641555958, 8.002638454617893], [-72.479678921178831, 7.632506008327352], [-72.444487270788059, 7.42378489830048], [-72.19835242378187, 7.340430813013682], [-71.960175747348629, 6.991614895043538], [-70.674233567981503, 7.087784735538717], [-70.093312954372408, 6.960376491723109], [-69.389479946557103, 6.099860541198835], [-68.985318569602327, 6.206804917826856], [-68.265052456318216, 6.153268133972473], [-67.695087246355001, 6.267318020040645], [-67.34143958196556, 6.095468044454021], [-67.521531948502741, 5.556870428891968], [-67.744696621355203, 5.221128648291667], [-67.823012254493534, 4.503937282728898], [-67.621835903581271, 3.839481716319994], [-67.33756384954367, 3.542342230641721], [-67.303173183853417, 3.31845408773718], [-67.809938117123693, 2.820655015469569], [-67.447092047786299, 2.600280869960869], [-67.181294318293041, 2.250638129074062], [-66.876325853122566, 1.253360500489336], [-67.065048183852483, 1.130112209473225], [-67.25999752467358, 1.719998684084956], [-67.537810024674684, 2.037162787276329], [-67.868565029558823, 1.692455145673392], [-69.816973232691609, 1.714805202639624], [-69.804596727157701, 1.089081122233466], [-69.218637661400166, 0.985676581217433], [-69.252434048119042, 0.602650865070075], [-69.452396002872447, 0.706158758950693], [-70.015565761989293, 0.541414292804205], [-70.02065589057004, -0.185156345219539], [-69.577065395776586, -0.549991957200163], [-69.420485805932216, -1.122618503426409], [-69.444101935489599, -1.556287123219817], [-69.893635219996611, -4.298186944194326], [-70.394043952094975, -3.766591485207825], [-70.692682054309699, -3.742872002785858], [-70.047708502874841, -2.725156345229699], [-70.813475714791949, -2.256864515800742], [-71.413645799429773, -2.342802422702128], [-71.774760708285385, -2.169789727388937], [-72.325786505813639, -2.434218031426453], [-73.070392218707212, -2.308954359550952], [-73.659503546834586, -1.260491224781134], [-74.122395189089048, -1.002832533373848], [-74.441600511355958, -0.530820000819887], [-75.106624518520064, -0.05720549886486], [-75.373223232713841, -0.15203175212045]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Costa Rica\", \"name\": \"Costa Rica\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-82.965783047197348, 8.225027980985983], [-83.508437262694287, 8.446926581247281], [-83.711473965169063, 8.656836249216864], [-83.596313035806631, 8.830443223501417], [-83.632641567707822, 9.051385809765319], [-83.909885626953724, 9.290802720573579], [-84.303401658856345, 9.487354030795712], [-84.64764421256865, 9.615537421095707], [-84.713350796227743, 9.908051866083849], [-84.975660366541319, 10.086723130733004], [-84.911374884770211, 9.795991522658921], [-85.110923428065291, 9.557039699741308], [-85.339488288092255, 9.834542141148658], [-85.660786505866966, 9.93334747969072], [-85.797444831062819, 10.134885565629032], [-85.791708747078417, 10.439337266476612], [-85.65931372754666, 10.754330959511718], [-85.941725430021748, 10.895278428587799], [-85.712540452807289, 11.088444932494822], [-85.561851976244171, 11.217119248901593], [-84.903003302738924, 10.952303371621895], [-84.673069017256239, 11.082657172078139], [-84.355930752281026, 10.999225572142901], [-84.190178595704822, 10.793450018756671], [-83.895054490885926, 10.726839097532444], [-83.655611741861563, 10.938764146361418], [-83.402319708982944, 10.39543813724465], [-83.015676642575158, 9.992982082555553], [-82.546196255203469, 9.566134751824674], [-82.932890998043561, 9.476812038608172], [-82.927154914059145, 9.074330145702914], [-82.719183112300513, 8.925708726431493], [-82.868657192704759, 8.807266343618521], [-82.829770677405151, 8.626295477732368], [-82.9131764391242, 8.423517157419068], [-82.965783047197348, 8.225027980985983]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Cuba\", \"name\": \"Cuba\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-82.268151211257035, 23.188610744717703], [-81.404457160146819, 23.117271429938775], [-80.61876868358118, 23.105980129482994], [-79.679523688460222, 22.765303249598823], [-79.281485968732071, 22.399201565027049], [-78.347434455056472, 22.512166246017085], [-77.993295864560253, 22.277193508385928], [-77.146422492161037, 21.657851467367831], [-76.523824835908528, 21.20681956632437], [-76.194620123993175, 21.220565497314006], [-75.598222418912655, 21.01662445727413], [-75.671060350228032, 20.735091254147999], [-74.933896043584483, 20.693905137611381], [-74.178024868451246, 20.284627793859737], [-74.296648118777242, 20.050378526280678], [-74.961594611292924, 19.923435370355687], [-75.634680141894577, 19.873774318923193], [-76.323656175425981, 19.952890936762056], [-77.755480923153044, 19.855480861891873], [-77.085108405246729, 20.413353786698789], [-77.492654588516601, 20.673105373613886], [-78.137292243141573, 20.739948838783427], [-78.482826707661161, 21.028613389565848], [-78.719866502583997, 21.598113511638431], [-79.284999966127913, 21.559175319906497], [-80.217475348618635, 21.827324327069032], [-80.517534552721401, 22.037078965741756], [-81.820943366203167, 22.192056586185068], [-82.169991828118611, 22.387109279870746], [-81.79500179719264, 22.636964830001951], [-82.775897996740838, 22.688150336187057], [-83.494458787759328, 22.168517971276124], [-83.908800421875611, 22.154565334557329], [-84.052150845053248, 21.910575059491251], [-84.547030198896351, 21.801227728761639], [-84.974911058273079, 21.896028143801082], [-84.44706214062775, 22.204949856041903], [-84.23035702181177, 22.56575470630376], [-83.778239915690165, 22.78811839445569], [-83.267547573565736, 22.983041897060641], [-82.510436164057495, 23.078746649665181], [-82.268151211257035, 23.188610744717703]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Northern Cyprus\", \"name\": \"N. Cyprus\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[32.731780226377445, 35.14002594658843], [32.802473585752743, 35.145503648411363], [32.946960890440799, 35.38670339613369], [33.667227003724939, 35.373215847305509], [34.576473829900458, 35.671595567358786], [33.900804477684197, 35.245755927057608], [33.973616570783456, 35.058506374647997], [33.866439650210104, 35.093594672174177], [33.675391880027057, 35.017862860650446], [33.525685255677494, 35.038688462864066], [33.475817498515845, 35.000344550103499], [33.45592207208346, 35.101423651666401], [33.383833449036295, 35.162711900364563], [33.190977003723042, 35.173124701471373], [32.919572381326127, 35.087832749973636], [32.731780226377445, 35.14002594658843]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Cyprus\", \"name\": \"Cyprus\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[33.973616570783456, 35.058506374647997], [34.004880812320032, 34.978097846001852], [32.97982710137844, 34.571869411755436], [32.490296258277532, 34.701654771456468], [32.256667107885953, 35.103232326796622], [32.731780226377445, 35.14002594658843], [32.919572381326127, 35.087832749973636], [33.190977003723042, 35.173124701471373], [33.383833449036295, 35.162711900364563], [33.45592207208346, 35.101423651666401], [33.475817498515845, 35.000344550103499], [33.525685255677494, 35.038688462864066], [33.675391880027057, 35.017862860650446], [33.866439650210104, 35.093594672174177], [33.973616570783456, 35.058506374647997]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Czech Republic\", \"name\": \"Czech Rep.\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[16.960288120194573, 48.596982326850593], [16.49928266771877, 48.785808010445095], [16.029647251050218, 48.733899034207916], [15.253415561593979, 49.039074205107575], [14.901447381254055, 48.964401760445817], [14.33889773932472, 48.555305284207193], [13.595945672264433, 48.877171942737135], [13.031328973043427, 49.307068182973232], [12.52102420416119, 49.54741526956272], [12.415190870827441, 49.96912079528056], [12.240111118222556, 50.266337795607271], [12.96683678554319, 50.484076443069071], [13.338131951560282, 50.733234361364346], [14.05622765468817, 50.926917629594286], [14.307013380600633, 51.117267767941399], [14.570718214586062, 51.002339382524262], [15.016995883858666, 51.106674099321566], [15.490972120839725, 50.7847299261432], [16.238626743238566, 50.697732652379827], [16.176253289462263, 50.4226073268579], [16.719475945714429, 50.215746568393527], [16.868769158605655, 50.473973700556016], [17.554567091551117, 50.36214590107641], [17.649445021238986, 50.049038397819942], [18.392913852622168, 49.988628648470737], [18.85314415861361, 49.496229763377634], [18.554971144289478, 49.495015367218777], [18.399993523846174, 49.315000515330034], [18.170498488037961, 49.271514797556421], [18.104972771891848, 49.043983466175298], [17.913511590250462, 48.996492824899072], [17.886484816161808, 48.903475246773695], [17.545006951577101, 48.800019029325362], [17.101984897538895, 48.8169688991171], [16.960288120194573, 48.596982326850593]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Germany\", \"name\": \"Germany\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[9.92190636560923, 54.983104153048025], [9.939579705452898, 54.596641954153242], [10.950112338920517, 54.363607082733147], [10.939466993868447, 54.008693345752583], [11.95625247564328, 54.196485500701144], [12.518440382546711, 54.470370591847988], [13.647467075259495, 54.075510972705885], [14.119686313542555, 53.757029120491026], [14.353315463934164, 53.248171291713092], [14.074521111719431, 52.981262518925334], [14.437599725002197, 52.62485016540829], [14.685026482815713, 52.089947414755208], [14.607098422919645, 51.745188096719964], [15.016995883858781, 51.106674099321701], [14.570718214586119, 51.002339382524369], [14.307013380600662, 51.117267767941364], [14.05622765468831, 50.92691762959435], [13.338131951560397, 50.733234361364268], [12.966836785543249, 50.484076443069164], [12.240111118222668, 50.266337795607214], [12.41519087082747, 49.969120795280602], [12.521024204161332, 49.547415269562741], [13.031328973043513, 49.307068182973232], [13.595945672264575, 48.877171942737156], [13.243357374737112, 48.416114813829026], [12.884102817443873, 48.289145819687846], [13.025851271220514, 47.637583523135945], [12.93262698736606, 47.467645575543983], [12.620759718484519, 47.672387600284409], [12.141357456112869, 47.703083401065768], [11.426414015354847, 47.523766181013045], [10.544504021861597, 47.566399237653783], [10.402083774465321, 47.302487697939164], [9.896068149463188, 47.58019684507569], [9.594226108446376, 47.525058091820185], [8.522611932009793, 47.830827541691342], [8.317301466514092, 47.613579820336263], [7.466759067422286, 47.620581976911907], [7.59367638513106, 48.333019110703724], [8.099278598674855, 49.017783515003423], [6.658229607783709, 49.201958319691627], [6.186320428094176, 49.4638028021145], [6.242751092156992, 49.90222565367872], [6.043073357781109, 50.128051662794221], [6.156658155958779, 50.803721015010574], [5.988658074577812, 51.85161570902504], [6.589396599970825, 51.85202912048338], [6.842869500362381, 52.228440253297542], [7.092053256873895, 53.14404328064488], [6.905139601274128, 53.482162177130633], [7.100424838905268, 53.693932196662658], [7.936239454793961, 53.748295803433777], [8.121706170289483, 53.527792466844275], [8.800734490604667, 54.02078563090889], [8.572117954145368, 54.395646470754045], [8.526229282270206, 54.962743638725144], [9.282048780971136, 54.830865383516297], [9.92190636560923, 54.983104153048025]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Djibouti\", \"name\": \"Djibouti\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[43.081226027200152, 12.699638576707112], [43.317852410664663, 12.390148423711022], [43.286381463398911, 11.974928290245883], [42.715873650896519, 11.735640570518338], [43.145304803242126, 11.462039699748853], [42.776851841000948, 10.926878566934416], [42.55493000000012, 11.105110000000193], [42.314140000000116, 11.0342], [41.755570000000191, 11.05091], [41.739590000000177, 11.355110000000137], [41.661760000000122, 11.6312], [42.000000000000107, 12.100000000000133], [42.351560000000106, 12.54223000000013], [42.779642368344739, 12.455415757695672], [43.081226027200152, 12.699638576707112]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Denmark\", \"name\": \"Denmark\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[12.690006137755629, 55.60999095318077], [12.089991082414738, 54.800014553437919], [11.043543328504226, 55.36486379660424], [10.90391360845163, 55.779954738988735], [12.370904168353288, 56.111407375708822], [12.690006137755629, 55.60999095318077]]], [[[10.912181837618359, 56.4586213242779], [10.667803989309986, 56.081383368547208], [10.369992710011983, 56.190007229224719], [9.649984978889306, 55.469999498102041], [9.921906365609173, 54.983104153048046], [9.282048780971136, 54.830865383516155], [8.526229282270235, 54.962743638724973], [8.120310906617588, 55.517722683323612], [8.089976840862247, 56.540011705137587], [8.256581658571262, 56.809969387430286], [8.543437534223385, 57.110002753316891], [9.424469028367609, 57.172066148499468], [9.775558709358561, 57.447940782289649], [10.580005730846151, 57.730016587954843], [10.54610599126269, 57.21573273378614], [10.250000034230222, 56.890016181050456], [10.369992710011983, 56.60998159446082], [10.912181837618359, 56.4586213242779]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Dominican Republic\", \"name\": \"Dominican Rep.\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-71.71236141629295, 19.714455878167353], [-71.587304450146604, 19.884910590082093], [-70.806706102161726, 19.880285549391981], [-70.214364997016119, 19.622885240146157], [-69.950815192327568, 19.647999986240002], [-69.769250047470067, 19.293267116772437], [-69.222125820579862, 19.313214219637096], [-69.254346076113819, 19.015196234609871], [-68.809411994080818, 18.979074408437846], [-68.317943284768958, 18.612197577381689], [-68.689315965434503, 18.205142320218609], [-69.164945848248905, 18.422648423735108], [-69.623987596297624, 18.380712998930246], [-69.952933926051529, 18.428306993071057], [-70.133232998317879, 18.245915025296892], [-70.517137213814195, 18.184290879788829], [-70.669298468697619, 18.42688589118303], [-70.999950120717173, 18.283328762276206], [-71.400209927033885, 17.598564357976596], [-71.657661912712001, 17.757572740138695], [-71.708304816358037, 18.044997056546091], [-71.687737596305865, 18.316660061104468], [-71.945112067335543, 18.616900132720257], [-71.701302659782485, 18.785416978424049], [-71.624873216422813, 19.169837958243303], [-71.71236141629295, 19.714455878167353]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Algeria\", \"name\": \"Algeria\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[11.99950564947161, 23.471668402596443], [8.572893100629782, 21.565660712159136], [5.677565952180684, 19.601206976799713], [4.267419467800038, 19.155265204336995], [3.158133172222704, 19.057364203360034], [3.146661004253899, 19.693578599521441], [2.683588494486428, 19.856230170160114], [2.060990838233919, 20.142233384679482], [1.823227573259032, 20.61080943448604], [-1.550054897457613, 22.792665920497377], [-4.92333736817423, 24.974574082940993], [-8.684399786809051, 27.395744126895998], [-8.66512447756419, 27.58947907155822], [-8.665589565454805, 27.656425889592349], [-8.674116176782972, 28.841288967396572], [-7.059227667661928, 29.579228420524522], [-6.060632290053772, 29.731699734001687], [-5.242129278982786, 30.000443020135581], [-4.859646165374469, 30.501187649043839], [-3.690441046554695, 30.896951605751152], [-3.647497931320145, 31.637294012980668], [-3.068980271812647, 31.724497992473207], [-2.616604783529567, 32.094346218386143], [-1.30789913573787, 32.262888902306095], [-1.124551153966308, 32.651521511357124], [-1.388049282222567, 32.864015000941301], [-1.733454555661467, 33.91971283623198], [-1.792985805661686, 34.527918606091198], [-2.169913702798624, 35.168396307916673], [-1.208602871089056, 35.71484874118709], [-0.127454392894606, 35.888662421200799], [0.503876580415209, 36.301272894835272], [1.466918572606545, 36.605647081034398], [3.161698846050824, 36.783904934225205], [4.815758090849129, 36.865036932923452], [5.320120070017792, 36.716518866516616], [6.261819695672611, 37.110655015606731], [7.330384962603969, 37.118380642234364], [7.737078484741003, 36.885707505840209], [8.420964389691674, 36.946427313783154], [8.217824334352313, 36.433176988260271], [8.376367628623766, 35.479876003555937], [8.140981479534302, 34.655145982393783], [7.524481642292242, 34.097376410451453], [7.612641635782181, 33.344114895148955], [8.430472853233367, 32.748337307255944], [8.439102817426116, 32.506284898400814], [9.055602654668148, 32.102691962201284], [9.482139926805273, 30.307556057246181], [9.805634392952411, 29.424638373323383], [9.859997999723443, 28.959989732371007], [9.683884718472765, 28.144173895779193], [9.756128370816779, 27.688258571884141], [9.629056023811073, 27.140953477480913], [9.716285841519747, 26.512206325785691], [9.319410841518161, 26.094324856057447], [9.910692579801774, 25.365454616796733], [9.948261346077969, 24.93695364023251], [10.30384687667836, 24.37931325937091], [10.771363559622925, 24.562532050061744], [11.560669386449002, 24.097909247325511], [11.99950564947161, 23.471668402596443]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Ecuador\", \"name\": \"Ecuador\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-80.302560594387188, -3.404856459164712], [-79.770293341780913, -2.65751189535964], [-79.986559210922394, -2.220794366061014], [-80.368783942369234, -2.685158786635788], [-80.967765469064332, -2.246942640800703], [-80.764806281238023, -1.965047702648532], [-80.933659023751702, -1.057454522306358], [-80.583370327461239, -0.906662692878683], [-80.39932471385373, -0.283703301600141], [-80.020898200180355, 0.360340074053468], [-80.090609707342097, 0.768428859862396], [-79.542762010399784, 0.982937730305963], [-78.855258755188686, 1.380923773601822], [-77.855061408179509, 0.809925034992773], [-77.668612840470416, 0.825893052570961], [-77.424984300430367, 0.395686753741117], [-76.576379767549383, 0.256935533037435], [-76.292314419240938, 0.416047268064119], [-75.801465827116587, 0.084801337073202], [-75.373223232713841, -0.15203175212045], [-75.233722703741932, -0.911416924649529], [-75.544995693652027, -1.56160979574588], [-76.635394253226707, -2.608677666843817], [-77.83790483265858, -3.003020521663103], [-78.450683966775628, -3.873096612161375], [-78.639897223612323, -4.547784112164072], [-79.205289069317715, -4.959128513207388], [-79.62497921417615, -4.454198093283494], [-80.028908047185581, -4.346090996928893], [-80.442241990872134, -4.425724379090673], [-80.46929460317692, -4.059286797708999], [-80.184014858709645, -3.821161797708043], [-80.302560594387188, -3.404856459164712]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Egypt\", \"name\": \"Egypt\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[34.9226, 29.50133], [34.64174, 29.09942], [34.42655, 28.34399], [34.15451, 27.8233], [33.92136, 27.6487], [33.58811, 27.97136], [33.13676, 28.41765], [32.42323, 29.85108], [32.32046, 29.76043], [32.73482, 28.70523], [33.34876, 27.69989], [34.10455, 26.14227], [34.47387, 25.59856], [34.79507, 25.03375], [35.69241, 23.92671], [35.49372, 23.75237], [35.52598, 23.10244], [36.69069, 22.20485], [36.86623, 22.0], [32.9, 22.0], [29.02, 22.0], [25.0, 22.0], [25.0, 25.682499996360992], [25.0, 29.238654529533452], [24.70007, 30.04419], [24.95762, 30.6616], [24.80287, 31.08929], [25.16482, 31.56915], [26.49533, 31.58568], [27.45762, 31.32126], [28.45048, 31.02577], [28.91353, 30.87005], [29.68342, 31.18686], [30.09503, 31.4734], [30.97693, 31.55586], [31.68796, 31.4296], [31.96041, 30.9336], [32.19247, 31.26034], [32.99392, 31.02407], [33.7734, 30.96746], [34.26544, 31.21936], [34.9226, 29.50133]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Eritrea\", \"name\": \"Eritrea\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[42.351560000000106, 12.54223000000013], [42.00975, 12.86582], [41.59856, 13.452090000000108], [41.15519371924983, 13.773319810435224], [40.8966, 14.118640000000138], [40.026218702969167, 14.519579169162281], [39.34061, 14.53155], [39.0994, 14.74064], [38.51295, 14.50547], [37.90607, 14.959430000000165], [37.59377, 14.2131], [36.42951, 14.42211], [36.323188917798113, 14.822480577041057], [36.753860304518575, 16.291874091044289], [36.852530000000108, 16.95655], [37.16747, 17.263140000000128], [37.904000000000103, 17.42754], [38.410089959473218, 17.998307399970312], [38.990622999839999, 16.84062612555169], [39.266110060388016, 15.922723496967246], [39.814293654140208, 15.435647284400314], [41.179274936697645, 14.491079616753209], [41.734951613132345, 13.921036892141554], [42.276830682144848, 13.34399201095442], [42.589576450375255, 13.000421250861901], [43.081226027200152, 12.699638576707112], [42.779642368344739, 12.455415757695672], [42.351560000000106, 12.54223000000013]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Spain\", \"name\": \"Spain\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-9.034817674180244, 41.880570583659669], [-8.98443315269567, 42.592775173506261], [-9.392883673530644, 43.026624660812686], [-7.978189663108308, 43.748337714200979], [-6.754491746436754, 43.567909450853918], [-5.411886359061596, 43.574239813809669], [-4.347842779955783, 43.403449205085025], [-3.51753170410609, 43.455900783861296], [-1.901351284177764, 43.422802028978332], [-1.502770961910528, 43.034014390630425], [0.338046909190581, 42.579546006839543], [0.701590610363894, 42.795734361332599], [1.826793247087153, 42.343384711265678], [2.985998976258457, 42.473015041669854], [3.039484083680548, 41.892120266276891], [2.091841668312184, 41.226088568683082], [0.810524529635188, 41.014731960609332], [0.721331007499401, 40.678318386389229], [0.106691521819869, 40.123933620762003], [-0.278711310212941, 39.309978135732713], [0.111290724293838, 38.738514309233032], [-0.467123582349103, 38.292365831041138], [-0.683389451490598, 37.642353827457811], [-1.438382127274849, 37.443063666324214], [-2.146452602538119, 36.674144192037282], [-3.415780808923386, 36.658899644511173], [-4.368900926114718, 36.677839056946141], [-4.995219285492211, 36.32470815687963], [-5.377159796561457, 35.946850083961458], [-5.866432257500902, 36.02981659600605], [-6.236693894872174, 36.367677110330327], [-6.520190802425402, 36.942913316387312], [-7.45372555177809, 37.097787583966053], [-7.537105475281022, 37.428904323876232], [-7.166507941099863, 37.803894354802217], [-7.029281175148794, 38.075764065089757], [-7.374092169616317, 38.373058580064914], [-7.098036668313126, 39.03007274022378], [-7.498632371439724, 39.629571031241802], [-7.066591559263527, 39.711891587882768], [-7.026413133156593, 40.184524237624238], [-6.864019944679383, 40.330871893874821], [-6.851126674822551, 41.111082668617513], [-6.389087693700914, 41.381815497394641], [-6.668605515967655, 41.883386949219577], [-7.251308966490822, 41.91834605566504], [-7.422512986673794, 41.792074693359822], [-8.01317460776991, 41.790886135417118], [-8.26385698081779, 42.280468654950326], [-8.671945766626719, 42.134689439454952], [-9.034817674180244, 41.880570583659669]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Estonia\", \"name\": \"Estonia\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[24.312862583114615, 57.793423570376966], [24.428927850042154, 58.383413397853275], [24.061198357853179, 58.257374579493394], [23.426560092876681, 58.612753404364618], [23.339795363058641, 59.187240302153363], [24.604214308376182, 59.465853786855007], [25.864189080516631, 59.611090399811324], [26.949135776484518, 59.445803331125767], [27.981114129353237, 59.47538808861286], [28.131699253051742, 59.300825100330904], [27.420166456824941, 58.724581203844224], [27.716685825315714, 57.791899115624354], [27.288184848751509, 57.474528306703817], [26.46353234223778, 57.476388658266316], [25.602809685984365, 57.847528794986559], [25.164593540149262, 57.970156968815175], [24.312862583114615, 57.793423570376966]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Ethiopia\", \"name\": \"Ethiopia\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[37.90607, 14.959430000000165], [38.51295, 14.50547], [39.0994, 14.74064], [39.34061, 14.53155], [40.026250000000111, 14.51959], [40.8966, 14.118640000000138], [41.1552, 13.77333], [41.59856, 13.452090000000108], [42.00975, 12.86582], [42.351560000000106, 12.54223000000013], [42.000000000000107, 12.100000000000133], [41.661760000000122, 11.6312], [41.739590000000177, 11.355110000000137], [41.755570000000191, 11.05091], [42.314140000000116, 11.0342], [42.55493000000012, 11.105110000000193], [42.776851841000948, 10.926878566934416], [42.55876, 10.572580000000126], [42.92812, 10.021940000000139], [43.29699, 9.540480000000169], [43.67875, 9.183580000000116], [46.94834, 7.99688], [47.78942, 8.003], [44.9636, 5.001620000000115], [43.66087, 4.95755], [42.769670000000119, 4.252590000000223], [42.12861, 4.234130000000163], [41.855083092644108, 3.918911920483764], [41.171800000000125, 3.91909], [40.768480000000118, 4.257020000000124], [39.854940000000106, 3.83879000000013], [39.559384258765917, 3.422060000000215], [38.89251, 3.50074], [38.67114, 3.61607], [38.436970000000137, 3.58851], [38.120915000000132, 3.598605], [36.85509323800823, 4.447864127672857], [36.159078632855646, 4.447864127672857], [35.817447662353622, 4.776965663462021], [35.817447662353622, 5.338232082790852], [35.298007118233095, 5.506], [34.70702, 6.59422000000012], [34.25032, 6.82607], [34.075100000000184, 7.22595], [33.56829, 7.71334], [32.954180000000228, 7.7849700000001], [33.294800000000116, 8.35458], [33.82550000000014, 8.37916], [33.97498, 8.684560000000145], [33.96162, 9.58358], [34.25745, 10.63009], [34.73115000000012, 10.910170000000106], [34.831630000000125, 11.318960000000116], [35.26049, 12.08286], [35.863630000000164, 12.57828], [36.27022, 13.563330000000118], [36.42951, 14.42211], [37.59377, 14.2131], [37.90607, 14.959430000000165]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Finland\", \"name\": \"Finland\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[28.591929559043187, 69.064776923286644], [28.445943637818651, 68.36461294216403], [29.9774263852206, 67.698297024192641], [29.054588657352319, 66.944286200621917], [30.21765, 65.80598], [29.544429559046982, 64.948671576590471], [30.444684686003704, 64.204453436939076], [30.035872430142714, 63.552813625738544], [31.516092156711117, 62.867687486412869], [31.139991082490891, 62.357692776124395], [30.211107212044443, 61.780027777749673], [28.06999759289527, 60.503516547275829], [26.25517296723697, 60.423960679762487], [24.496623976344516, 60.057316392651636], [22.869694858499454, 59.846373196036211], [22.290763787533589, 60.391921291741525], [21.322244093519313, 60.720169989659503], [21.544866163832687, 61.705329494871783], [21.059211053153682, 62.607393296958726], [21.536029493910799, 63.189735012455863], [22.442744174903986, 63.817810370531276], [24.730511508897528, 64.902343655040823], [25.398067661243939, 65.111426500093728], [25.2940430030404, 65.53434642197044], [23.903378533633795, 66.006927395279604], [23.565879754335576, 66.396050930437411], [23.539473097434435, 67.936008612735236], [21.978534783626113, 68.616845608180682], [20.645592889089521, 69.106247260200846], [21.244936150810666, 69.370443020293067], [22.356237827247405, 68.841741441514898], [23.662049594830751, 68.891247463650529], [24.735679152126721, 68.649556789821446], [25.689212680776361, 69.092113755969024], [26.179622023226241, 69.825298977326113], [27.732292107867856, 70.164193020296239], [29.015572950971968, 69.766491197377974], [28.591929559043187, 69.064776923286644]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Fiji\", \"name\": \"Fiji\", \"continent\": \"Australia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[178.3736, -17.33992], [178.71806, -17.62846], [178.55271, -18.15059], [177.93266, -18.28799], [177.38146, -18.16432], [177.28504, -17.72465], [177.67087, -17.38114], [178.12557, -17.50481], [178.3736, -17.33992]]], [[[179.364142661964223, -16.801354076946847], [178.725059362997058, -17.012041674368017], [178.596838595117021, -16.63915], [179.096609362997128, -16.43398427754742], [179.413509362997075, -16.379054277547393], [180.000000000000114, -16.067132663642436], [180.000000000000114, -16.555216566639157], [179.364142661964223, -16.801354076946847]]], [[[-179.917369384765237, -16.501783135649358], [-180.0, -16.555216566639157], [-180.0, -16.067132663642436], [-179.793320109048551, -16.020882256741228], [-179.917369384765237, -16.501783135649358]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Falkland Islands\", \"name\": \"Falkland Is.\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-61.2, -51.85], [-60.0, -51.25], [-59.15, -51.5], [-58.55, -51.1], [-57.75, -51.55], [-58.05, -51.9], [-59.4, -52.2], [-59.85, -51.85], [-60.7, -52.3], [-61.2, -51.85]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"France\", \"name\": \"France\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[-52.556424730018378, 2.504705308437053], [-52.939657151894963, 2.124857692875622], [-53.41846513529525, 2.053389187016037], [-53.554839240113481, 2.334896551925964], [-53.778520677288881, 2.376702785650053], [-54.088062506717264, 2.105556545414629], [-54.524754197799737, 2.311848863123785], [-54.271229620975781, 2.738747870286942], [-54.184284023644743, 3.194172268075234], [-54.011503872276812, 3.622569891774857], [-54.3995422023565, 4.212611395683481], [-54.478632981979203, 4.896755682795642], [-53.958044603070917, 5.756548163267808], [-53.618452928264837, 5.646529038918401], [-52.882141282754063, 5.409850979021598], [-51.823342861525916, 4.565768133966144], [-51.657797410678874, 4.156232408053028], [-52.249337531123977, 3.241094468596287], [-52.556424730018378, 2.504705308437053]]], [[[9.560016310269132, 42.152491970379558], [9.229752231491771, 41.380006822264441], [8.77572309737536, 41.583611965494427], [8.544212680707828, 42.256516628583078], [8.746009148807586, 42.628121853193946], [9.390000848028901, 43.009984849614725], [9.560016310269132, 42.152491970379558]]], [[[3.588184441755714, 50.378992418003563], [4.28602298342514, 49.90749664977254], [4.799221632515752, 49.985373033236314], [5.674051954784885, 49.529483547557433], [5.897759230176375, 49.442667141307155], [6.186320428094204, 49.463802802114444], [6.658229607783538, 49.201958319691549], [8.09927859867477, 49.017783515003366], [7.59367638513106, 48.333019110703724], [7.466759067422228, 47.620581976911851], [7.192202182655533, 47.449765529970982], [6.736571079138086, 47.541801255882874], [6.768713820023634, 47.287708238303672], [6.037388950228971, 46.725778713561894], [6.022609490593566, 46.272989813820502], [6.500099724970453, 46.429672756529428], [6.84359297041456, 45.991146552100659], [6.80235517744566, 45.708579820328673], [7.096652459347835, 45.333098863295859], [6.749955275101711, 45.028517971367584], [7.007562290076661, 44.254766750661382], [7.549596388386161, 44.127901109384808], [7.435184767291841, 43.693844916349164], [6.529245232783068, 43.12889232031835], [4.556962517931395, 43.399650987311581], [3.100410597352719, 43.075200507167118], [2.985998976258486, 42.473015041669882], [1.826793247087181, 42.343384711265649], [0.701590610363922, 42.795734361332642], [0.338046909190581, 42.57954600683955], [-1.502770961910471, 43.034014390630482], [-1.901351284177735, 43.422802028978332], [-1.384225226232956, 44.022610378590166], [-1.193797573237361, 46.014917710954862], [-2.225724249673788, 47.064362697938201], [-2.963276129559573, 47.570326646507958], [-4.491554938159481, 47.95495433205641], [-4.592349819344746, 48.68416046812694], [-3.295813971357745, 48.901692409859628], [-1.616510789384932, 48.644421291694577], [-1.933494025063254, 49.776341864615759], [-0.98946895995536, 49.347375800160869], [1.338761020522753, 50.127173163445256], [1.6390010921385, 50.9466063502975], [2.51357303224617, 51.14850617126185], [2.65842207196033, 50.796848049515646], [3.123251580425716, 50.780363267614504], [3.588184441755714, 50.378992418003563]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Gabon\", \"name\": \"Gabon\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[11.093772820691923, -3.978826592630546], [10.066135288135738, -2.969482517105681], [9.405245395554969, -2.144313246269042], [8.797995639693168, -1.111301364754496], [8.830086704146423, -0.779073581550037], [9.048419630579586, -0.459351494960217], [9.291350538783687, 0.268666083167687], [9.492888624721981, 1.010119533691494], [9.83028405115564, 1.067893784993799], [11.285078973036461, 1.057661851400013], [11.276449008843711, 2.261050930180871], [11.751665480199787, 2.326757513839993], [12.359380323952218, 2.19281220133945], [12.951333855855605, 2.321615708826939], [13.07582238124675, 2.267097072759014], [13.003113641012074, 1.830896307783319], [13.282631463278816, 1.31418366129688], [14.026668735417214, 1.395677395021153], [14.276265903386953, 1.196929836426619], [13.843320753645653, 0.038757635901149], [14.316418491277741, -0.552627455247048], [14.425455763413593, -1.333406670744971], [14.299210239324564, -1.998275648612213], [13.992407260807706, -2.470804945489099], [13.109618767965626, -2.428740329603513], [12.575284458067639, -1.948511244315134], [12.495702752338159, -2.391688327650242], [11.820963575903189, -2.514161472181982], [11.478038771214299, -2.765618991714241], [11.855121697648114, -3.42687061932105], [11.093772820691923, -3.978826592630546]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"United Kingdom\", \"name\": \"United Kingdom\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[-5.661948614921896, 54.554603176483838], [-6.197884894220976, 53.867565009163329], [-6.953730231137994, 54.073702297575622], [-7.572167934591078, 54.059956366585979], [-7.366030646178785, 54.595840969452688], [-7.572167934591078, 55.131622219454883], [-6.733847011736144, 55.172860012423783], [-5.661948614921896, 54.554603176483838]]], [[[-3.00500484863528, 58.635000108466322], [-4.073828497728015, 57.55302480735525], [-3.055001796877661, 57.690019029360933], [-1.959280564776918, 57.684799709699512], [-2.219988165689301, 56.870017401753515], [-3.119003058271118, 55.97379303651546], [-2.085009324543023, 55.909998480851264], [-2.005675679673856, 55.804902850350217], [-1.11499101399221, 54.624986477265388], [-0.4304849918542, 54.464376125702145], [0.184981316742039, 53.325014146531018], [0.469976840831777, 52.929999498091959], [1.681530795914739, 52.739520168663987], [1.559987827164377, 52.099998480836], [1.050561557630914, 51.806760565795678], [1.4498653499503, 51.289427802121949], [0.550333693045502, 50.765738837275862], [-0.787517462558639, 50.774988918656206], [-2.489997524414377, 50.500018622431227], [-2.956273972984035, 50.696879991247002], [-3.617448085942327, 50.228355617872708], [-4.542507900399243, 50.341837063185658], [-5.245023159191134, 49.959999904981082], [-5.776566941745299, 50.159677639356815], [-4.309989793301837, 51.210001125689146], [-3.414850633142122, 51.426008612669236], [-3.422719467108322, 51.426848167406078], [-4.984367234710873, 51.593466091510962], [-5.267295701508885, 51.991400458374571], [-4.222346564134852, 52.30135569926135], [-4.770013393564112, 52.840004991255611], [-4.579999152026914, 53.495003770555165], [-3.093830673788658, 53.404547400669671], [-3.092079637047106, 53.404440822963544], [-2.945008510744343, 53.98499970154667], [-3.614700825433033, 54.60093677329256], [-3.63000545898933, 54.615012925833], [-4.844169073903003, 54.790971177786837], [-5.082526617849224, 55.061600653699358], [-4.719112107756643, 55.508472601943467], [-5.047980922862108, 55.783985500707516], [-5.586397670911139, 55.311146145236805], [-5.64499874513018, 56.275014960344791], [-6.149980841486352, 56.785009670633528], [-5.78682471355529, 57.818848375064633], [-5.009998745127574, 58.630013332750039], [-4.211494513353555, 58.550845038479153], [-3.00500484863528, 58.635000108466322]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Georgia\", \"name\": \"Georgia\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[41.55408410011065, 41.535656236327561], [41.703170607272703, 41.962942816732912], [41.453470086438379, 42.645123399417926], [40.875469191253785, 43.013628038091277], [40.321394484220313, 43.128633938156831], [39.955008579270917, 43.434997666999216], [40.07696495947976, 43.553104153002309], [40.922184686045618, 43.38215851498078], [42.394394565608806, 43.220307929042619], [43.756016880067378, 42.74082815202248], [43.931199985536828, 42.554973863284758], [44.537622918481979, 42.71199270280362], [45.470279168485703, 42.502780666669963], [45.776410353382758, 42.09244395605635], [46.404950799348818, 41.860675157227298], [46.145431756379004, 41.722802435872573], [46.637908156120574, 41.181672675128219], [46.501637404166921, 41.064444688474104], [45.962600538930381, 41.123872585609767], [45.217426385281577, 41.411451931314041], [44.972480096218071, 41.248128567055588], [43.582745802592726, 41.09214325618256], [42.619548781104484, 41.583172715819934], [41.55408410011065, 41.535656236327561]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Ghana\", \"name\": \"Ghana\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[1.060121697604927, 5.928837388528875], [-0.507637905265938, 5.343472601742675], [-1.063624640294193, 5.000547797053811], [-1.964706590167594, 4.71046214438337], [-2.856125047202397, 4.994475816259508], [-2.810701463217839, 5.389051215024109], [-3.244370083011261, 6.2504715031135], [-2.983584967450326, 7.379704901555511], [-2.56218950032624, 8.219627793811481], [-2.827496303712706, 9.642460842319775], [-2.963896246747111, 10.395334784380081], [-2.94040930827046, 10.962690334512557], [-1.203357713211431, 11.009819240762736], [-0.761575893548183, 10.936929633015053], [-0.438701544588582, 11.09834096927872], [0.023802524423701, 11.018681748900802], [-0.049784715159944, 10.706917832883928], [0.367579990245389, 10.191212876827176], [0.365900506195885, 9.46500397382948], [0.461191847342121, 8.677222601756013], [0.712029249686878, 8.312464504423827], [0.490957472342245, 7.411744289576474], [0.570384148774849, 6.914358628767188], [0.836931186536333, 6.279978745952147], [1.060121697604927, 5.928837388528875]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Guinea\", \"name\": \"Guinea\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-8.439298468448696, 7.686042792181736], [-8.722123582382123, 7.711674302598509], [-8.926064622422002, 7.309037380396375], [-9.208786383490844, 7.313920803247952], [-9.403348151069748, 7.526905218938906], [-9.33727983238458, 7.928534450711351], [-9.755342169625832, 8.541055202666923], [-10.016566534861253, 8.42850393313523], [-10.230093553091276, 8.406205552601291], [-10.505477260774667, 8.348896389189603], [-10.494315151399629, 8.715540676300433], [-10.65477047366589, 8.977178452994194], [-10.622395188835037, 9.267910061068276], [-10.839151984083299, 9.688246161330367], [-11.117481248407328, 10.045872911006283], [-11.917277390988655, 10.046983954300556], [-12.150338100625003, 9.858571682164378], [-12.425928514037562, 9.835834051955953], [-12.596719122762206, 9.620188300001969], [-12.711957566773076, 9.342711696810765], [-13.246550258832512, 8.903048610871506], [-13.685153977909788, 9.494743760613458], [-14.074044969122278, 9.886166897008248], [-14.330075852912367, 10.015719712763966], [-14.579698859098254, 10.214467271358513], [-14.693231980843501, 10.65630076745404], [-14.83955379887794, 10.876571560098139], [-15.130311245168167, 11.040411688679525], [-14.685687221728896, 11.527823798056485], [-14.382191534878727, 11.509271958863691], [-14.121406419317776, 11.677117010947693], [-13.900799729863772, 11.678718980348744], [-13.743160773157411, 11.811269029177408], [-13.828271857142122, 12.142644151249041], [-13.718743658899511, 12.247185573775507], [-13.700476040084322, 12.586182969610192], [-13.217818162478235, 12.575873521367964], [-12.499050665730561, 12.332089952031053], [-12.278599005573438, 12.354440008997285], [-12.20356482588563, 12.465647691289401], [-11.658300950557928, 12.386582749882834], [-11.513942836950587, 12.442987575729415], [-11.456168585648269, 12.076834214725336], [-11.297573614944508, 12.077971096235768], [-11.036555955438256, 12.211244615116513], [-10.870829637078211, 12.177887478072106], [-10.593223842806278, 11.923975328005977], [-10.165213792348835, 11.844083563682743], [-9.890992804392011, 12.060478623904968], [-9.567911749703212, 12.194243068892472], [-9.327616339546008, 12.334286200403451], [-9.127473517279581, 12.308060411015331], [-8.905264858424529, 12.088358059126433], [-8.786099005559462, 11.812560939984705], [-8.376304897484911, 11.393645941610627], [-8.581305304386772, 11.136245632364801], [-8.620321010767126, 10.810890814655181], [-8.407310756860026, 10.90925690352276], [-8.282357143578279, 10.792597357623842], [-8.335377163109738, 10.494811916541932], [-8.029943610048617, 10.206534939001711], [-8.22933712404682, 10.129020290563897], [-8.309616461612249, 9.789531968622439], [-8.079113735374348, 9.376223863152033], [-7.832100389019186, 8.575704250518625], [-8.203498907900878, 8.455453192575446], [-8.299048631208562, 8.316443589710302], [-8.221792364932197, 8.123328762235571], [-8.280703497744936, 7.687179673692156], [-8.439298468448696, 7.686042792181736]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Gambia\", \"name\": \"Gambia\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-16.84152462408127, 13.151393947802557], [-16.713728807023468, 13.594958604379853], [-15.624596320039936, 13.623587347869556], [-15.398770310924457, 13.860368760630916], [-15.081735398813816, 13.876491807505982], [-14.687030808968483, 13.63035696049978], [-14.376713833055785, 13.625680243377371], [-14.046992356817478, 13.794067898000446], [-13.844963344772404, 13.505041612191999], [-14.277701788784553, 13.28058502853224], [-14.712197231494626, 13.298206691943774], [-15.141163295949463, 13.509511623585235], [-15.511812506562931, 13.278569647672864], [-15.691000535534991, 13.270353094938455], [-15.931295945692208, 13.130284125211331], [-16.84152462408127, 13.151393947802557]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Guinea Bissau\", \"name\": \"Guinea-Bissau\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-15.130311245168167, 11.040411688679525], [-15.664180467175523, 11.458474025920792], [-16.085214199273562, 11.524594021038236], [-16.314786749730199, 11.806514797406548], [-16.308947312881227, 11.958701890506116], [-16.613838263403277, 12.170911159712698], [-16.67745195155457, 12.38485158940105], [-16.147716844130581, 12.547761542201185], [-15.816574266004251, 12.515567124883345], [-15.548476935274005, 12.628170070847343], [-13.700476040084322, 12.586182969610192], [-13.718743658899511, 12.247185573775507], [-13.828271857142122, 12.142644151249041], [-13.743160773157411, 11.811269029177408], [-13.900799729863772, 11.678718980348744], [-14.121406419317776, 11.677117010947693], [-14.382191534878727, 11.509271958863691], [-14.685687221728896, 11.527823798056485], [-15.130311245168167, 11.040411688679525]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Equatorial Guinea\", \"name\": \"Eq. Guinea\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[9.492888624721981, 1.010119533691494], [9.305613234096255, 1.160911363119183], [9.649158155972627, 2.283866075037735], [11.276449008843711, 2.261050930180871], [11.285078973036461, 1.057661851400013], [9.83028405115564, 1.067893784993799], [9.492888624721981, 1.010119533691494]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Greece\", \"name\": \"Greece\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[23.699980096133, 35.705004380835526], [24.246665073348673, 35.368022365860149], [25.025015496528873, 35.424995632461979], [25.769207797964182, 35.354018052709073], [25.745023227651579, 35.179997666966209], [26.290002882601719, 35.299990342747911], [26.164997592887651, 35.004995429009789], [24.724982130642299, 34.919987697889603], [24.735007358506941, 35.084990546197581], [23.514978468528106, 35.27999156345097], [23.699980096133, 35.705004380835526]]], [[[26.604195590936282, 41.562114569661098], [26.294602085075777, 40.936261298174244], [26.056942172965499, 40.824123440100827], [25.44767703624418, 40.852545477861455], [24.925848422960932, 40.947061672523226], [23.714811232200809, 40.687129218095116], [24.407998894964063, 40.124992987624083], [23.89996788910258, 39.962005520175573], [23.342999301860797, 39.960997829745786], [22.813987664488959, 40.476005153966547], [22.626298862404777, 40.256561184239175], [22.849747755634805, 39.659310818025759], [23.350027296652595, 39.190011298167256], [22.97309939951554, 38.97090322524965], [23.53001631032495, 38.51000112563846], [24.025024855248937, 38.219992987616443], [24.040011020613601, 37.655014553369419], [23.115002882589145, 37.920011298162215], [23.409971958111065, 37.409990749657389], [22.77497195810863, 37.305010077456551], [23.154225294698612, 36.422505804992042], [22.4900281104511, 36.410000108377446], [21.670026482843692, 36.84498647719419], [21.295010613701574, 37.644989325504689], [21.120034213961329, 38.31032339126272], [20.730032179454579, 38.769985256498778], [20.217712029712853, 39.340234686839629], [20.150015903410516, 39.624997666984022], [20.615000441172779, 40.110006822259422], [20.67499677906363, 40.434999904943048], [20.999989861747274, 40.580003973953964], [21.020040317476422, 40.842726955725873], [21.674160597426969, 40.931274522457976], [22.055377638444266, 41.149865831052686], [22.597308383889008, 41.130487168943198], [22.76177, 41.3048], [22.952377150166562, 41.337993882811212], [23.692073601992455, 41.309080918943849], [24.492644891058031, 41.583896185872035], [25.19720136892553, 41.234485988930651], [26.106138136507177, 41.328898830727823], [26.11704186372091, 41.826904608724725], [26.604195590936282, 41.562114569661098]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Greenland\", \"name\": \"Greenland\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-46.76379, 82.62796], [-43.40644, 83.22516], [-39.89753, 83.18018], [-38.62214, 83.54905], [-35.08787, 83.64513], [-27.10046, 83.51966], [-20.84539, 82.72669], [-22.69182, 82.34165], [-26.51753, 82.29765], [-31.9, 82.2], [-31.39646, 82.02154], [-27.85666, 82.13178], [-24.84448, 81.78697], [-22.90328, 82.09317], [-22.07175, 81.73449], [-23.16961, 81.15271], [-20.62363, 81.52462], [-15.76818, 81.91245], [-12.77018, 81.71885], [-12.20855, 81.29154], [-16.28533, 80.58004], [-16.85, 80.35], [-20.04624, 80.17708], [-17.73035, 80.12912], [-18.9, 79.4], [-19.70499, 78.75128], [-19.67353, 77.63859], [-18.47285, 76.98565], [-20.03503, 76.94434], [-21.67944, 76.62795], [-19.83407, 76.09808], [-19.59896, 75.24838], [-20.66818, 75.15585], [-19.37281, 74.29561], [-21.59422, 74.22382], [-20.43454, 73.81713], [-20.76234, 73.46436], [-22.17221, 73.30955], [-23.56593, 73.30663], [-22.31311, 72.62928], [-22.29954, 72.18409], [-24.27834, 72.59788], [-24.79296, 72.3302], [-23.44296, 72.08016], [-22.13281, 71.46898], [-21.75356, 70.66369], [-23.53603, 70.471], [-24.30702, 70.85649], [-25.54341, 71.43094], [-25.20135, 70.75226], [-26.36276, 70.22646], [-23.72742, 70.18401], [-22.34902, 70.12946], [-25.02927, 69.2588], [-27.74737, 68.47046], [-30.67371, 68.12503], [-31.77665, 68.12078], [-32.81105, 67.73547], [-34.20196, 66.67974], [-36.35284, 65.9789], [-37.04378, 65.93768], [-38.37505, 65.69213], [-39.81222, 65.45848], [-40.66899, 64.83997], [-40.68281, 64.13902], [-41.1887, 63.48246], [-42.81938, 62.68233], [-42.41666, 61.90093], [-42.86619, 61.07404], [-43.3784, 60.09772], [-44.7875, 60.03676], [-46.26364, 60.85328], [-48.26294, 60.85843], [-49.23308, 61.40681], [-49.90039, 62.38336], [-51.63325, 63.62691], [-52.14014, 64.27842], [-52.27659, 65.1767], [-53.66166, 66.09957], [-53.30161, 66.8365], [-53.96911, 67.18899], [-52.9804, 68.35759], [-51.47536, 68.72958], [-51.08041, 69.14781], [-50.87122, 69.9291], [-52.013585, 69.574925], [-52.55792, 69.42616], [-53.45629, 69.283625], [-54.68336, 69.61003], [-54.75001, 70.28932], [-54.35884, 70.821315], [-53.431315, 70.835755], [-51.39014, 70.56978], [-53.10937, 71.20485], [-54.00422, 71.54719], [-55.0, 71.406536967272558], [-55.83468, 71.65444], [-54.71819, 72.58625], [-55.32634, 72.95861], [-56.12003, 73.64977], [-57.32363, 74.71026], [-58.59679, 75.09861], [-58.58516, 75.51727], [-61.26861, 76.10238], [-63.39165, 76.1752], [-66.06427, 76.13486], [-68.50438, 76.06141], [-69.66485, 76.37975], [-71.40257, 77.00857], [-68.77671, 77.32312], [-66.76397, 77.37595], [-71.04293, 77.63595], [-73.297, 78.04419], [-73.15938, 78.43271], [-69.37345, 78.91388], [-65.7107, 79.39436], [-65.3239, 79.75814], [-68.02298, 80.11721], [-67.15129, 80.51582], [-63.68925, 81.21396], [-62.23444, 81.3211], [-62.65116, 81.77042], [-60.28249, 82.03363], [-57.20744, 82.19074], [-54.13442, 82.19962], [-53.04328, 81.88833], [-50.39061, 82.43883], [-48.00386, 82.06481], [-46.59984, 81.985945], [-44.523, 81.6607], [-46.9007, 82.19979], [-46.76379, 82.62796]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Guatemala\", \"name\": \"Guatemala\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-90.095554572290951, 13.73533763270073], [-90.608624030300817, 13.909771429901948], [-91.232410244496037, 13.927832342987953], [-91.689746670279106, 14.126218166556452], [-92.227750006869812, 14.538828640190925], [-92.203229539747298, 14.830102850804066], [-92.087215949252041, 15.064584662328436], [-92.229248623406249, 15.251446641495857], [-91.747960171255912, 16.066564846251719], [-90.464472622422647, 16.069562079324651], [-90.438866950222021, 16.410109768128091], [-90.600846727240906, 16.470777899638758], [-90.711821865587694, 16.687483018454724], [-91.081670091500641, 16.918476670799404], [-91.453921271515128, 17.252177232324168], [-91.002269253284197, 17.254657701074176], [-91.001519945015943, 17.817594916245707], [-90.067933519230948, 17.819326076727474], [-89.143080410503302, 17.808318996649316], [-89.15080603713092, 17.015576687075832], [-89.229121670269265, 15.886937567605166], [-88.930612759135244, 15.887273464415072], [-88.604586147805833, 15.706380113177358], [-88.518364020526846, 15.855389105690971], [-88.22502275262201, 15.727722479713901], [-88.680679694355618, 15.346247056535301], [-89.15481096063354, 15.066419175674806], [-89.225220099631244, 14.874286200413618], [-89.145535041037149, 14.67801911056908], [-89.353325975282772, 14.424132798719112], [-89.587342698916544, 14.362586167859485], [-89.5342193265205, 14.244815578666302], [-89.7219339668207, 14.134228013561694], [-90.064677903996568, 13.881969509328924], [-90.095554572290951, 13.73533763270073]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Guyana\", \"name\": \"Guyana\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-59.758284878159181, 8.367034816924045], [-59.10168412945864, 7.99920197187049], [-58.482962205628041, 7.347691351750696], [-58.454876064677414, 6.832787380394463], [-58.078103196837361, 6.809093736188641], [-57.542218593970631, 6.321268215353355], [-57.147436489476874, 5.973149929219161], [-57.307245856339492, 5.073566595882225], [-57.914288906472123, 4.812626451024413], [-57.860209520078691, 4.576801052260449], [-58.044694383360664, 4.060863552258382], [-57.601568976457848, 3.334654649260684], [-57.281433478409703, 3.333491929534119], [-57.150097825739898, 2.768926906745406], [-56.53938574891454, 1.89952260986692], [-56.782704230360814, 1.863710842288653], [-57.33582292339689, 1.948537705895759], [-57.660971035377358, 1.682584947105638], [-58.113449876525003, 1.507195135907025], [-58.429477098205957, 1.46394196207872], [-58.540012986878288, 1.26808828369252], [-59.030861579002639, 1.317697658692722], [-59.646043667221242, 1.786893825686789], [-59.718545701726732, 2.249630438644359], [-59.974524909084543, 2.755232652188055], [-59.815413174057852, 3.606498521332085], [-59.538039923731219, 3.958802598481937], [-59.767405768458701, 4.423502915866606], [-60.111002366767373, 4.574966538914082], [-59.980958624904865, 5.014061184098138], [-60.213683437731319, 5.2444863956876], [-60.733574184803707, 5.2002772078619], [-61.410302903881941, 5.959068101419616], [-61.139415045807937, 6.234296779806142], [-61.159336310456467, 6.696077378766317], [-60.543999192940966, 6.856584377464881], [-60.295668097562377, 7.043911444522918], [-60.637972785063752, 7.414999904810853], [-60.550587938058186, 7.779602972846178], [-59.758284878159181, 8.367034816924045]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Honduras\", \"name\": \"Honduras\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-87.316654425795463, 12.984685777229], [-87.48940873894712, 13.29753489832393], [-87.793111131526501, 13.384480495655165], [-87.723502977229288, 13.785050360565602], [-87.859515347021599, 13.893312486217097], [-88.065342576840109, 13.964625962779788], [-88.503997972349609, 13.845485948130939], [-88.541230841815931, 13.98015473068352], [-88.843072882832743, 14.140506700085208], [-89.058511929057644, 14.340029405164213], [-89.353325975282786, 14.424132798719084], [-89.145535041037164, 14.678019110569149], [-89.22522009963123, 14.874286200413675], [-89.154810960633526, 15.066419175674863], [-88.680679694355575, 15.346247056535386], [-88.225022752621925, 15.727722479714027], [-88.121153123715359, 15.688655096901355], [-87.901812506852394, 15.864458319558194], [-87.615680101252309, 15.878798529519198], [-87.522920905288444, 15.797278957578779], [-87.367762417332116, 15.846940009011286], [-86.903191291028165, 15.756712958229565], [-86.440945604177372, 15.782835394753189], [-86.119233974944322, 15.893448798073958], [-86.00195431185783, 16.005405788634388], [-85.68331743034625, 15.953651841693949], [-85.444003872402547, 15.885749009662444], [-85.182443610357183, 15.909158433490628], [-84.98372188997881, 15.995923163308698], [-84.526979743167118, 15.857223619037423], [-84.36825558138257, 15.835157782448729], [-84.063054572266807, 15.648244126849132], [-83.773976610026111, 15.42407176356687], [-83.410381232420363, 15.27090281825377], [-83.147219000974104, 14.995829169164207], [-83.489988776366005, 15.01626719813566], [-83.628584967772866, 14.880073960830368], [-83.975721401693576, 14.749435939996483], [-84.228341640952394, 14.748764146376626], [-84.449335903648588, 14.62161428472251], [-84.64958207877963, 14.666805324761865], [-84.820036790694289, 14.819586696832628], [-84.924500698572302, 14.790492865452332], [-85.052787441736868, 14.551541042534719], [-85.148750576502877, 14.560196844943615], [-85.165364549484806, 14.354369615125048], [-85.514413011400265, 14.079011745657905], [-85.698665330736944, 13.960078436737998], [-85.801294725268505, 13.8360549992376], [-86.096263800790595, 14.03818736414723], [-86.312142096689826, 13.771356106008223], [-86.520708177419891, 13.778487453664464], [-86.755086636079596, 13.754845485890936], [-86.733821784191463, 13.263092556201398], [-86.880557013684353, 13.254204209847213], [-87.005769009127434, 13.025794379117254], [-87.316654425795463, 12.984685777229]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Croatia\", \"name\": \"Croatia\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[18.829838087650039, 45.908877671891837], [19.072768995854172, 45.521511135432078], [19.390475701584588, 45.236515611342369], [19.005486281010118, 44.860233669609144], [18.553214145591646, 45.08158966733145], [17.861783481526398, 45.067740383477137], [17.00214603035101, 45.233776760430935], [16.534939406000202, 45.211607570977705], [16.318156772535868, 45.004126695325901], [15.959367303133373, 45.233776760430935], [15.750026075918978, 44.81871165626255], [16.239660271884528, 44.351143296885695], [16.456442905348862, 44.041239732431265], [16.916156447017325, 43.667722479825663], [17.297373488034449, 43.446340643887353], [17.674921502358981, 43.028562527023603], [18.56, 42.65], [18.450016310304814, 42.47999136002931], [17.509970330483323, 42.84999461523914], [16.930005730871638, 43.209998480800373], [16.015384555737679, 43.507215481127204], [15.174453973052094, 44.243191229827907], [15.376250441151793, 44.317915350922064], [14.920309279040504, 44.73848399512945], [14.901602410550874, 45.076060289076104], [14.258747592839992, 45.233776760430935], [13.952254672917032, 44.802123521496853], [13.65697553880119, 45.136935126315947], [13.679403110415816, 45.484149074884996], [13.715059848697248, 45.500323798192419], [14.411968214585496, 45.466165676447403], [14.595109490627916, 45.63494090431282], [14.935243767972961, 45.471695054702757], [15.327674594797424, 45.452316392593325], [15.323953891672428, 45.731782538427687], [15.671529575267638, 45.8341535507979], [15.768732944408608, 46.23810822202352], [16.564808383864939, 46.503750922219794], [16.882515089595412, 46.380631822284428], [17.630066359129554, 45.951769110694087], [18.456062452882858, 45.759481106136143], [18.829838087650039, 45.908877671891837]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Haiti\", \"name\": \"Haiti\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-73.189790615517595, 19.915683905511909], [-72.579672817663607, 19.871500555902351], [-71.71236141629295, 19.714455878167353], [-71.624873216422813, 19.169837958243303], [-71.701302659782485, 18.785416978424049], [-71.945112067335543, 18.616900132720257], [-71.687737596305865, 18.316660061104468], [-71.708304816358037, 18.044997056546091], [-72.372476162389333, 18.214960842354053], [-72.844411180294856, 18.145611070218362], [-73.454554816365018, 18.217906398994696], [-73.922433234335642, 18.030992743395], [-74.458033616824764, 18.342549953682703], [-74.369925299767118, 18.664907538319408], [-73.449542202432696, 18.526052964751141], [-72.694937099890623, 18.445799465401858], [-72.334881557896992, 18.66842153571525], [-72.791649542924873, 19.101625067618027], [-72.784104783810264, 19.483591416903405], [-73.41502234566174, 19.639550889560276], [-73.189790615517595, 19.915683905511909]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Hungary\", \"name\": \"Hungary\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[16.202298211337361, 46.852385972676949], [16.534267612380372, 47.496170966169103], [16.340584344150411, 47.712901923201215], [16.903754103267257, 47.714865627628321], [16.979666782304033, 48.123497015976298], [17.488472934649813, 47.867466132186209], [17.857132602620023, 47.758428860050365], [18.696512892336923, 47.88095368101439], [18.777024773847668, 48.081768296900627], [19.174364861739885, 48.111378892603859], [19.66136355965849, 48.266614895208647], [19.769470656013109, 48.2026911484636], [20.239054396249344, 48.327567247096916], [20.473562045989862, 48.562850043321809], [20.801293979584919, 48.62385407164237], [21.872236362401729, 48.319970811550007], [22.085608351334848, 48.422264309271782], [22.640819939878746, 48.150239569687351], [22.710531447040488, 47.882193915389394], [22.09976769378283, 47.672439276716695], [21.626514926853869, 46.994237779318148], [21.021952345471245, 46.316087958351886], [20.220192498462833, 46.127468980486547], [19.596044549241579, 46.171729844744533], [18.829838087649957, 45.908877671891915], [18.456062452882858, 45.759481106136121], [17.630066359129554, 45.95176911069418], [16.882515089595298, 46.380631822284428], [16.564808383864854, 46.503750922219822], [16.370504998447412, 46.841327216166498], [16.202298211337361, 46.852385972676949]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Indonesia\", \"name\": \"Indonesia\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[120.715608758630438, -10.239581394087862], [120.295014276206871, -10.258649997603525], [118.967808465654684, -9.55796925215803], [119.900309686361609, -9.361340427287514], [120.425755649905398, -9.665921319215796], [120.775501743656719, -9.969675388227456], [120.715608758630438, -10.239581394087862]]], [[[124.435950148619384, -10.14000090906144], [123.579981724136701, -10.359987481327961], [123.459989048354998, -10.239994805546171], [123.55000939340745, -9.900015557497978], [123.980008986508096, -9.290026950724693], [124.96868248911619, -8.892790215697046], [125.070019972840612, -9.089987481322835], [125.088520135601073, -9.393173109579321], [124.435950148619384, -10.14000090906144]]], [[[117.900018345207741, -8.095681247594923], [118.260616489740471, -8.362383314653327], [118.87845991422212, -8.280682875199828], [119.126506789223086, -8.705824883665072], [117.97040164598927, -8.906639499551257], [117.277730747549015, -9.040894870645557], [116.74014082241662, -9.032936700072637], [117.083737420725313, -8.457157891476539], [117.632024367342126, -8.44930307376819], [117.900018345207741, -8.095681247594923]]], [[[122.903537225436082, -8.094234307490735], [122.756982863456287, -8.649807631060638], [121.2544905945701, -8.933666273639941], [119.924390903809567, -8.810417982623873], [119.920928582846102, -8.44485890059107], [120.715091994307542, -8.236964613480863], [121.341668735846554, -8.53673959720602], [122.007364536630405, -8.46062021244016], [122.903537225436082, -8.094234307490735]]], [[[108.623478631628927, -6.777673841990675], [110.539227329553285, -6.877357679881682], [110.759575636845909, -6.465186455921751], [112.614811232556349, -6.946035658397589], [112.978768345188087, -7.594213148634578], [114.478935174621142, -7.776527601760277], [115.705526971501058, -8.370806573116864], [114.564511346496488, -8.75181690840483], [113.464733514460875, -8.348947442257424], [112.559672479301028, -8.376180922075163], [111.522061395312448, -8.302128594600957], [110.586149530074294, -8.122604668819021], [109.427667270955183, -7.740664157749761], [108.693655226681301, -7.641600437046219], [108.277763299596302, -7.766657403192579], [106.454102004016136, -7.354899590690947], [106.280624220812285, -6.924899997590201], [105.365486281355516, -6.851416110871169], [106.051645949327053, -5.895918877794499], [107.265008579540165, -5.954985039904058], [108.072091099074683, -6.345762220895237], [108.486846144649235, -6.421984958525768], [108.623478631628927, -6.777673841990675]]], [[[134.724624465066654, -6.214400730009286], [134.210133905168902, -6.895237725454704], [134.112775506730998, -6.142467136259014], [134.290335728085779, -5.783057549669038], [134.499625278867882, -5.445042006047898], [134.727001580952106, -5.737582289252158], [134.724624465066654, -6.214400730009286]]], [[[127.249215122588893, -3.459065036638889], [126.874922723498855, -3.790982761249579], [126.183802118027302, -3.607376397316556], [125.989033644719257, -3.177273451351325], [127.00065148326496, -3.12931772218441], [127.249215122588893, -3.459065036638889]]], [[[130.471344028851775, -3.09376433676762], [130.834836053592767, -3.858472181822761], [129.990546502808115, -3.446300957862817], [129.155248651242403, -3.362636813982248], [128.590683628453633, -3.428679294451256], [127.898891229362334, -3.393435967628192], [128.135879347852779, -2.843650404474914], [129.370997756060888, -2.802154229344551], [130.471344028851775, -3.09376433676762]]], [[[134.143367954647772, -1.151867364103594], [134.422627394753022, -2.769184665542383], [135.457602980694674, -3.367752780779113], [136.293314243718754, -2.30704233155609], [137.4407377463275, -1.703513278819372], [138.329727411044757, -1.70268645590265], [139.18492068904294, -2.051295668143637], [139.926684198160387, -2.409051608900284], [141.000210402591847, -2.600151055515624], [141.017056919519007, -5.85902190513802], [141.033851760013874, -9.117892754760417], [140.143415155192542, -8.297167657100955], [139.127766554928087, -8.096042982620942], [138.881476678624949, -8.380935153846094], [137.614473911692812, -8.41168263105976], [138.039099155835174, -7.597882175327354], [138.668621454014783, -7.320224704623072], [138.407913853102343, -6.232849216337483], [137.927839797110835, -5.393365573755998], [135.989250116113453, -4.546543877789047], [135.164597609599667, -4.462931410340771], [133.662880487197867, -3.538853448097526], [133.367704705946778, -4.024818617370314], [132.983955519747326, -4.112978610860281], [132.75694095268895, -3.746282647317129], [132.753788690319197, -3.311787204607071], [131.989804315316178, -2.820551039240455], [133.066844517143466, -2.460417982598443], [133.780030959203486, -2.479848321140209], [133.69621178602614, -2.214541517753687], [132.232373488494204, -2.212526136894325], [131.836221958544684, -1.617161960459597], [130.942839797082797, -1.432522067880796], [130.519558140180038, -0.937720228686075], [131.867537876513609, -0.695461114101818], [132.380116408416768, -0.369537855636977], [133.985548130428384, -0.780210463060442], [134.143367954647772, -1.151867364103594]]], [[[125.240500522971573, 1.419836127117605], [124.43703535369734, 0.427881171058971], [123.685504998876695, 0.235593166500877], [122.723083123872854, 0.431136786293337], [121.056724888189081, 0.381217352699451], [120.18308312386273, 0.23724681233422], [120.040869582195455, -0.519657891444851], [120.935905389490699, -1.408905938323372], [121.475820754076167, -0.955962009285116], [123.34056481332847, -0.615672702643081], [123.258399285984481, -1.076213067228337], [122.822715285331597, -0.930950616055881], [122.388529901215364, -1.516858005381124], [121.508273553555455, -1.904482924002422], [122.454572381684272, -3.186058444840881], [122.271896193532541, -3.529500013852696], [123.170962762546537, -4.683693129091707], [123.162332798353759, -5.34060393638596], [122.628515252778683, -5.634591159694494], [122.236394484548057, -5.282933037948281], [122.71956912647704, -4.46417164471579], [121.738233677254357, -4.851331475446499], [121.48946333220124, -4.574552504091215], [121.619171177253861, -4.188477878438674], [120.898181593917684, -3.602105401222828], [120.972388950688767, -2.627642917494909], [120.305452915529884, -2.931603692235725], [120.39004723519173, -4.097579034037223], [120.430716587405371, -5.528241062037778], [119.796543410319487, -5.67340016034565], [119.36690555224493, -5.379878024927804], [119.653606398600104, -4.459417412944958], [119.498835483885969, -3.49441171632651], [119.078344354326987, -3.487021986508764], [118.767768996252869, -2.801999200047688], [119.180973748858662, -2.147103773612798], [119.323393996255049, -1.35314706788047], [119.825998976725828, 0.154254462073496], [120.035701938966341, 0.566477362465804], [120.885779250167687, 1.309222723796835], [121.666816847826965, 1.013943589681076], [122.927566766451818, 0.875192368977465], [124.077522414242836, 0.917101955566139], [125.065989211121803, 1.643259182131558], [125.240500522971573, 1.419836127117605]]], [[[128.688248732620707, 1.132385972494106], [128.635952183141342, 0.258485826006179], [128.120169712436166, 0.356412665199286], [127.968034295768845, -0.252077325037533], [128.379998813999691, -0.780003757331286], [128.100015903842291, -0.899996433112974], [127.69647464407501, -0.266598402511505], [127.399490187693743, 1.011721503092573], [127.600511509309044, 1.81069082275718], [127.932377557487484, 2.174596258956555], [128.004156121940809, 1.628531398928331], [128.594559360875451, 1.540810655112864], [128.688248732620707, 1.132385972494106]]], [[[117.875627069166001, 1.827640692548911], [118.996747267738158, 0.902219143066048], [117.811858351717788, 0.784241848143722], [117.478338657706047, 0.102474676917026], [117.521643507966587, -0.803723239753211], [116.560048455879496, -1.487660821136231], [116.533796828275158, -2.483517347832901], [116.148083937648607, -4.012726332214014], [116.000857782049067, -3.657037448749008], [114.864803094544513, -4.106984144714416], [114.468651564595064, -3.49570362713382], [113.755671828264099, -3.439169610206519], [113.256994256647545, -3.118775729996854], [112.068126255340644, -3.478392022316071], [111.703290643359992, -2.994442233902631], [111.04824018762821, -3.049425957861188], [110.223846063275971, -2.934032484553483], [110.070935500124335, -1.592874037282414], [109.571947869914041, -1.314906507984489], [109.091873813922518, -0.459506524257051], [108.952657505328162, 0.415375474444346], [109.069136183714036, 1.341933905437642], [109.663260125773718, 2.006466986494984], [109.830226678508836, 1.338135687664191], [110.514060907027101, 0.773131415200993], [111.159137811326559, 0.976478176269509], [111.797548455860408, 0.904441229654651], [112.380251906383648, 1.410120957846757], [112.859809198052176, 1.497790025229946], [113.805849644019531, 1.217548732911041], [114.621355422017473, 1.430688177898886], [115.134037306785231, 2.821481838386219], [115.51907840379198, 3.169238389494395], [115.86551720587677, 4.306559149590156], [117.01521447150634, 4.306094061699468], [117.882034946770162, 4.137551377779487], [117.313232456533513, 3.234428208830578], [118.048329705885351, 2.287690131027361], [117.875627069166001, 1.827640692548911]]], [[[105.817655063909356, -5.852355645372411], [104.710384149191498, -5.873284600450644], [103.868213332130736, -5.037314955264974], [102.584260695406897, -4.220258884298203], [102.156173130300999, -3.614146009946765], [101.399113397225051, -2.799777113459171], [100.902502882900137, -2.05026213949786], [100.141980828860596, -0.650347588710957], [99.26373986206022, 0.183141587724663], [98.970011020913319, 1.042882391764536], [98.601351352943084, 1.823506577965616], [97.699597609449881, 2.453183905442116], [97.17694217324987, 3.30879059489861], [96.424016554757316, 3.86885976807791], [95.380876092513475, 4.970782172053673], [95.293026157617305, 5.479820868344816], [95.936862827541745, 5.439513251157108], [97.484882033277088, 5.24632090903401], [98.369169142655679, 4.268370266126366], [99.142558628335792, 3.590349636240915], [99.693997837322399, 3.174328518075156], [100.641433546961665, 2.099381211755798], [101.658012323007313, 2.083697414555189], [102.498271112073212, 1.398700466310217], [103.076840448013002, 0.561361395668854], [103.838396030698348, 0.104541734208666], [103.437645298274973, -0.711945896002845], [104.010788608824001, -1.059211521004229], [104.369991489684878, -1.084843031421016], [104.539490187602155, -1.782371514496716], [104.887892694113987, -2.340425306816655], [105.622111444116982, -2.42884368246807], [106.10859337771268, -3.06177662517895], [105.857445916774111, -4.305524997579723], [105.817655063909356, -5.852355645372411]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"India\", \"name\": \"India\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[77.837450799474553, 35.494009507787759], [78.912268914713209, 34.321936346975782], [78.811086460285722, 33.506198025032404], [79.208891636068572, 32.994394639613709], [79.176128777995501, 32.483779812137705], [78.458446486325997, 32.61816437431272], [78.738894484374001, 31.515906073527056], [79.721366815107089, 30.882714748654724], [81.11125613802929, 30.183480943313398], [80.476721225917373, 29.729865220655334], [80.088424513676259, 28.794470119740136], [81.057202589851997, 28.416095282499036], [81.999987420584958, 27.925479234319987], [83.304248895199535, 27.364505723575554], [84.675017938173767, 27.234901231387528], [85.25177859898335, 26.726198431906337], [86.024392938179147, 26.630984605408567], [87.22747195836628, 26.39789805755607], [88.060237664749806, 26.414615383402484], [88.174804315140904, 26.810405178325944], [88.043132765661198, 27.445818589786818], [88.120440708369841, 27.876541652939586], [88.730325962278528, 28.086864732367509], [88.814248488320544, 27.299315904239361], [88.835642531289366, 27.098966376243755], [89.744527622438838, 26.71940298105995], [90.37327477413406, 26.875724188742872], [91.217512648486405, 26.808648179628019], [92.033483514375078, 26.838310451763554], [92.10371178585973, 27.4526140406332], [91.69665652869665, 27.771741848251661], [92.503118931043616, 27.896876329046442], [93.413347609432662, 28.640629380807219], [94.565990431702929, 29.277438055939978], [95.404802280664612, 29.031716620392125], [96.117678664131006, 29.452802028922459], [96.586590610747479, 28.830979519154337], [96.248833449287758, 28.411030992134435], [97.327113885490007, 28.261582749946331], [97.402561476636123, 27.88253611908544], [97.051988559968066, 27.699058946233144], [97.133999058015277, 27.08377350514996], [96.419365675850941, 27.264589341739221], [95.124767694074933, 26.573572089132295], [95.155153436262566, 26.001307277932078], [94.603249139385355, 25.162495428970399], [94.552657912171611, 24.675238348890328], [94.106741977925054, 23.850740871673477], [93.325187615942767, 24.078556423432197], [93.286326938859247, 23.043658352138998], [93.060294224014598, 22.703110663335565], [93.166127557348361, 22.278459580977099], [92.672720981825549, 22.041238918541247], [92.146034783906799, 23.62749868417259], [91.869927606171302, 23.62434642180278], [91.706475050832083, 22.985263983649183], [91.158963250699713, 23.503526923104381], [91.467729933643668, 24.072639471934789], [91.915092807994398, 24.130413723237108], [92.376201613334786, 24.976692816664961], [91.799595981822065, 25.14743174895731], [90.872210727912105, 25.13260061288954], [89.920692580121838, 25.269749864192171], [89.832480910199592, 25.965082098895476], [89.355094028687276, 26.014407253518065], [88.56304935094974, 26.446525580342716], [88.209789259802477, 25.768065700782707], [88.931553989623069, 25.238692328384769], [88.30637251175601, 24.866079413344199], [88.084422235062405, 24.501657212821918], [88.699940220090895, 24.233714911388557], [88.529769728553759, 23.631141872649163], [88.876311883503064, 22.879146429937826], [89.031961297566198, 22.055708319582973], [88.888765903685396, 21.690588487224741], [88.208497348995209, 21.703171698487804], [86.975704380240259, 21.495561631755201], [87.033168572948853, 20.743307806882406], [86.499351027373777, 20.151638495356604], [85.060265740909671, 19.478578802971096], [83.941005893899998, 18.302009792549722], [83.189217156917834, 17.671221421778977], [82.192792189465905, 17.016636053937813], [82.191241896497175, 16.556664130107844], [81.692719354177456, 16.3102192245079], [80.791999139330116, 15.951972357644488], [80.324895867843864, 15.899184882058346], [80.025069207686428, 15.136414903214144], [80.23327355339039, 13.835770778859978], [80.286293572921849, 13.006260687710832], [79.862546828128487, 12.056215318240886], [79.85799930208681, 10.357275091997108], [79.340511509115984, 10.308854274939618], [78.885345493489169, 9.54613597252772], [79.189719679688281, 9.216543687370146], [78.27794070833049, 8.933046779816932], [77.94116539908434, 8.25295909263974], [77.539897902337927, 7.965534776232331], [76.592978957021657, 8.899276231314188], [76.130061476551063, 10.299630031775518], [75.746467319648488, 11.308250637248303], [75.396101108709573, 11.781245022015822], [74.864815708316812, 12.741935736537895], [74.616717156883524, 13.992582912649677], [74.443859490867197, 14.617221787977693], [73.534199253233368, 15.990652167214957], [73.119909295549419, 17.928570054592495], [72.820909458308634, 19.208233547436162], [72.824475132136783, 20.41950328214153], [72.630533481745388, 21.356009426351001], [71.175273471973938, 20.757441311114228], [70.470458611945091, 20.877330634031381], [69.164130080038817, 22.089298000572697], [69.644927606082391, 22.450774644454334], [69.349596795534325, 22.843179633062686], [68.176645135373377, 23.691965033456704], [68.842599318318761, 24.359133612560932], [71.0432401874682, 24.356523952730193], [70.844699334602822, 25.215102037043511], [70.282873162725579, 25.722228705339823], [70.168926629522005, 26.491871649678835], [69.514392938113119, 26.940965684511365], [70.61649620960192, 27.989196275335861], [71.777665643200308, 27.913180243434521], [72.823751662084689, 28.961591701772047], [73.450638462217412, 29.976413479119863], [74.421380242820263, 30.97981476493117], [74.405928989564998, 31.692639471965272], [75.258641798813187, 32.271105455040491], [74.451559279278698, 32.764899603805489], [74.104293654277328, 33.441473293586846], [73.749948358051952, 34.317698879527846], [74.240202671204955, 34.748887030571247], [75.757060988268321, 34.504922593721311], [76.871721632804011, 34.653544012992732], [77.837450799474553, 35.494009507787759]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Ireland\", \"name\": \"Ireland\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-6.197884894220989, 53.86756500916335], [-6.032985398777609, 53.153164170944336], [-6.788856573910847, 52.260117906292322], [-8.561616583683557, 51.669301255899349], [-9.977085740590267, 51.820454820353071], [-9.16628251793078, 52.864628811242667], [-9.688524542672452, 53.881362616585285], [-8.327987433292007, 54.664518947968624], [-7.572167934591064, 55.131622219454854], [-7.366030646178785, 54.595840969452709], [-7.572167934591064, 54.059956366585986], [-6.953730231138065, 54.073702297575622], [-6.197884894220989, 53.86756500916335]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Iran\", \"name\": \"Iran\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[53.921597934795543, 37.198918361961255], [54.800303989486558, 37.392420762678178], [55.511578403551894, 37.964117133123153], [56.180374790273319, 37.935126654607423], [56.619366082592805, 38.121394354803478], [57.330433790928964, 38.029229437810933], [58.436154412678192, 37.522309475243794], [59.234761997316795, 37.412987982730336], [60.377637973883864, 36.52738312432836], [61.123070509694131, 36.491597194966239], [61.21081709172573, 35.650072333309218], [60.80319339380744, 34.404101874319856], [60.528429803311575, 33.676446031217999], [60.963700392505991, 33.528832302376252], [60.536077915290761, 32.981268825811561], [60.863654819588952, 32.182919623334421], [60.941944614511115, 31.548074652628745], [61.699314406180811, 31.379506130492661], [61.78122155136343, 30.735850328081231], [60.874248488208778, 29.829238999952604], [61.369308709564926, 29.303276272085917], [61.771868117118615, 28.699333807890792], [62.727830438085974, 28.259644883735383], [62.755425652929851, 27.378923448184985], [63.23389773952028, 27.217047024030702], [63.316631707619578, 26.756532497661659], [61.874187453056535, 26.239974880472097], [61.497362908784183, 25.078237006118492], [59.616134067630831, 25.380156561783775], [58.525761346272297, 25.609961656185725], [57.39725141788238, 25.739902045183634], [56.97076582217754, 26.966106268821356], [56.492138706290199, 27.14330475515019], [55.723710158110059, 26.964633490501036], [54.715089552637252, 26.480657863871507], [53.493096958231334, 26.812368882753042], [52.483597853409599, 27.580849107365488], [51.520762566947404, 27.865689602158291], [50.852948032439528, 28.814520575469377], [50.115008579311571, 30.14777252859971], [49.576850213423988, 29.9857152369324], [48.941333449098536, 30.31709035900403], [48.567971225789748, 29.926778265903515], [48.014568312376085, 30.452456773392594], [48.00469811380831, 30.985137437457237], [47.685286085812258, 30.984853217079621], [47.849203729042095, 31.709175930298663], [47.334661492711895, 32.469155381799105], [46.109361606639304, 33.017287299118998], [45.416690708199035, 33.967797756479577], [45.648459507028079, 34.748137722303007], [46.15178795755093, 35.093258775364284], [46.076340366404786, 35.67738332777548], [45.420618117053202, 35.977545884742817], [44.77267, 37.17045], [44.225755649600522, 37.971584377589345], [44.421402622257538, 38.281281236314534], [44.109225294782334, 39.428136298168091], [44.793989699081934, 39.713002631177041], [44.9526880226503, 39.335764675446363], [45.457721795438765, 38.874139105783051], [46.143623081248812, 38.74120148371221], [46.505719842317966, 38.770605373686287], [47.685079380083081, 39.508363959301207], [48.060095249225235, 39.582235419262453], [48.355529412637871, 39.2887649602769], [48.010744256386474, 38.794014797514514], [48.634375441284803, 38.27037750910096], [48.883249139202483, 38.32024526626261], [49.199612257693332, 37.582874253889877], [50.147771437384606, 37.37456655532133], [50.842354363819695, 36.872814235983384], [52.26402469260141, 36.700421657857696], [53.825789829326411, 36.965030829408228], [53.921597934795543, 37.198918361961255]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Iraq\", \"name\": \"Iraq\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[45.420618117053202, 35.977545884742817], [46.076340366404786, 35.67738332777548], [46.15178795755093, 35.093258775364284], [45.648459507028079, 34.748137722303007], [45.416690708199035, 33.967797756479577], [46.109361606639304, 33.017287299118998], [47.334661492711895, 32.469155381799105], [47.849203729042095, 31.709175930298663], [47.685286085812258, 30.984853217079621], [48.00469811380831, 30.985137437457237], [48.014568312376085, 30.452456773392594], [48.567971225789748, 29.926778265903515], [47.974519077349889, 29.975819200148493], [47.302622104690947, 30.059069932570711], [46.568713413281742, 29.099025173452283], [44.709498732284736, 29.178891099559376], [41.889980910007829, 31.190008653278362], [40.399994337736238, 31.889991766887931], [39.195468377444961, 32.16100881604266], [38.792340529136077, 33.378686428352218], [41.00615888851992, 34.419372260062111], [41.383965285005807, 35.628316555314349], [41.289707472505448, 36.358814602192261], [41.837064243340954, 36.605853786763568], [42.349591098811764, 37.22987254490409], [42.779125604021822, 37.385263576805741], [43.942258742047287, 37.256227525372942], [44.293451775902852, 37.001514390606289], [44.772699008977689, 37.170444647768427], [45.420618117053202, 35.977545884742817]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Iceland\", \"name\": \"Iceland\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-14.508695441129232, 66.455892239031414], [-14.739637417041605, 65.808748277440287], [-13.609732224979807, 65.126671047619851], [-14.9098337467949, 64.36408193628867], [-17.794438035543418, 63.67874909123384], [-18.656245896874989, 63.496382961675806], [-19.972754685942757, 63.643634955491514], [-22.762971971110154, 63.960178941495371], [-21.778484259517676, 64.402115790455497], [-23.955043911219104, 64.891129869233481], [-22.184402635170354, 65.084968166760291], [-22.227423265053329, 65.378593655042721], [-24.326184047939332, 65.611189276788451], [-23.650514695723082, 66.262519029395207], [-22.134922451250883, 66.410468655046856], [-20.576283738679543, 65.732112128351417], [-19.056841600001587, 66.276600857194751], [-17.798623826559048, 65.993853257909763], [-16.167818976292121, 66.526792304135853], [-14.508695441129232, 66.455892239031414]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Israel\", \"name\": \"Israel\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[35.719918247222743, 32.709192409794859], [35.545665317534535, 32.393992011030569], [35.183930291491428, 32.532510687788935], [34.974640740709319, 31.866582343059715], [35.225891554512422, 31.754341132121759], [34.970506626125989, 31.616778469360803], [34.927408481594554, 31.35343537040141], [35.397560662586038, 31.489086005167572], [35.420918409981958, 31.100065822874349], [34.922602573391423, 29.501326198844517], [34.26543338393568, 31.219360866820146], [34.556371697738903, 31.548823960896989], [34.48810713068135, 31.605538845337314], [34.752587111151165, 32.07292633720116], [34.955417107896771, 32.827376410446369], [35.098457472480668, 33.080539252244257], [35.126052687324538, 33.090900376918775], [35.460709262846699, 33.089040025356276], [35.552796665190805, 33.264274807258012], [35.821100701650231, 33.277426459276292], [35.836396925608618, 32.868123277308506], [35.700797967274745, 32.716013698857374], [35.719918247222743, 32.709192409794859]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Italy\", \"name\": \"Italy\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[15.52037601081383, 38.231155096991465], [15.160242954171732, 37.444045518537813], [15.309897902089002, 37.134219468731793], [15.099988234119445, 36.61998729099539], [14.335228712632013, 36.996630967754747], [13.826732618879927, 37.104531358380186], [12.431003859108809, 37.612949937483812], [12.570943637755132, 38.126381130519682], [13.741156447004581, 38.03496552179535], [14.761249220446157, 38.143873602850498], [15.52037601081383, 38.231155096991465]]], [[[9.210011834356264, 41.209991360024212], [9.809975213264973, 40.500008856766094], [9.669518670295671, 39.177376410471787], [9.214817742559486, 39.240473334300127], [8.806935662479729, 38.906617743478471], [8.428302443077113, 39.171847032216611], [8.388253208050939, 40.378310858718798], [8.159998406617659, 40.950007229163774], [8.709990675500107, 40.899984442705225], [9.210011834356264, 41.209991360024212]]], [[[12.376485223040842, 46.767559109069872], [13.806475457421552, 46.50930613869118], [13.698109978905475, 46.016778062517368], [13.937630242578335, 45.59101593686465], [13.141606479554294, 45.736691799495411], [12.328581170306304, 45.38177806251484], [12.383874952858601, 44.885374253919075], [12.261453484759157, 44.600482082694008], [12.589237094786482, 44.091365871754462], [13.526905958722491, 43.587727362637899], [14.029820997787024, 42.761007798832473], [15.142569614327952, 41.955139675456891], [15.926191033601892, 41.961315009115729], [16.169897088290409, 41.740294908203417], [15.889345737377793, 41.541082261718195], [16.785001661860573, 41.179605617836579], [17.519168735431204, 40.877143459632229], [18.376687452882575, 40.355624904942651], [18.4802470231954, 40.168866278639818], [18.293385044028096, 39.810774441073235], [17.738380161213279, 40.277671006830289], [16.869595981522334, 40.442234605463838], [16.448743116937319, 39.795400702466473], [17.171489698971495, 39.424699815420716], [17.052840610429339, 38.902871202137291], [16.635088331781841, 38.843572496082395], [16.100960727613053, 37.985898749334176], [15.684086948314498, 37.908849188787023], [15.687962680736318, 38.214592800441849], [15.891981235424705, 38.750942491199218], [16.109332309644312, 38.964547024077682], [15.718813510814638, 39.544072374014938], [15.413612501698818, 40.048356838535163], [14.998495721098234, 40.172948716790913], [14.703268263414767, 40.604550279292617], [14.06067182786526, 40.786347968095434], [13.627985060285393, 41.188287258461649], [12.888081902730418, 41.253089504555604], [12.106682570044907, 41.7045348170574], [11.191906365614184, 42.355425319989671], [10.511947869517794, 42.93146251074721], [10.200028924204046, 43.920006822274608], [9.702488234097812, 44.036278794931313], [8.888946160526869, 44.366336167979533], [8.428560825238575, 44.23122813575241], [7.8507666357832, 43.767147935555236], [7.435184767291841, 43.693844916349164], [7.549596388386161, 44.127901109384808], [7.007562290076661, 44.254766750661382], [6.749955275101711, 45.028517971367584], [7.096652459347835, 45.333098863295859], [6.80235517744566, 45.708579820328673], [6.84359297041456, 45.991146552100659], [7.273850945676683, 45.776947740250748], [7.755992058959832, 45.824490057959267], [8.316629672894377, 46.16364248309084], [8.489952426801294, 46.005150865251736], [8.966305779667833, 46.03693187111115], [9.18288170740311, 46.440214748716976], [9.92283654139035, 46.314899400409182], [10.363378126678665, 46.48357127540983], [10.4427014502466, 46.893546250997431], [11.048555942436504, 46.751358547546396], [11.164827915093325, 46.941579494812729], [12.153088006243079, 47.115393174826423], [12.376485223040842, 46.767559109069872]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Jamaica\", \"name\": \"Jamaica\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-77.569600796199197, 18.490525417550483], [-76.896618618462114, 18.400866807524078], [-76.365359056285527, 18.16070058844759], [-76.19965857614163, 17.886867173732963], [-76.902561408175671, 17.868237819891743], [-77.206341315403449, 17.701116237859818], [-77.766022915340599, 17.861597398342237], [-78.337719285785596, 18.225967922432226], [-78.217726610003865, 18.454532782459193], [-77.797364671525614, 18.524218451404774], [-77.569600796199197, 18.490525417550483]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Jordan\", \"name\": \"Jordan\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[35.545665317534535, 32.393992011030569], [35.719918247222743, 32.709192409794859], [36.834062127435537, 32.312937526980768], [38.792340529136077, 33.378686428352218], [39.195468377444961, 32.16100881604266], [39.004885695152545, 32.010216986614971], [37.002165561681004, 31.508412990844736], [37.998848911294367, 30.508499864213128], [37.668119744626374, 30.338665269485894], [37.503581984209028, 30.003776150018396], [36.740527784987243, 29.865283311476183], [36.501214227043583, 29.505253607698702], [36.068940870922049, 29.19749461518445], [34.956037225084252, 29.356554673778835], [34.922602573391423, 29.501326198844517], [35.420918409981958, 31.100065822874349], [35.397560662586038, 31.489086005167572], [35.545251906076196, 31.782504787720832], [35.545665317534535, 32.393992011030569]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Japan\", \"name\": \"Japan\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[134.638428176003856, 34.149233710256418], [134.766379022358478, 33.806334743783673], [134.20341596897083, 33.201177883429622], [133.792950067276479, 33.521985175097583], [133.280268182508848, 33.289570420864941], [133.014858026257855, 32.704567369104772], [132.363114862192674, 32.989382025681373], [132.371176385630179, 33.463642483040068], [132.924372593314786, 34.060298570282036], [133.492968377822194, 33.944620876596694], [133.904106073136347, 34.364931138642611], [134.638428176003856, 34.149233710256418]]], [[[140.976387567305267, 37.142074286440156], [140.599769728762084, 36.343983466124534], [140.774074334882641, 35.842877102190229], [140.253279250245072, 35.138113918593653], [138.975527785396196, 34.667600002576101], [137.217598911691198, 34.606285915661843], [135.792983026268871, 33.46480520276662], [135.120982700745401, 33.849071153289053], [135.07943484918269, 34.596544908174813], [133.340316196831964, 34.375938218720755], [132.156770868051296, 33.904933376596503], [130.986144647343451, 33.885761420216276], [132.000036248910021, 33.149992377244608], [131.33279015515734, 31.450354519164836], [130.68631798718593, 31.029579169228235], [130.202419875204953, 31.418237616495411], [130.447676222862128, 32.319474595665717], [129.81469160371887, 32.610309556604385], [129.408463169472554, 33.296055813117583], [130.353935174684636, 33.604150702441693], [130.878450962447118, 34.232742824840031], [131.884229364143891, 34.749713853487911], [132.617672967662486, 35.433393052709413], [134.608300815977771, 35.731617743465812], [135.677537876528902, 35.527134100886819], [136.723830601142424, 37.304984239240376], [137.390611607004473, 36.827390651998819], [138.857602166906247, 37.827484646143454], [139.426404657142882, 38.215962225897634], [140.054790073812057, 39.438807481436378], [139.883379347899847, 40.563312486323682], [140.305782505453664, 41.195005194659551], [141.368973423426667, 41.378559882160282], [141.914263136970476, 39.991616115878678], [141.884600864834965, 39.18086456965149], [140.959489373945729, 38.174000962876583], [140.976387567305267, 37.142074286440156]]], [[[143.910161981379474, 44.174099839853724], [144.613426548439634, 43.960882880217511], [145.320825230083074, 44.384732977875437], [145.543137241802754, 43.262088324550596], [144.059661899999867, 42.988358262700551], [143.183849725517291, 41.995214748699183], [141.611490920172457, 42.678790595056071], [141.067286411706618, 41.58459381770799], [139.95510623592105, 41.56955597591103], [139.817543573159924, 42.563758856774392], [140.312087030193169, 43.333272610032644], [141.380548944259999, 43.388824774746489], [141.671952345953912, 44.772125352551477], [141.967644891527982, 45.551483466161343], [143.142870314709796, 44.510358384776957], [143.910161981379474, 44.174099839853724]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Kazakhstan\", \"name\": \"Kazakhstan\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[70.962314894499272, 42.26615428320553], [70.388964878220776, 42.081307684897517], [69.070027296835221, 41.384244289712335], [68.632482944620037, 40.668680731766855], [68.259895867795635, 40.662324530594894], [67.985855747351806, 41.135990708982199], [66.714047072216587, 41.168443508461557], [66.510648634715707, 41.987644151368549], [66.023391554635609, 41.994646307944031], [66.098012322865188, 42.997660020513074], [64.90082441595932, 43.728080552742647], [63.18578698105658, 43.650074978197999], [62.013300408786264, 43.504476630215649], [61.05831994003249, 44.405816962250576], [60.239971958258472, 44.784036770194739], [58.689989048095796, 45.500013739598721], [58.503127068928428, 45.58680430763296], [55.928917270741167, 44.995858466159163], [55.968191359283011, 41.30864166926937], [55.455251092353805, 41.259859117185826], [54.755345493392653, 42.04397146256661], [54.079417759014959, 42.324109402020831], [52.944293247291725, 42.116034247397572], [52.502459751196277, 41.783315538086462], [52.446339145727208, 42.027150783855561], [52.692112257707251, 42.443895372073364], [52.501426222550315, 42.792297878585188], [51.342427199108201, 43.132974758469338], [50.891291945200223, 44.031033637053774], [50.339129266161358, 44.284015611338468], [50.305642938036257, 44.609835516938908], [51.278503452363211, 44.514854234386448], [51.316899041556034, 45.245998236667894], [52.167389764215713, 45.408391425145098], [53.040876499245194, 45.259046535821753], [53.220865512917712, 46.23464590105992], [53.042736850807771, 46.853006089864486], [52.042022739475598, 46.804636949239232], [51.191945428274252, 47.048704738953909], [50.034083286342465, 46.608989976582208], [49.10116, 46.39933000000012], [48.593241001180495, 46.561034247415471], [48.694733514201729, 47.075628160177921], [48.057253045449258, 47.743752753279516], [47.315231154170242, 47.715847479841948], [46.466445753776256, 48.394152330104923], [47.043671502476506, 49.1520388860976], [46.751596307162728, 49.35600576435376], [47.549480421749301, 50.454698391311119], [48.577841424357523, 49.874759629915658], [48.702381626181008, 50.605128485712825], [50.766648390512145, 51.692762356159889], [52.328723585830957, 51.71865224873811], [54.53287845237621, 51.026239732459302], [55.716940545479801, 50.62171662047853], [56.777961053296551, 51.043551337277037], [58.363290643146733, 51.063653469438563], [59.642282342370599, 50.545442206415707], [59.932807244715484, 50.842194118851857], [61.337424350840919, 50.799070136104248], [61.588003371024158, 51.2726587998432], [59.967533807215531, 51.960420437215696], [60.927268507740258, 52.447548326215028], [60.739993117114572, 52.719986477257734], [61.699986199800584, 52.979996446334255], [60.978066440683151, 53.664993394579128], [61.436591424409052, 54.006264553434775], [65.178533563095911, 54.354227810272093], [65.66687584825398, 54.601266994843449], [68.169100376258811, 54.970391750704309], [69.068166945272864, 55.385250149143516], [70.865266554655122, 55.169733588270091], [71.180131056609397, 54.133285224008247], [72.224150018202167, 54.376655381886728], [73.508516066384388, 54.035616766976588], [73.425678745420427, 53.489810289109741], [74.384845005190044, 53.546861070360066], [76.891100294913414, 54.490524400441913], [76.525179477854735, 54.177003485727127], [77.800915561844221, 53.404414984747561], [80.035559523441663, 50.864750881547238], [80.568446893235475, 51.388336493528456], [81.945985548839914, 50.812195949906354], [83.383003778012366, 51.069182847693909], [83.935114780618832, 50.889245510453563], [84.416377394553052, 50.311399644565817], [85.115559523462011, 50.117302964877631], [85.541269972682457, 49.69285858824815], [86.829356723989619, 49.826674709668154], [87.359970330762664, 49.214980780629148], [86.598776483103379, 48.549181626980605], [85.768232863308285, 48.455750637396974], [85.72048383987071, 47.452969468773112], [85.164290399113355, 47.000955715516099], [83.180483839860443, 47.330031236350848], [82.458925815769106, 45.539649563166499], [81.947070753918112, 45.317027492853235], [79.966106398441397, 44.917516994804643], [80.866206496101356, 43.180362046881037], [80.180150180994289, 42.920067857426936], [80.259990268885332, 42.349999294599101], [79.643645460940135, 42.496682847659649], [79.142177361979776, 42.856092434249589], [77.658391961583206, 42.960685533208327], [76.000353631498555, 42.988022365890622], [75.636964959622091, 42.877899888676765], [74.212865838522575, 43.298339341803505], [73.645303582660901, 43.091271877609863], [73.489757521462337, 42.500894476891276], [71.844638299450637, 42.845395412765178], [71.186280552052253, 42.704292914392219], [70.962314894499272, 42.26615428320553]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Kenya\", \"name\": \"Kenya\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[40.993, -0.85829], [41.58513, -1.68325], [40.88477, -2.08255], [40.63785, -2.49979], [40.26304, -2.57309], [40.12119, -3.27768], [39.80006, -3.68116], [39.60489, -4.34653], [39.20222, -4.67677], [37.7669, -3.67712], [37.69869, -3.09699], [34.07262, -1.05982], [33.903711197104521, -0.95], [33.893568969666937, 0.109813537861896], [34.18, 0.515], [34.6721, 1.17694], [35.03599, 1.90584], [34.59607, 3.05374], [34.47913, 3.5556], [34.005, 4.249884947362047], [34.620196267853871, 4.847122742081987], [35.298007118232974, 5.506], [35.817447662353501, 5.338232082790795], [35.817447662353501, 4.776965663461889], [36.159078632855639, 4.447864127672768], [36.855093238008116, 4.447864127672768], [38.120915, 3.598605], [38.43697, 3.58851], [38.67114, 3.61607], [38.89251, 3.50074], [39.559384258765846, 3.42206], [39.85494, 3.83879], [40.76848, 4.25702], [41.1718, 3.91909], [41.855083092643966, 3.918911920483726], [40.98105, 2.78452], [40.993, -0.85829]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Kyrgyzstan\", \"name\": \"Kyrgyzstan\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[70.96231489449913, 42.266154283205481], [71.186280552052111, 42.704292914392127], [71.84463829945058, 42.845395412765093], [73.489757521462337, 42.500894476891311], [73.645303582660901, 43.09127187760982], [74.212865838522546, 43.298339341803363], [75.636964959622006, 42.877899888676673], [76.000353631498442, 42.988022365890664], [77.658391961583206, 42.960685533208256], [79.142177361979762, 42.856092434249511], [79.643645460940107, 42.496682847659514], [80.259990268885289, 42.349999294599044], [80.119430373051358, 42.123940741538235], [78.543660923175295, 41.582242540038685], [78.187196893225959, 41.185315863604792], [76.904484490877067, 41.066485907549634], [76.526368035797432, 40.427946071935111], [75.467827996730691, 40.562072251948663], [74.776862420556043, 40.366425279291619], [73.822243686828287, 39.893973497063179], [73.960013055318413, 39.660008449861721], [73.67537926625478, 39.431236884105594], [71.784693637991992, 39.279463202464363], [70.549161818325601, 39.604197902986492], [69.464886915977516, 39.526683254548693], [69.559609816368507, 40.103211371412968], [70.648018833299957, 39.935753892571157], [71.014198032520156, 40.244365546218226], [71.774875115856545, 40.145844428053763], [73.055417108049156, 40.86603302668945], [71.870114780570447, 41.392900092121259], [71.157858514291576, 41.143587144529107], [70.420022414028196, 41.519998277343134], [71.259247674448218, 42.167710679689456], [70.96231489449913, 42.266154283205481]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Cambodia\", \"name\": \"Cambodia\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[103.497279901139677, 10.632555446815926], [103.090689731867229, 11.153660590047162], [102.58493248902667, 12.186594956913279], [102.348099399833004, 13.39424734135822], [102.988422072361601, 14.225721136934464], [104.281418084736586, 14.416743068901363], [105.218776890078871, 14.27321177821069], [106.04394616091551, 13.881091009979952], [106.496373325630856, 14.57058380783428], [107.382727492301058, 14.202440904186968], [107.614547967562402, 13.535530707244202], [107.491403029410861, 12.337205918827944], [105.810523716253101, 11.567614650921225], [106.249670037869436, 10.961811835163585], [105.199914992292321, 10.889309800658094], [104.334334751403446, 10.486543687375228], [103.497279901139677, 10.632555446815926]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"South Korea\", \"name\": \"Korea\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[128.349716424676586, 38.612242946927843], [129.212919549680038, 37.432392483055942], [129.460449660358137, 36.784189154602821], [129.468304478066472, 35.632140611303939], [129.091376580929563, 35.08248423923142], [128.18585045787907, 34.890377102186385], [127.386519403188373, 34.475673733044111], [126.485747511908713, 34.390045884736473], [126.3739197124291, 34.934560451795939], [126.559231398627773, 35.684540513647896], [126.117397902532261, 36.725484727519252], [126.860143263863364, 36.893924058574612], [126.174758742376213, 37.749685777328033], [126.237338901881742, 37.840377916000271], [126.683719924018888, 37.804772854151174], [127.073308547067342, 38.256114813788393], [127.780035435090966, 38.304535630845884], [128.205745884311426, 38.370397243801882], [128.349716424676586, 38.612242946927843]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Kosovo\", \"name\": \"Kosovo\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[20.76216, 42.05186], [20.717310000000108, 41.84711], [20.59023, 41.85541], [20.52295, 42.21787], [20.28374, 42.32025], [20.0707, 42.58863], [20.25758, 42.81275], [20.49679, 42.88469], [20.63508, 43.21671], [20.81448, 43.27205], [20.95651, 43.13094], [21.143395, 43.068685000000123], [21.27421, 42.90959], [21.43866, 42.86255], [21.63302, 42.67717], [21.77505, 42.6827], [21.66292, 42.43922], [21.54332, 42.32025], [21.576635989402117, 42.245224397061847], [21.352700000000134, 42.2068], [20.76216, 42.05186]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Kuwait\", \"name\": \"Kuwait\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[47.974519077349889, 29.975819200148493], [48.183188510944483, 29.534476630159759], [48.09394331237641, 29.306299343374999], [48.416094191283939, 28.552004299426663], [47.708850538937376, 28.526062730416136], [47.459821811722819, 29.002519436147217], [46.568713413281742, 29.099025173452283], [47.302622104690947, 30.059069932570711], [47.974519077349889, 29.975819200148493]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Laos\", \"name\": \"Lao PDR\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[105.218776890078871, 14.27321177821069], [105.544338413517664, 14.723933620660414], [105.589038527450128, 15.570316066952856], [104.779320509868768, 16.441864935771445], [104.716947056092465, 17.428858954330078], [103.956476678485288, 18.240954087796872], [103.200192091893726, 18.309632066312769], [102.998705682387694, 17.961694647691598], [102.413004998791592, 17.932781683824281], [102.113591750092453, 18.109101670804161], [101.059547560635139, 17.512497259994486], [101.035931431077742, 18.408928330961611], [101.282014601651667, 19.462584947176762], [100.606293573003128, 19.508344427971217], [100.548881056726856, 20.109237982661124], [100.115987583417819, 20.41784963630818], [100.329101190189519, 20.786121731036229], [101.180005324307515, 21.436572984294024], [101.270025669359939, 21.201651923095177], [101.803119744882906, 21.174366766845065], [101.652017856861491, 22.318198757409544], [102.170435825613552, 22.464753119389297], [102.754896274834636, 21.675137233969462], [103.203861118586431, 20.766562201413745], [104.435000441508024, 20.758733221921528], [104.822573683697073, 19.886641750563879], [104.183387892678908, 19.624668077060214], [103.896532017026701, 19.265180975821799], [105.094598423281496, 18.666974595611073], [105.925762160264, 17.485315456608955], [106.55600792849566, 16.604283962464802], [107.312705926545576, 15.908538316303177], [107.564525181103875, 15.202173163305554], [107.382727492301058, 14.202440904186968], [106.496373325630856, 14.57058380783428], [106.04394616091551, 13.881091009979952], [105.218776890078871, 14.27321177821069]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Lebanon\", \"name\": \"Lebanon\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[35.821100701650231, 33.277426459276292], [35.552796665190805, 33.264274807258012], [35.460709262846699, 33.089040025356276], [35.126052687324538, 33.090900376918775], [35.48220665868012, 33.905450140919434], [35.979592319489392, 34.610058295219126], [35.998402540843628, 34.644914048799997], [36.448194207512095, 34.59393524834406], [36.611750115715886, 34.201788641897174], [36.066460402172048, 33.824912421192543], [35.821100701650231, 33.277426459276292]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Liberia\", \"name\": \"Liberia\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-7.712159389669749, 4.364565944837721], [-7.974107224957249, 4.355755113131961], [-9.004793667018673, 4.832418524592199], [-9.913420376006682, 5.593560695819205], [-10.765383876986643, 6.140710760925556], [-11.438779466182053, 6.785916856305746], [-11.199801805048278, 7.105845648624735], [-11.14670427086838, 7.396706447779534], [-10.695594855176477, 7.939464016141085], [-10.230093553091276, 8.406205552601291], [-10.016566534861253, 8.42850393313523], [-9.755342169625832, 8.541055202666923], [-9.33727983238458, 7.928534450711351], [-9.403348151069748, 7.526905218938906], [-9.208786383490844, 7.313920803247952], [-8.926064622422002, 7.309037380396375], [-8.722123582382123, 7.711674302598509], [-8.439298468448696, 7.686042792181736], [-8.485445522485348, 7.395207831243068], [-8.385451626000572, 6.911800645368742], [-8.602880214868618, 6.467564195171659], [-8.311347622094017, 6.193033148621081], [-7.993692592795879, 6.126189683451541], [-7.570152553731686, 5.707352199725903], [-7.53971513511176, 5.313345241716517], [-7.63536821128403, 5.188159084489455], [-7.712159389669749, 4.364565944837721]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Libya\", \"name\": \"Libya\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[14.8513, 22.862950000000119], [14.143870883855239, 22.491288967371126], [13.581424594790459, 23.040506089769274], [11.999505649471697, 23.471668402596432], [11.560669386449032, 24.09790924732561], [10.771363559622952, 24.562532050061741], [10.303846876678445, 24.379313259370967], [9.948261346078024, 24.936953640232613], [9.910692579801774, 25.365454616796789], [9.319410841518218, 26.094324856057476], [9.716285841519662, 26.512206325785652], [9.629056023811073, 27.140953477481041], [9.756128370816779, 27.688258571884198], [9.68388471847288, 28.144173895779311], [9.859997999723472, 28.959989732371064], [9.805634392952353, 29.424638373323369], [9.482139926805415, 30.307556057246181], [9.970017124072966, 30.539324856075375], [10.056575148161697, 30.961831366493517], [9.950225050505194, 31.376069647745275], [10.636901482799484, 31.761420803345679], [10.944789666394511, 32.081814683555358], [11.43225345220378, 32.368903103152824], [11.488787469131008, 33.136995754523234], [12.66331, 32.79278], [13.08326, 32.87882], [13.91868, 32.71196], [15.24563, 32.26508], [15.71394, 31.37626], [16.61162, 31.18218], [18.02109, 30.76357], [19.08641, 30.26639], [19.57404, 30.52582], [20.05335, 30.98576], [19.82033, 31.751790000000135], [20.13397, 32.2382], [20.85452, 32.7068], [21.54298, 32.8432], [22.89576, 32.63858], [23.2368, 32.19149], [23.6091300000001, 32.18726], [23.9275, 32.01667], [24.92114, 31.89936], [25.16482, 31.56915], [24.80287, 31.08929], [24.95762, 30.6616], [24.70007, 30.04419], [25.00000000000011, 29.238654529533552], [25.00000000000011, 25.682499996360995], [25.00000000000011, 22.0], [25.00000000000011, 20.00304], [23.850000000000129, 20.0], [23.837660000000135, 19.580470000000101], [19.84926, 21.49509], [15.86085, 23.40972], [14.8513, 22.862950000000119]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Sri Lanka\", \"name\": \"Sri Lanka\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[81.787959018891371, 7.523055324733162], [81.637322218760573, 6.481775214051921], [81.218019647144317, 6.197141424988287], [80.348356968104397, 5.968369859232154], [79.872468703128519, 6.763463446474928], [79.6951668639351, 8.200843410673384], [80.147800734379629, 9.824077663609554], [80.838817986986541, 9.268426825391186], [81.304319289071756, 8.564206244333688], [81.787959018891371, 7.523055324733162]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Lesotho\", \"name\": \"Lesotho\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[28.978262566857236, -28.955596612261708], [29.325166456832587, -29.257386976846245], [29.018415154748016, -29.743765557577362], [28.848399692507734, -30.070050551068245], [28.291069370239903, -30.226216729454293], [28.107204624145421, -30.545732110314944], [27.749397006956478, -30.645105889612214], [26.999261915807629, -29.875953871379977], [27.532511020627471, -29.242710870075353], [28.07433841320778, -28.851468601193581], [28.541700066855491, -28.647501722937562], [28.978262566857236, -28.955596612261708]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Lithuania\", \"name\": \"Lithuania\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[22.731098667092649, 54.327536932993311], [22.651051873472536, 54.582740993866729], [22.757763706155256, 54.856574408581366], [22.31572350433057, 55.01529857036585], [21.26844892750346, 55.190481675835301], [21.05580040862241, 56.031076361711051], [22.201156853939491, 56.337801825579483], [23.878263787539957, 56.273671373105259], [24.860684441840753, 56.372528388079616], [25.000934279080887, 56.164530748104831], [25.533046502390327, 56.100296942766029], [26.494331495883749, 55.61510691997762], [26.588279249790386, 55.167175604871659], [25.768432651479792, 54.846962592175082], [25.536353794056989, 54.282423407602515], [24.45068362803703, 53.905702216194747], [23.484127638449841, 53.912497667041123], [23.243987257589506, 54.220566718149129], [22.731098667092649, 54.327536932993311]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Luxembourg\", \"name\": \"Luxembourg\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[6.043073357781109, 50.128051662794221], [6.242751092156992, 49.90222565367872], [6.186320428094176, 49.4638028021145], [5.897759230176403, 49.442667141307012], [5.674051954784828, 49.52948354755749], [5.782417433300905, 50.090327867221205], [6.043073357781109, 50.128051662794221]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Latvia\", \"name\": \"Latvia\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[21.05580040862241, 56.031076361711051], [21.090423618257965, 56.783872789122924], [21.581866489353668, 57.411870632549913], [22.524341261492872, 57.753374335350756], [23.31845299652209, 57.006236477274854], [24.120729607853423, 57.025692654032753], [24.312862583114615, 57.793423570376966], [25.164593540149262, 57.970156968815175], [25.602809685984365, 57.847528794986559], [26.46353234223778, 57.476388658266316], [27.288184848751509, 57.474528306703817], [27.770015903440925, 57.244258124411218], [27.855282016722519, 56.759326483784278], [28.17670942557799, 56.169129950578807], [27.102459751094525, 55.783313707087672], [26.494331495883749, 55.61510691997762], [25.533046502390327, 56.100296942766029], [25.000934279080887, 56.164530748104831], [24.860684441840753, 56.372528388079616], [23.878263787539957, 56.273671373105259], [22.201156853939491, 56.337801825579483], [21.05580040862241, 56.031076361711051]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Morocco\", \"name\": \"Morocco\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-5.193863491222031, 35.755182196590845], [-4.591006232105143, 35.330711981745644], [-3.640056525070007, 35.39985504815197], [-2.604305792644111, 35.17909332940112], [-2.169913702798624, 35.168396307916694], [-1.792985805661658, 34.527918606091298], [-1.73345455566141, 33.919712836232115], [-1.388049282222596, 32.864015000941372], [-1.124551153966195, 32.651521511357195], [-1.30789913573787, 32.262888902306024], [-2.616604783529567, 32.094346218386157], [-3.068980271812648, 31.724497992473285], [-3.647497931320145, 31.637294012980814], [-3.690441046554666, 30.896951605751152], [-4.859646165374442, 30.501187649043874], [-5.242129278982786, 30.00044302013557], [-6.060632290053745, 29.731699734001801], [-7.059227667661899, 29.57922842052465], [-8.67411617678283, 28.841288967396643], [-8.665589565454836, 27.656425889592462], [-8.817809007940523, 27.656425889592462], [-8.817828334986642, 27.656425889592462], [-8.794883999049032, 27.120696316022553], [-9.413037482124507, 27.088476060488539], [-9.735343390328749, 26.860944729107409], [-10.189424200877452, 26.860944729107409], [-10.551262579785258, 26.990807603456879], [-11.392554897496948, 26.883423977154386], [-11.718219773800339, 26.104091701760801], [-12.030758836301654, 26.030866197203121], [-12.500962693725368, 24.770116278578136], [-13.891110398809044, 23.691009019459383], [-14.22116777185715, 22.310163072188338], [-14.630832688850942, 21.860939846274867], [-14.750954555713404, 21.500600083903802], [-17.002961798561071, 21.42073415779668], [-17.020428432675768, 21.422310288981631], [-16.973247849993182, 21.88574453377495], [-16.589136928767626, 22.158234361250091], [-16.26192175949566, 22.679339504481273], [-16.326413946995896, 23.017768459560894], [-15.982610642958059, 23.723358466074096], [-15.426003790742183, 24.359133612561035], [-15.089331834360729, 24.520260728446964], [-14.824645148161689, 25.103532619725307], [-14.800925665739666, 25.636264960222285], [-14.439939947964827, 26.254418443297645], [-13.773804897506462, 26.618892320252279], [-13.13994177901429, 27.640147813420491], [-13.121613369914709, 27.654147671719805], [-12.61883663578311, 28.038185533148656], [-11.688919236690761, 28.148643907172577], [-10.9009569971044, 28.832142238880913], [-10.39959225100864, 29.09858592377778], [-9.564811163765624, 29.933573716749855], [-9.814718390329174, 31.177735500609053], [-9.434793260119362, 32.038096421836478], [-9.300692918321827, 32.564679266890629], [-8.657476365585039, 33.24024526624239], [-7.654178432638217, 33.697064927702506], [-6.912544114601358, 34.11047638603744], [-6.24434200685141, 35.145865383437517], [-5.929994269219832, 35.759988104793983], [-5.193863491222031, 35.755182196590845]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Moldova\", \"name\": \"Moldova\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[26.619336785597788, 48.220726223333457], [26.857823520624798, 48.368210761094488], [27.52253746919515, 48.467119452501102], [28.259546746541837, 48.155562242213406], [28.670891147585163, 48.118148505234089], [29.122698195113024, 47.849095160506458], [29.050867954227321, 47.510226955752493], [29.415135125452732, 47.346645209332571], [29.559674106573105, 46.928582872091312], [29.908851759569295, 46.67436066343145], [29.838210076626289, 46.525325832701675], [30.024658644335364, 46.423936672545032], [29.759971958136383, 46.349987697935354], [29.170653924279879, 46.379262396828693], [29.072106967899288, 46.517677720722482], [28.862972446414055, 46.437889309263824], [28.933717482221621, 46.258830471372491], [28.659987420371575, 45.939986884131628], [28.48526940279276, 45.596907050145887], [28.233553501099035, 45.488283189468369], [28.054442986775392, 45.944586086605618], [28.160017937947707, 46.371562608417207], [28.128030226359037, 46.81047638608824], [27.551166212684841, 47.405117092470817], [27.233872918412736, 47.826770941756365], [26.924176059687561, 48.123264472030982], [26.619336785597788, 48.220726223333457]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Madagascar\", \"name\": \"Madagascar\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[49.543518914595737, -12.469832858940553], [49.80898074727908, -12.895284925999551], [50.05651085795715, -13.555761407121981], [50.217431268114055, -14.758788750876795], [50.476536899625515, -15.226512139550541], [50.377111443895942, -15.706069431219122], [50.200274692593169, -16.000263360256763], [49.860605503138665, -15.414252618066913], [49.672606642460849, -15.710203545802477], [49.863344354050142, -16.451036879138773], [49.774564243372694, -16.875042006093597], [49.49861209493411, -17.10603565843827], [49.435618523970298, -17.953064060134363], [49.04179243347393, -19.118781019774442], [48.548540887247995, -20.496888116134119], [47.930749139198653, -22.391501153251077], [47.547723423051295, -23.781958916928513], [47.095761346226588, -24.941629733990446], [46.282477654817079, -25.178462823184102], [45.409507684110444, -25.601434421493082], [44.833573846217547, -25.346101169538933], [44.039720493349755, -24.9883452287823], [43.763768344911156, -24.460677178649988], [43.697777540874441, -23.574116306250595], [43.345654331237611, -22.77690398528387], [43.254187046080986, -22.057413018484116], [43.433297560404633, -21.336475111580185], [43.893682895692919, -21.163307386970121], [43.89637007017209, -20.830459486578167], [44.374325392439644, -20.072366224856385], [44.464397413924374, -19.435454196859045], [44.23242190936616, -18.961994724200899], [44.042976108584149, -18.331387220943167], [43.963084344260899, -17.409944756746778], [44.312468702986273, -16.850495700754951], [44.446517368351387, -16.216219170804504], [44.944936557806521, -16.179373874580396], [45.502731967964976, -15.974373467678538], [45.872993605336255, -15.793454278224681], [46.312243279817203, -15.780018405828795], [46.882182651564271, -15.210182386946309], [47.70512983581235, -14.594302666891762], [48.005214878131241, -14.091232598530372], [47.869047479042152, -13.663868503476582], [48.29382775248137, -13.784067884987483], [48.845060255738773, -13.08917489995866], [48.863508742066976, -12.487867933810417], [49.194651320193302, -12.040556735891967], [49.543518914595737, -12.469832858940553]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Mexico\", \"name\": \"Mexico\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-97.140008307670684, 25.869997463478395], [-97.528072475966539, 24.992144069920297], [-97.702945522842214, 24.272343044526728], [-97.776041836319024, 22.932579860927653], [-97.872366706111094, 22.444211737553356], [-97.699043952204164, 21.898689480064256], [-97.388959520236739, 21.411018988525818], [-97.189333462293277, 20.635433254473124], [-96.525575527720306, 19.890930894444061], [-96.292127244841737, 19.32037140550954], [-95.90088497595994, 18.828024196848727], [-94.8390634834427, 18.562717393462204], [-94.425729539756205, 18.144370835843343], [-93.548651292682365, 18.423836981677933], [-92.786113857783477, 18.524838568592255], [-92.037348192090391, 18.704569200103432], [-91.407903408559235, 18.876083278880227], [-90.771869879910852, 19.284120388256778], [-90.533589850613026, 19.867418117751292], [-90.451475999701231, 20.707521877520428], [-90.278618333684889, 20.999855454995547], [-89.601321173851474, 21.261725775634485], [-88.543866339862845, 21.493675441976613], [-87.658416510757704, 21.458845526611977], [-87.051890224948053, 21.543543199138295], [-86.811982388032931, 21.331514797444747], [-86.845907965832595, 20.849864610268348], [-87.383291185235848, 20.255404771398727], [-87.621054450210721, 19.646553046135917], [-87.436750454441764, 19.472403469312265], [-87.586560431655911, 19.040130113190738], [-87.837191128271485, 18.259815985583426], [-88.090664028663156, 18.516647854074048], [-88.300031094093626, 18.499982204659997], [-88.490122850279278, 18.486830552641717], [-88.84834387892657, 17.883198147040329], [-89.029857347351737, 18.001511338772556], [-89.150909389995462, 17.955467637600403], [-89.143080410503316, 17.808318996649401], [-90.067933519230891, 17.819326076727517], [-91.001519945015943, 17.817594916245692], [-91.002269253284155, 17.254657701074272], [-91.453921271515114, 17.252177232324183], [-91.08167009150057, 16.918476670799517], [-90.711821865587623, 16.687483018454767], [-90.600846727240921, 16.470777899638787], [-90.438866950221993, 16.410109768128105], [-90.464472622422633, 16.069562079324722], [-91.747960171255926, 16.066564846251762], [-92.229248623406278, 15.251446641495871], [-92.087215949252013, 15.06458466232851], [-92.203229539747255, 14.830102850804108], [-92.227750006869812, 14.538828640190953], [-93.359463874061746, 15.61542959234367], [-93.875168830118511, 15.94016429286591], [-94.691656460330108, 16.20097524664288], [-95.250227016973014, 16.128318182840641], [-96.053382127653293, 15.752087917539592], [-96.557434048228274, 15.653515122942787], [-97.263592495496624, 15.917064927631312], [-98.013029954809596, 16.107311713113912], [-98.947675747456486, 16.566043402568763], [-99.697397427147024, 16.706164048728166], [-100.829498867581293, 17.171071071842047], [-101.666088629954444, 17.649026394109622], [-101.918528001700196, 17.916090196193974], [-102.478132086988907, 17.975750637275095], [-103.500989549558057, 18.292294623278845], [-103.917527432046811, 18.748571682200005], [-104.992009650475467, 19.316133938061679], [-105.493038499761411, 19.946767279535429], [-105.731396043707633, 20.434101874264108], [-105.397772996831321, 20.531718654863422], [-105.500660773524402, 20.816895046466122], [-105.27075232625792, 21.076284898355137], [-105.265817226974022, 21.422103583252348], [-105.603160976975374, 21.871145941652568], [-105.693413865973113, 22.269080308516148], [-106.028716396898943, 22.77375234627862], [-106.909980434988341, 23.767774359628895], [-107.91544877809136, 24.548915310152946], [-108.401904873470954, 25.172313951105931], [-109.260198737406625, 25.580609442644054], [-109.444089321717314, 25.824883938087673], [-109.291643846456267, 26.44293406829842], [-109.801457689231796, 26.676175645447923], [-110.391731737085692, 27.162114976504533], [-110.641018846461606, 27.859876003525521], [-111.178918830187826, 27.941240546169062], [-111.759606899851619, 28.467952582303944], [-112.228234626090369, 28.954408677683482], [-112.27182369672866, 29.266844387320074], [-112.80959448937395, 30.021113593052341], [-113.163810594518651, 30.786880804969424], [-113.148669399857141, 31.170965887978912], [-113.871881069781836, 31.56760834403519], [-114.205736660603506, 31.524045111613123], [-114.776451178835003, 31.79953217216114], [-114.936699795372121, 31.393484605427595], [-114.771231859173483, 30.91361725516526], [-114.673899298951739, 30.162681179315985], [-114.330974494262918, 29.750432440707407], [-113.588875088335413, 29.061611436473008], [-113.424053107540516, 28.826173610951223], [-113.271969367305502, 28.754782619739892], [-113.140039435664363, 28.411289374295954], [-112.962298346796473, 28.425190334582503], [-112.761587083774856, 27.78021678314752], [-112.457910529411635, 27.525813706974752], [-112.24495195193677, 27.171726792910754], [-111.616489020619184, 26.662817287700474], [-111.284674648872993, 25.732589830014426], [-110.987819383572386, 25.294606228124557], [-110.71000688357131, 24.826004340101854], [-110.655048997828871, 24.298594672131113], [-110.17285620811343, 24.265547593680417], [-109.771847093528521, 23.811182562754194], [-109.409104377055698, 23.364672349536242], [-109.433392300232896, 23.185587673428696], [-109.85421932660168, 22.818271592698061], [-110.031391974714424, 22.823077500901199], [-110.295070970483636, 23.430973212166684], [-110.949501309028022, 24.000964260345988], [-111.670568407012681, 24.484423122652508], [-112.182035895621468, 24.73841278736716], [-112.148988817170817, 25.470125230404044], [-112.300710822379671, 26.012004299416613], [-112.777296719191526, 26.321959540303162], [-113.464670783321907, 26.768185533143416], [-113.596729906043805, 26.639459540304465], [-113.848936733844241, 26.900063788352437], [-114.465746629680027, 27.142090358991361], [-115.055142178184965, 27.722726752222904], [-114.982252570437382, 27.798200181585109], [-114.570365566854917, 27.741485297144884], [-114.199328782999231, 28.115002549750553], [-114.162018398884612, 28.566111965442296], [-114.931842210736605, 29.279479275015483], [-115.518653937626965, 29.556361599235395], [-115.887365282029563, 30.180793768834171], [-116.2583503894529, 30.836464341753572], [-116.721526252084956, 31.635743720012037], [-117.127759999999839, 32.53534], [-115.99135, 32.612390000000111], [-114.72139, 32.72083], [-114.815, 32.52528], [-113.30498, 32.03914], [-111.02361, 31.33472], [-109.035, 31.341940000000129], [-108.24194, 31.34222], [-108.24, 31.754853718166366], [-106.507589999999851, 31.75452], [-106.1429, 31.39995], [-105.63159, 31.08383], [-105.03737, 30.64402], [-104.70575, 30.12173], [-104.456969999999885, 29.57196], [-103.94, 29.27], [-103.11, 28.97], [-102.48, 29.76], [-101.6624, 29.7793], [-100.9576, 29.380710000000125], [-100.45584, 28.696120000000118], [-100.11, 28.11000000000012], [-99.52, 27.54], [-99.3, 26.84], [-99.019999999999897, 26.37], [-98.24, 26.06], [-97.529999999999887, 25.84], [-97.140008307670684, 25.869997463478395]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Macedonia\", \"name\": \"Macedonia\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[20.59023, 41.85541], [20.717310000000108, 41.84711], [20.76216, 42.05186], [21.352700000000134, 42.2068], [21.576635989402117, 42.245224397061847], [21.917080000000105, 42.30364], [22.380525750424674, 42.320259507815074], [22.881373732197339, 41.999297186850349], [22.952377150166505, 41.337993882811176], [22.76177, 41.3048], [22.597308383889008, 41.130487168943198], [22.055377638444266, 41.149865831052686], [21.674160597426969, 40.93127452245794], [21.020040317476397, 40.842726955725873], [20.60518, 41.08622], [20.46315, 41.51509], [20.59023, 41.85541]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Mali\", \"name\": \"Mali\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-12.170750291380299, 14.616834214735503], [-11.834207526079465, 14.799096991428936], [-11.666078253617853, 15.388208319556295], [-11.349095017939502, 15.411256008358475], [-10.650791388379414, 15.132745876521422], [-10.086846482778212, 15.330485744686269], [-9.700255092802703, 15.264107367407359], [-9.550238409859388, 15.486496893775435], [-5.537744309908446, 15.501689764869253], [-5.315277268891931, 16.201853745991837], [-5.488522508150438, 16.325102037007962], [-5.971128709324247, 20.640833441647626], [-6.453786586930334, 24.956590684503418], [-4.92333736817423, 24.974574082940993], [-1.550054897457613, 22.792665920497377], [1.823227573259032, 20.61080943448604], [2.060990838233919, 20.142233384679482], [2.683588494486428, 19.856230170160114], [3.146661004253899, 19.693578599521441], [3.158133172222704, 19.057364203360034], [4.267419467800038, 19.155265204336995], [4.270209995143801, 16.852227484601212], [3.723421665063482, 16.184283759012612], [3.638258904646476, 15.568119818580453], [2.749992709981483, 15.409524847876693], [1.385528191746857, 15.323561102759168], [1.01578331869851, 14.968182277887944], [0.374892205414682, 14.928908189346128], [-0.26625729003058, 14.924308986872147], [-0.515854458000348, 15.116157741755725], [-1.066363491205663, 14.973815009007764], [-2.001035122068771, 14.559008287000887], [-2.191824510090384, 14.246417548067352], [-2.967694464520576, 13.798150336151506], [-3.103706834312759, 13.54126679122859], [-3.52280270019986, 13.337661647998612], [-4.006390753587225, 13.472485459848112], [-4.280405035814879, 13.228443508349738], [-4.427166103523802, 12.542645575404292], [-5.220941941743119, 11.713858954307224], [-5.197842576508648, 11.375145778850136], [-5.470564947929004, 10.951269842976044], [-5.404341599946973, 10.370736802609144], [-5.816926235365286, 10.222554633012191], [-6.050452032892266, 10.096360785355442], [-6.205222947606429, 10.524060777219132], [-6.493965013037267, 10.411302801958268], [-6.666460944027547, 10.430810655148447], [-6.850506557635057, 10.138993841996237], [-7.622759161804808, 10.147236232946792], [-7.89958980959237, 10.297382106970824], [-8.029943610048617, 10.206534939001711], [-8.335377163109738, 10.494811916541932], [-8.282357143578279, 10.792597357623842], [-8.407310756860026, 10.90925690352276], [-8.620321010767126, 10.810890814655181], [-8.581305304386772, 11.136245632364801], [-8.376304897484911, 11.393645941610627], [-8.786099005559462, 11.812560939984705], [-8.905264858424529, 12.088358059126433], [-9.127473517279581, 12.308060411015331], [-9.327616339546008, 12.334286200403451], [-9.567911749703212, 12.194243068892472], [-9.890992804392011, 12.060478623904968], [-10.165213792348835, 11.844083563682743], [-10.593223842806278, 11.923975328005977], [-10.870829637078211, 12.177887478072106], [-11.036555955438256, 12.211244615116513], [-11.297573614944508, 12.077971096235768], [-11.456168585648269, 12.076834214725336], [-11.513942836950587, 12.442987575729415], [-11.467899135778522, 12.754518947800973], [-11.553397793005427, 13.141213690641063], [-11.927716030311613, 13.422075100147392], [-12.124887457721256, 13.994727484589784], [-12.170750291380299, 14.616834214735503]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Myanmar\", \"name\": \"Myanmar\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[99.543309360759281, 20.186597601802056], [98.959675734454848, 19.752980658440944], [98.253723992915582, 19.708203029860041], [97.797782830804394, 18.627080389881751], [97.375896437573516, 18.445437730375811], [97.859122755934848, 17.567946071843657], [98.493761020911322, 16.837835598207928], [98.90334842325673, 16.177824204976115], [98.537375929765687, 15.308497422746081], [98.192074009191373, 15.123702500870349], [98.430819126379859, 14.622027696180831], [99.097755161538728, 13.827502549693275], [99.212011753336071, 13.269293728076462], [99.196353794351637, 12.804748439988666], [99.587286004639694, 11.892762762901695], [99.038120558673953, 10.960545762572435], [98.553550653073017, 9.932959906448543], [98.457174106848697, 10.675266018105146], [98.764545526120756, 11.441291612183745], [98.428338657629823, 12.032986761925681], [98.509574009192661, 13.122377631070675], [98.103603957107666, 13.64045970301285], [97.777732375075161, 14.837285874892638], [97.597071567782749, 16.100567938699765], [97.164539829499773, 16.928734442609336], [96.505768670642965, 16.427240505432845], [95.369352248112378, 15.714389960182599], [94.808404575584092, 15.803454291237637], [94.188804152404515, 16.037936102762014], [94.533485955791321, 17.277240301985724], [94.324816522196741, 18.213513902249893], [93.540988397193615, 19.366492621330021], [93.663254835996199, 19.726961574781992], [93.078277622452163, 19.855144965081973], [92.368553501355606, 20.670883287025344], [92.30323449093865, 21.475485337809815], [92.652257114637976, 21.324047552978481], [92.672720981825549, 22.041238918541247], [93.166127557348361, 22.278459580977099], [93.060294224014598, 22.703110663335565], [93.286326938859247, 23.043658352138998], [93.325187615942767, 24.078556423432197], [94.106741977925054, 23.850740871673477], [94.552657912171611, 24.675238348890328], [94.603249139385355, 25.162495428970399], [95.155153436262566, 26.001307277932078], [95.124767694074933, 26.573572089132295], [96.419365675850941, 27.264589341739221], [97.133999058015277, 27.08377350514996], [97.051988559968066, 27.699058946233144], [97.402561476636123, 27.88253611908544], [97.327113885490007, 28.261582749946331], [97.91198774616943, 28.335945136014338], [98.24623091023328, 27.747221381129172], [98.682690057370451, 27.508812160750612], [98.712093947344499, 26.74353587494026], [98.671838006589127, 25.918702500913518], [97.724609002679117, 25.083637193292994], [97.604719679761956, 23.897404690033039], [98.660262485755737, 24.063286037689959], [98.898749220782747, 23.142722072842524], [99.531992222087382, 22.949038804612574], [99.240898878987224, 22.118314317304577], [99.983489211021464, 21.742936713136398], [100.416537713627349, 21.558839423096607], [101.150032993578222, 21.849984442629015], [101.180005324307515, 21.436572984294024], [100.329101190189519, 20.786121731036229], [100.115987583417819, 20.41784963630818], [99.543309360759281, 20.186597601802056]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Montenegro\", \"name\": \"Montenegro\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[19.801613396898681, 42.500093492190835], [19.738051385179627, 42.688247382165564], [19.30449, 42.19574], [19.371770000000136, 41.87755], [19.16246, 41.95502], [18.88214, 42.28151], [18.45, 42.48], [18.56, 42.65], [18.70648, 43.20011], [19.03165, 43.43253], [19.21852, 43.52384], [19.48389, 43.35229], [19.63, 43.213779970270522], [19.95857, 43.10604], [20.3398, 42.89852], [20.25758, 42.81275], [20.0707, 42.58863], [19.801613396898681, 42.500093492190835]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Mongolia\", \"name\": \"Mongolia\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[87.751264276076697, 49.297197984405479], [88.805566847695488, 49.470520738312409], [90.713667433640666, 50.331811835321076], [92.234711541719662, 50.802170722041716], [93.104219191462661, 50.495290228876414], [94.147566359435615, 50.480536607457083], [94.815949334698701, 50.013433335970838], [95.814027947983973, 49.977466539095708], [97.259727817781396, 49.726060695995727], [98.231761509191543, 50.422400621128737], [97.825739780674283, 51.010995184933165], [98.861490513100307, 52.047366034546684], [99.981732212323507, 51.634006252643978], [100.889480421962588, 51.516855780638316], [102.065222609467298, 51.25992055928311], [102.255908644624299, 50.510560614618669], [103.676545444760194, 50.089966132195109], [104.621552362081687, 50.275329494826067], [105.886591424586726, 50.406019192092209], [106.888804152455336, 50.274295966180219], [107.868175897250936, 49.793705145865808], [108.475167270951275, 49.282547715850725], [109.402449171996636, 49.292960516957535], [110.662010532678764, 49.130128078805861], [111.581230910286607, 49.377968248077678], [112.897739699354361, 49.543565375356984], [114.362456496235239, 50.248302720737399], [114.962109816550154, 50.140247300815112], [115.485695428531386, 49.805177313834591], [116.678800897286152, 49.888531399121376], [116.191802199367544, 49.134598090199091], [115.485282017073018, 48.135382595403428], [115.742837355615748, 47.726544501326273], [116.308952671373206, 47.853410142602826], [117.295507440257396, 47.69770905210742], [118.064142694166691, 48.066730455103674], [118.866574334794933, 47.747060044946153], [119.772823927897477, 47.048058783550125], [119.66326989143873, 46.692679958678909], [118.874325799638711, 46.805412095723646], [117.421701287914175, 46.672732855814253], [116.717868280098841, 46.388202419615205], [115.985096470200062, 45.727235012385989], [114.46033165899604, 45.339816799493811], [113.463906691544139, 44.808893134127111], [112.436062453258785, 45.011645616224278], [111.873306105600278, 45.102079372735055], [111.348376906379428, 44.457441718110083], [111.667737257943202, 44.073175767587706], [111.829587843881342, 43.743118394539515], [111.129682244920218, 43.406834011400136], [110.412103306115256, 42.871233628911014], [109.243595819131428, 42.519446316084093], [107.744772576937933, 42.481515814781865], [106.129315627061658, 42.134327704428898], [104.964993931093446, 41.597409572916334], [104.522281935648977, 41.908346666016541], [103.312278273534787, 41.907468166667591], [101.833040399179922, 42.51487295182627], [100.845865513108237, 42.663804429691439], [99.515817498780009, 42.524691473961717], [97.451757440177985, 42.748889675460013], [96.349395786527793, 42.725635280928678], [95.762454868556674, 43.319449164394598], [95.306875441471504, 44.241330878265458], [94.688928664125299, 44.352331854828414], [93.480733677141274, 44.975472113619951], [92.133890822318193, 45.115075995456444], [90.945539585334288, 45.286073309910265], [90.585768263718265, 45.719716091487513], [90.970809360724985, 46.888146063822923], [90.280825636763893, 47.693549099307923], [88.854297723346733, 48.06908173277295], [88.013832228551721, 48.599462795600601], [87.751264276076697, 49.297197984405479]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Mozambique\", \"name\": \"Mozambique\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[34.559989047999345, -11.520020033415923], [35.312397902169032, -11.439146416879145], [36.514081658684248, -11.720938002166733], [36.775150994622791, -11.594537448780804], [37.471284214026596, -11.568750909067157], [37.827644891111383, -11.268769219612834], [38.427556593587745, -11.285202325081654], [39.521029900883768, -10.896853936408224], [40.316588576017182, -10.317096042525696], [40.478387485523022, -10.765440769089992], [40.437253045418672, -11.761710707245014], [40.560811395028558, -12.639176527561023], [40.599620395679743, -14.201975192931858], [40.775475294768988, -14.691764418194239], [40.477250604012596, -15.406294447493968], [40.089263950365208, -16.100774021064456], [39.452558628097044, -16.720891208566936], [38.53835086442151, -17.101023044505954], [37.411132846838875, -17.586368096591233], [36.281279331209348, -18.659687595293445], [35.896496616364054, -18.842260430580634], [35.198399692533137, -19.552811374593887], [34.786383497870041, -19.784011732667732], [34.701892531072836, -20.497043145431007], [35.176127150215358, -21.254361260668407], [35.373427768705731, -21.840837090748874], [35.385848253705397, -22.14], [35.562545536369079, -22.09], [35.533934767404297, -23.070787855727751], [35.371774122872374, -23.535358982031692], [35.607470330555621, -23.706563002214676], [35.458745558419615, -24.122609958596545], [35.040734897610655, -24.478350518493798], [34.215824008935463, -24.816314385682652], [33.013210076639005, -25.357573337507731], [32.574632195777859, -25.727318210556088], [32.660363396950082, -26.148584486599443], [32.915955031065685, -26.215867201443459], [32.830120477028878, -26.74219166433619], [32.071665480281062, -26.733820082304902], [31.985779249811962, -26.29177988048022], [31.837777947728057, -25.843331801051342], [31.752408481581874, -25.484283949487406], [31.930588820124242, -24.369416599222532], [31.670397983534645, -23.658969008073861], [31.191409132621278, -22.251509698172395], [32.244988234188007, -21.116488539313689], [32.508693068173436, -20.395292250248303], [32.659743279762573, -20.30429005298231], [32.772707960752619, -19.715592136313294], [32.611994256324884, -19.419382826416268], [32.654885695127142, -18.672089939043492], [32.849860874164385, -17.979057305577175], [32.847638787575839, -16.713398125884613], [32.328238966610222, -16.392074069893749], [31.852040643040592, -16.319417006091374], [31.636498243951188, -16.071990248277881], [31.173063999157673, -15.860943698797868], [30.338954705534537, -15.880839125230242], [30.274255812305103, -15.507786960515208], [30.179481235481827, -14.796099134991525], [33.214024692525207, -13.97186003993615], [33.789700148256678, -14.451830743063068], [34.064825473778619, -14.359950046448118], [34.459633416488536, -14.613009535381421], [34.517666049952304, -15.013708591372609], [34.307291294092089, -15.478641452702592], [34.381291945134045, -16.183559665596039], [35.033810255683527, -16.801299737213089], [35.339062941231639, -16.107440280830108], [35.771904738108347, -15.896858819240721], [35.686845330555926, -14.611045830954328], [35.267956170398001, -13.887834161029563], [34.907151320136158, -13.565424899960565], [34.559989047999345, -13.579997653866872], [34.280006137841973, -12.280025323132504], [34.559989047999345, -11.520020033415923]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Mauritania\", \"name\": \"Mauritania\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-12.170750291380299, 14.616834214735503], [-12.830658331747513, 15.303691514542942], [-13.43573767745306, 16.039383042866188], [-14.099521450242175, 16.304302273010489], [-14.577347581428977, 16.598263658102805], [-15.135737270558813, 16.587282416240779], [-15.623666144258689, 16.369337063049809], [-16.120690070041928, 16.45566254319338], [-16.463098110407881, 16.135036119038457], [-16.549707810929061, 16.673892116761959], [-16.270551723688353, 17.166962795474866], [-16.146347418674846, 18.108481553616652], [-16.256883307347163, 19.096715806550304], [-16.377651129613266, 19.593817246981981], [-16.277838100641514, 20.092520656814695], [-16.536323614965465, 20.567866319251486], [-17.063423224342568, 20.99975210213082], [-16.845193650773989, 21.333323472574875], [-12.929101935263528, 21.327070624267559], [-13.118754441774708, 22.771220201096249], [-12.874221564169574, 23.284832261645171], [-11.93722449385332, 23.374594224536164], [-11.969418911171159, 25.933352769468261], [-8.687293667017398, 25.881056219988899], [-8.684399786809051, 27.395744126895998], [-4.92333736817423, 24.974574082940993], [-6.453786586930334, 24.956590684503418], [-5.971128709324247, 20.640833441647626], [-5.488522508150438, 16.325102037007962], [-5.315277268891931, 16.201853745991837], [-5.537744309908446, 15.501689764869253], [-9.550238409859388, 15.486496893775435], [-9.700255092802703, 15.264107367407359], [-10.086846482778212, 15.330485744686269], [-10.650791388379414, 15.132745876521422], [-11.349095017939502, 15.411256008358475], [-11.666078253617853, 15.388208319556295], [-11.834207526079465, 14.799096991428936], [-12.170750291380299, 14.616834214735503]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Malawi\", \"name\": \"Malawi\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[34.559989047999345, -11.520020033415923], [34.280006137841973, -12.280025323132504], [34.559989047999345, -13.579997653866872], [34.907151320136158, -13.565424899960565], [35.267956170398001, -13.887834161029563], [35.686845330555926, -14.611045830954328], [35.771904738108347, -15.896858819240721], [35.339062941231639, -16.107440280830108], [35.033810255683527, -16.801299737213089], [34.381291945134045, -16.183559665596039], [34.307291294092089, -15.478641452702592], [34.517666049952304, -15.013708591372609], [34.459633416488536, -14.613009535381421], [34.064825473778619, -14.359950046448118], [33.789700148256678, -14.451830743063068], [33.214024692525207, -13.97186003993615], [32.688165317523122, -13.712857761289273], [32.991764357237876, -12.783870537978272], [33.306422153463068, -12.435778090060214], [33.114289178201908, -11.607198174692311], [33.315310499817279, -10.796549981329695], [33.485687697083584, -10.525558770391111], [33.231387973775291, -9.676721693564799], [32.759375441221316, -9.230599053589058], [33.739729038230443, -9.417150974162722], [33.940837724096532, -9.693673841980292], [34.280006137841973, -10.159999688358402], [34.559989047999345, -11.520020033415923]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Malaysia\", \"name\": \"Malaysia\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[101.075515578213299, 6.204867051615891], [101.154218784593809, 5.691384182147713], [101.814281854258013, 5.810808417174228], [102.141186964936423, 6.221636053894655], [102.371147088635212, 6.12820506431096], [102.961705356866673, 5.524495144061077], [103.381214634212142, 4.855001125503746], [103.438575474056165, 4.181605536308381], [103.332122023534851, 3.72669790284297], [103.42942874554052, 3.382868760589019], [103.502447544368877, 2.791018581550204], [103.854674106870334, 2.515454006353763], [104.247931756611479, 1.631141058759055], [104.228811476663523, 1.293048000489534], [103.519707472754433, 1.226333726400682], [102.573615350354771, 1.967115383304744], [101.39063846232915, 2.760813706875623], [101.273539666755838, 3.27029165284118], [100.69543541870668, 3.939139715994869], [100.557407668055092, 4.767280381688279], [100.19670617065772, 5.312492580583678], [100.306260207116509, 6.040561835143875], [100.085756870527078, 6.46448944745029], [100.259596388756918, 6.64282481528957], [101.075515578213299, 6.204867051615891]]], [[[118.618320754064825, 4.47820241944754], [117.882034946770162, 4.137551377779487], [117.01521447150634, 4.306094061699468], [115.86551720587677, 4.306559149590156], [115.51907840379198, 3.169238389494395], [115.134037306785231, 2.821481838386219], [114.621355422017473, 1.430688177898886], [113.805849644019531, 1.217548732911041], [112.859809198052176, 1.497790025229946], [112.380251906383648, 1.410120957846757], [111.797548455860408, 0.904441229654651], [111.159137811326559, 0.976478176269509], [110.514060907027101, 0.773131415200993], [109.830226678508836, 1.338135687664191], [109.663260125773718, 2.006466986494984], [110.396135288537039, 1.663774725751395], [111.168852980597478, 1.850636704918784], [111.370081007942076, 2.697303371588872], [111.796928338672842, 2.885896511238073], [112.995614862115247, 3.102394924324869], [113.712935418758718, 3.893509426281127], [114.204016554828399, 4.525873928236819], [114.659595981913526, 4.00763682699781], [114.869557326315373, 4.348313706881952], [115.347460972150671, 4.316636053887009], [115.405700311343594, 4.955227565933824], [115.450710483869798, 5.447729803891561], [116.220741001450961, 6.143191229675621], [116.725102980619752, 6.924771429873998], [117.129626092600461, 6.928052883324566], [117.643393182446303, 6.422166449403305], [117.689075148592337, 5.98749013918018], [118.347691278152197, 5.708695786965462], [119.181903924639926, 5.407835598162249], [119.110693800941718, 5.016128241389864], [118.439727004064082, 4.966518866389619], [118.618320754064825, 4.47820241944754]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Namibia\", \"name\": \"Namibia\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[16.344976840895239, -28.576705010697697], [15.601818068105812, -27.821247247022797], [15.210472446359457, -27.09095590587404], [14.989710727608548, -26.117371921495153], [14.74321414557633, -25.392920017195376], [14.40814415859583, -23.85301401132984], [14.385716586981145, -22.656652927340687], [14.257714064194172, -22.111208184499951], [13.868642205468657, -21.699036960539974], [13.352497999737437, -20.872834161057497], [12.82684533046449, -19.673165785401661], [12.608564080463617, -19.045348809487695], [11.794918654028063, -18.069129327061912], [11.734198846085118, -17.30188933682447], [12.215461460019352, -17.11166838955808], [12.814081251688405, -16.941342868724067], [13.462362094789963, -16.971211846588769], [14.058501417709007, -17.42338062914266], [14.209706658595021, -17.353100681225715], [18.26330936043416, -17.309950860262003], [18.956186964603599, -17.789094740472255], [21.377176141045563, -17.930636488519688], [23.215048455506057, -17.52311614346598], [24.033861525170771, -17.29584319424632], [24.6823490740015, -17.35341073981947], [25.076950310982255, -17.578823337476617], [25.084443393664564, -17.661815687737366], [24.520705193792534, -17.887124932529932], [24.217364536239209, -17.889347019118485], [23.579005568137713, -18.281261081620055], [23.196858351339298, -17.869038181227783], [21.655040317478971, -18.219146010005222], [20.910641310314531, -18.252218926672018], [20.881134067475866, -21.814327080983144], [19.895457797940672, -21.849156996347865], [19.895767856534427, -24.767790215760588], [19.89473432788861, -28.461104831660769], [19.002127312911082, -28.972443129188857], [18.464899122804745, -29.045461928017271], [17.836151971109526, -28.856377862261311], [17.387497185951499, -28.783514092729774], [17.218928663815401, -28.355943291946804], [16.824017368240899, -28.082161553664466], [16.344976840895239, -28.576705010697697]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"New Caledonia\", \"name\": \"New Caledonia\", \"continent\": \"Australia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[165.779989862326346, -21.080004978115621], [166.599991489933814, -21.700018812753523], [167.120011428086883, -22.159990736583488], [166.74003462144475, -22.399976088146943], [166.189732293968632, -22.129708347260447], [165.474375441752159, -21.679606621998229], [164.829815301775653, -21.149819838141948], [164.16799523341362, -20.444746595951624], [164.029605747735957, -20.105645847252347], [164.459967075862664, -20.120011895429492], [165.020036249041993, -20.459991143477726], [165.460009393575064, -20.800022067958253], [165.779989862326346, -21.080004978115621]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Niger\", \"name\": \"Niger\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[2.154473504249949, 11.940150051313422], [2.177107781593917, 12.625017808477534], [1.024103224297619, 12.851825669806598], [0.993045688490156, 13.335749620003865], [0.429927605805517, 13.988733018443893], [0.295646396495215, 14.444234930880663], [0.374892205414767, 14.928908189346144], [1.015783318698481, 14.968182277887989], [1.385528191746971, 15.323561102759237], [2.74999270998154, 15.409524847876751], [3.63825890464659, 15.56811981858044], [3.723421665063596, 16.184283759012654], [4.270209995143886, 16.852227484601311], [4.267419467800095, 19.155265204337123], [5.677565952180712, 19.601206976799794], [8.572893100629868, 21.565660712159225], [11.999505649471697, 23.471668402596432], [13.581424594790459, 23.040506089769274], [14.143870883855239, 22.491288967371126], [14.8513, 22.862950000000119], [15.096887648181847, 21.308518785074902], [15.471076694407314, 21.048457139565979], [15.487148064850143, 20.730414537025634], [15.90324669766431, 20.387618923417499], [15.68574059414777, 19.957180080642384], [15.300441114979716, 17.927949937405], [15.247731154041842, 16.627305813050778], [13.972201775781681, 15.684365953021139], [13.540393507550785, 14.36713369390122], [13.956698846094124, 13.996691189016925], [13.954476759505607, 13.353448798063765], [14.595781284247604, 13.330426947477859], [14.495787387762899, 12.859396267137353], [14.213530714584746, 12.80203542729333], [14.181336297266906, 12.483656927943169], [13.995352817448289, 12.4615652531383], [13.318701613018558, 13.55635630945795], [13.083987257548809, 13.596147162322492], [12.302071160540546, 13.037189032437535], [11.527803175511504, 13.328980007373556], [10.989593133191532, 13.387322699431191], [10.701031935273816, 13.246917832894038], [10.114814487354748, 13.277251898649464], [9.524928012743088, 12.85110219975456], [9.014933302454436, 12.826659247280414], [7.804671258178869, 13.343526923063731], [7.330746697630046, 13.098038031461213], [6.82044192874781, 13.115091254117598], [6.445426059605721, 13.492768459522718], [5.443058302440135, 13.865923977102225], [4.368343540066006, 13.747481594289408], [4.107945997747378, 13.531215725147941], [3.967282749048933, 12.956108710171574], [3.680633579125924, 12.552903347214167], [3.611180454125587, 11.660167141155965], [2.848643019226585, 12.235635891158207], [2.490163608418015, 12.233052069543588], [2.154473504249949, 11.940150051313422]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Nigeria\", \"name\": \"Nigeria\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[8.500287713259693, 4.771982937026847], [7.462108188515939, 4.41210826254624], [7.082596469764438, 4.464689032403228], [6.698072137080598, 4.240594183769516], [5.898172641634686, 4.262453314628984], [5.362804803090881, 4.887970689305957], [5.033574252959368, 5.611802476418233], [4.325607130560683, 6.270651149923466], [3.574180128604552, 6.258300482605717], [2.691701694356254, 6.258817246928628], [2.74906253420022, 7.870734361192886], [2.723792758809509, 8.506845404489708], [2.912308383810255, 9.13760793704432], [3.220351596702101, 9.4441525333997], [3.705438266625918, 10.063210354040207], [3.600070021182801, 10.332186184119406], [3.797112257511713, 10.734745591673104], [3.572216424177469, 11.327939357951516], [3.611180454125558, 11.660167141155966], [3.68063357912581, 12.552903347214222], [3.967282749048848, 12.956108710171572], [4.107945997747321, 13.531215725147829], [4.368343540066063, 13.747481594289324], [5.443058302440163, 13.865923977102295], [6.445426059605636, 13.492768459522676], [6.820441928747753, 13.115091254117514], [7.330746697630017, 13.098038031461199], [7.804671258178784, 13.343526923063745], [9.014933302454462, 12.826659247280427], [9.524928012742945, 12.851102199754477], [10.114814487354689, 13.277251898649409], [10.701031935273702, 13.246917832894081], [10.989593133191532, 13.387322699431108], [11.527803175511393, 13.328980007373584], [12.302071160540521, 13.037189032437521], [13.083987257548866, 13.596147162322563], [13.318701613018558, 13.556356309457824], [13.995352817448346, 12.461565253138343], [14.181336297266792, 12.483656927943112], [14.57717776862253, 12.085360826053501], [14.468192172918974, 11.90475169519341], [14.415378859116682, 11.572368882692071], [13.572949659894558, 10.798565985553564], [13.308676385153914, 10.160362046748926], [13.1675997249971, 9.64062632897341], [12.955467970438971, 9.417771714714702], [12.753671502339214, 8.717762762888993], [12.218872104550597, 8.305824082874322], [12.063946160539556, 7.799808457872301], [11.839308709366801, 7.397042344589434], [11.745774366918509, 6.981382961449753], [11.058787876030349, 6.644426784690593], [10.497375115611417, 7.055357774275562], [10.118276808318255, 7.038769639509879], [9.522705926154398, 6.453482367372116], [9.233162876023043, 6.444490668153334], [8.757532993208626, 5.47966583904791], [8.500287713259693, 4.771982937026847]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Nicaragua\", \"name\": \"Nicaragua\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-85.712540452807289, 11.088444932494822], [-86.058488328785245, 11.40343862552994], [-86.525849982432931, 11.806876532432593], [-86.7459915839963, 12.143961900272483], [-87.167516242201131, 12.458257961471656], [-87.668493415054698, 12.909909979702629], [-87.557466600275603, 13.064551703336061], [-87.392386237319201, 12.914018256069836], [-87.316654425795463, 12.984685777228972], [-87.005769009127562, 13.025794379117157], [-86.880557013684339, 13.254204209847241], [-86.733821784191576, 13.263092556201441], [-86.755086636079696, 13.754845485890909], [-86.520708177419877, 13.778487453664436], [-86.312142096689911, 13.771356106008167], [-86.096263800790581, 14.038187364147245], [-85.801294725268576, 13.836054999237586], [-85.698665330736901, 13.960078436738083], [-85.514413011400222, 14.079011745657834], [-85.165364549484792, 14.354369615125076], [-85.148750576502948, 14.560196844943615], [-85.052787441736925, 14.551541042534719], [-84.924500698572388, 14.790492865452348], [-84.820036790694346, 14.819586696832669], [-84.649582078779602, 14.66680532476175], [-84.449335903648588, 14.621614284722494], [-84.228341640952394, 14.748764146376654], [-83.975721401693576, 14.749435939996458], [-83.628584967772895, 14.880073960830298], [-83.489988776366104, 15.016267198135534], [-83.147219000974104, 14.995829169164109], [-83.233234422523907, 14.8998660343981], [-83.28416154654758, 14.676623846897197], [-83.182126430987267, 14.310703029838447], [-83.412499966144424, 13.970077826386554], [-83.519831916014667, 13.56769928634588], [-83.55220720084553, 13.127054348193084], [-83.498515387694255, 12.869292303921226], [-83.473323126951968, 12.419087225794424], [-83.626104499022887, 12.320850328007563], [-83.719613003255034, 11.893124497927724], [-83.650857510090702, 11.629032090700116], [-83.855470343750369, 11.373311265503785], [-83.808935716471538, 11.103043524617274], [-83.655611741861563, 10.938764146361418], [-83.895054490885926, 10.726839097532444], [-84.190178595704822, 10.793450018756671], [-84.355930752281026, 10.999225572142901], [-84.673069017256239, 11.082657172078139], [-84.903003302738924, 10.952303371621895], [-85.561851976244171, 11.217119248901593], [-85.712540452807289, 11.088444932494822]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Netherlands\", \"name\": \"Netherlands\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[6.074182570020922, 53.51040334737813], [6.905139601274128, 53.482162177130633], [7.092053256873895, 53.14404328064488], [6.842869500362381, 52.228440253297542], [6.589396599970825, 51.85202912048338], [5.988658074577812, 51.85161570902504], [6.156658155958779, 50.803721015010574], [5.60697594567, 51.037298488969768], [4.973991326526913, 51.475023708698124], [4.047071160507527, 51.267258612668556], [3.314971144228536, 51.345755113319903], [3.830288527043137, 51.620544542031936], [4.705997348661184, 53.091798407597757], [6.074182570020922, 53.51040334737813]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Norway\", \"name\": \"Norway\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[28.165547316202911, 71.185474351680497], [31.293418409965472, 70.453787746859902], [30.005435011522785, 70.186258856884876], [31.101078728975118, 69.558080145944857], [29.399580519332879, 69.156916002063056], [28.591929559043187, 69.064776923286686], [29.015572950971968, 69.76649119737796], [27.732292107867885, 70.164193020296281], [26.179622023226298, 69.825298977326142], [25.689212680776389, 69.092113755968995], [24.735679152126714, 68.649556789821432], [23.662049594830759, 68.891247463650515], [22.356237827247405, 68.841741441514941], [21.244936150810723, 69.370443020293109], [20.645592889089581, 69.106247260200846], [20.02526899585791, 69.065138658312705], [19.878559604581248, 68.407194322372604], [17.993868442464386, 68.567391262477329], [17.729181756265344, 68.01055186631622], [16.768878614985535, 68.013936672631374], [16.108712192456832, 67.302455552836889], [15.108411492583055, 66.193866889095418], [13.555689731509087, 64.787027696381458], [13.919905226302202, 64.445420640716108], [13.571916131248766, 64.049114081469654], [12.57993533697393, 64.066218980558332], [11.930569288794228, 63.128317572676977], [11.992064243221531, 61.800362453856557], [12.63114668137524, 61.293571682370079], [12.300365838274896, 60.117932847730046], [11.468271925511173, 59.432393296945989], [11.027368605196925, 58.856149400459394], [10.356556837616095, 59.469807033925363], [8.382000359743641, 58.313288479233265], [7.048748406613297, 58.078884182357271], [5.665835402050418, 58.588155422593658], [5.308234490590733, 59.663231919993805], [4.992078077829005, 61.97099803328426], [5.912900424837885, 62.614472968182682], [8.553411085655766, 63.454008287196459], [10.527709181366784, 64.486038316497471], [12.358346795306371, 65.879725857193151], [14.7611458675816, 67.810641587995121], [16.435927361728968, 68.563205471461671], [19.184028354578512, 69.817444159617807], [21.378416375420606, 70.255169379346043], [23.02374230316158, 70.202071845166259], [24.546543409938515, 71.030496731237221], [26.370049676221807, 70.986261705195361], [28.165547316202911, 71.185474351680497]]], [[[24.72412, 77.85385], [22.49032, 77.44493], [20.72601, 77.67704], [21.41611, 77.93504], [20.8119, 78.25463], [22.88426, 78.45494], [23.28134, 78.07954], [24.72412, 77.85385]]], [[[18.25183, 79.70175], [21.54383, 78.95611], [19.02737, 78.5626], [18.47172, 77.82669], [17.59441, 77.63796], [17.1182, 76.80941], [15.91315, 76.77045], [13.76259, 77.38035], [14.66956, 77.73565], [13.1706, 78.02493], [11.22231, 78.8693], [10.44453, 79.65239], [13.17077, 80.01046], [13.71852, 79.66039], [15.14282, 79.67431], [15.52255, 80.01608], [16.99085, 80.05086], [18.25183, 79.70175]]], [[[25.447625359811887, 80.407340399894494], [27.407505730913492, 80.056405748200447], [25.924650506298171, 79.517833970854539], [23.024465773213613, 79.40001170522909], [20.075188429451877, 79.566823228667232], [19.897266473070907, 79.842361965647498], [18.46226362475792, 79.859880276194403], [17.368015170977454, 80.318896186027004], [20.455992059010693, 80.598155626132225], [21.907944777115397, 80.357679348462071], [22.919252557067431, 80.657144273593488], [25.447625359811887, 80.407340399894494]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Nepal\", \"name\": \"Nepal\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[88.120440708369841, 27.876541652939586], [88.043132765661198, 27.445818589786818], [88.174804315140904, 26.810405178325944], [88.060237664749806, 26.414615383402484], [87.22747195836628, 26.39789805755607], [86.024392938179147, 26.630984605408567], [85.25177859898335, 26.726198431906337], [84.675017938173767, 27.234901231387528], [83.304248895199535, 27.364505723575554], [81.999987420584958, 27.925479234319987], [81.057202589851997, 28.416095282499036], [80.088424513676259, 28.794470119740136], [80.476721225917373, 29.729865220655334], [81.11125613802929, 30.183480943313398], [81.525804477874729, 30.422716986608627], [82.327512648450863, 30.115268052688126], [83.337115106137176, 29.463731594352193], [83.898992954446712, 29.320226141877654], [84.234579705750136, 28.839893703724691], [85.011638218123025, 28.642773952747337], [85.823319940131498, 28.203575954698699], [86.954517043000592, 27.97426178640351], [88.120440708369841, 27.876541652939586]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"New Zealand\", \"name\": \"New Zealand\", \"continent\": \"Australia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[173.020374790740703, -40.919052422856417], [173.247234328502003, -41.331998793300777], [173.958405389702875, -40.926700534835604], [174.2475867048081, -41.349155368821663], [174.248516880589449, -41.770008233406749], [173.876446568087886, -42.233184096038819], [173.222739699595621, -42.970038344088557], [172.711246372770717, -43.372287693048492], [173.080112746470206, -43.853343601253577], [172.308583612352464, -43.865694268571332], [171.452925246463622, -44.24251881284372], [171.185137974327233, -44.897104180684885], [170.616697219116588, -45.908928724959701], [169.83142215400926, -46.355774834987585], [169.332331170934253, -46.641235446967848], [168.411353794628525, -46.619944756863582], [167.763744745146823, -46.290197442409195], [166.676886021184202, -46.219917494492236], [166.509144321964669, -45.852704766626204], [167.046424188503238, -45.110941257508664], [168.303763462596862, -44.12397307716612], [168.949408807651508, -43.93581918719142], [169.667814569373149, -43.555325616226334], [170.524919875366152, -43.031688327812823], [171.125089960004004, -42.512753594737781], [171.569713983443194, -41.767424411792128], [171.948708937871885, -41.514416599291145], [172.097227004278722, -40.956104424809674], [172.798579543343948, -40.493962090823466], [173.020374790740703, -40.919052422856417]]], [[[174.612008905330526, -36.156397393540537], [175.336615838927173, -37.209097995758263], [175.3575964704375, -36.52619394302112], [175.808886753642469, -36.798942152657681], [175.958490025127475, -37.555381768546063], [176.763195428776555, -37.881253350578696], [177.438813104560495, -37.961248467766488], [178.010354445708657, -37.579824721020124], [178.517093540762801, -37.695373223624792], [178.274731073313802, -38.582812595373092], [177.970460239979332, -39.166342868812968], [177.206992629299123, -39.145775648760839], [176.939980503647007, -39.449736423501562], [177.032946405340113, -39.879942722331471], [176.8858236026052, -40.06597787858216], [176.508017206119348, -40.60480803808958], [176.012440220440283, -41.289624118821493], [175.239567499082966, -41.688307793953236], [175.067898391009408, -41.425894870775075], [174.650972935278418, -41.281820977545443], [175.227630243223615, -40.459235528323397], [174.900156691789959, -39.908933200847216], [173.824046665743992, -39.508854262043506], [173.852261997775315, -39.146602471677461], [174.57480187408035, -38.797683200842748], [174.743473749081033, -38.027807712558378], [174.69701663645057, -37.381128838857954], [174.292028436579187, -36.71109221776144], [174.319003534235549, -36.534823907213884], [173.840996535535766, -36.121980889634109], [173.05417117745958, -35.237125339500331], [172.636005487353714, -34.529106540669382], [173.007042271209457, -34.450661716450334], [173.551298456107475, -35.006183363587958], [174.329390497126241, -35.265495700828616], [174.612008905330526, -36.156397393540537]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Oman\", \"name\": \"Oman\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[58.861141391846573, 21.114034532144299], [58.487985874266961, 20.428985907467101], [58.03431847517659, 20.481437486243347], [57.826372511634098, 20.24300242764863], [57.66576216007094, 19.736004950433109], [57.788700392493368, 19.067570298737646], [57.694390903560667, 18.944709580963799], [57.2342639504338, 18.947991034414255], [56.609650913321971, 18.574267076079476], [56.512189162019482, 18.087113348863934], [56.283520949128011, 17.876066799383945], [55.661491733630683, 17.884128322821535], [55.269939406155189, 17.632309068263194], [55.274900343655091, 17.228354397037659], [54.791002231674113, 16.950696926333357], [54.239252964093751, 17.04498057704998], [53.57050825380459, 16.707662665264674], [53.108572625547502, 16.651051133688977], [52.782184279192066, 17.349742336491229], [52.000009800022227, 19.000003363516068], [54.999981723862405, 19.999994004796118], [55.666659376859869, 22.000001125572307], [55.208341098863187, 22.708329982997007], [55.234489373602869, 23.110992743415348], [55.52584109886449, 23.524869289640911], [55.528631626208288, 23.933604030853498], [55.981213820220503, 24.130542914317854], [55.80411868675624, 24.269604193615287], [55.88623253766805, 24.920830593357486], [56.396847365143984, 24.924732163995508], [56.845140415276049, 24.241673081961487], [57.403452589757428, 23.878594468678834], [58.136947869708322, 23.747930609628835], [58.729211460205427, 23.565667832935414], [59.180501743410346, 22.992395331305456], [59.450097690677033, 22.660270900965592], [59.80806033716285, 22.533611965418199], [59.806148309168087, 22.31052480721419], [59.442191196536399, 21.71454051359208], [59.282407667889871, 21.433885809814875], [58.861141391846573, 21.114034532144299]]], [[[56.391421339753393, 25.895990708921254], [56.261041701080913, 25.714606431576748], [56.070820753814544, 26.055464178973946], [56.362017449779344, 26.395934353128947], [56.485679152253809, 26.309117946878665], [56.391421339753393, 25.895990708921254]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Pakistan\", \"name\": \"Pakistan\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[75.158027785140902, 37.13303091078911], [75.896897414050116, 36.666806138651829], [76.192848341785677, 35.898403428687821], [77.837450799474553, 35.494009507787759], [76.871721632804011, 34.653544012992732], [75.757060988268321, 34.504922593721311], [74.240202671204955, 34.748887030571247], [73.749948358051952, 34.317698879527846], [74.104293654277328, 33.441473293586846], [74.451559279278698, 32.764899603805489], [75.258641798813187, 32.271105455040491], [74.405928989564998, 31.692639471965272], [74.421380242820263, 30.97981476493117], [73.450638462217412, 29.976413479119863], [72.823751662084689, 28.961591701772047], [71.777665643200308, 27.913180243434521], [70.61649620960192, 27.989196275335861], [69.514392938113119, 26.940965684511365], [70.168926629522005, 26.491871649678835], [70.282873162725579, 25.722228705339823], [70.844699334602822, 25.215102037043511], [71.0432401874682, 24.356523952730193], [68.842599318318761, 24.359133612560932], [68.176645135373377, 23.691965033456704], [67.443666619745457, 23.944843654876983], [67.145441928989058, 24.663611151624639], [66.37282758979326, 25.425140896093847], [64.530407749291115, 25.237038682551425], [62.905700718034595, 25.218409328710202], [61.497362908784183, 25.078237006118492], [61.874187453056535, 26.239974880472097], [63.316631707619578, 26.756532497661659], [63.23389773952028, 27.217047024030702], [62.755425652929851, 27.378923448184985], [62.727830438085974, 28.259644883735383], [61.771868117118615, 28.699333807890792], [61.369308709564926, 29.303276272085917], [60.874248488208778, 29.829238999952604], [62.549856805272775, 29.318572496044304], [63.550260858011164, 29.468330796826162], [64.148002150331237, 29.340819200145965], [64.350418735618504, 29.560030625928089], [65.046862013616092, 29.472180691031902], [66.346472609324408, 29.88794342703617], [66.38145755398601, 30.738899237586448], [66.938891229118454, 31.304911200479346], [67.683393589147457, 31.303154201781414], [67.792689243444769, 31.582930406209623], [68.556932000609308, 31.713310044882011], [68.926676873657655, 31.620189113892064], [69.317764113242546, 31.901412258424436], [69.262522007122541, 32.501944078088293], [69.687147251264847, 33.105498969041228], [70.323594191371583, 33.358532619758385], [69.93054324735958, 34.020120144175102], [70.881803012988385, 33.988855902638512], [71.156773309213449, 34.348911444632144], [71.115018751921625, 34.733125718722228], [71.613076206350698, 35.153203436822857], [71.498767938121077, 35.650563259415996], [71.262348260385735, 36.074387518857797], [71.846291945283909, 36.509942328429851], [72.920024855444453, 36.720007025696312], [74.067551710917812, 36.836175645488446], [74.575892775372964, 37.02084137628345], [75.158027785140902, 37.13303091078911]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Panama\", \"name\": \"Panama\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-77.881571417945239, 7.223771267114783], [-78.214936082660103, 7.512254950384159], [-78.429160732726061, 8.052041123888925], [-78.182095709938608, 8.319182440621772], [-78.43546525746568, 8.387705389840788], [-78.622120530903928, 8.718124497915026], [-79.120307176413732, 8.996092027213022], [-79.557877366845176, 8.932374986197145], [-79.760578172510037, 8.584515082224398], [-80.164481167303322, 8.333315944853593], [-80.382659064439608, 8.29840851484043], [-80.480689256497286, 8.090307522001067], [-80.003689948227148, 7.54752411542337], [-80.276670701808982, 7.419754136581713], [-80.421158006497066, 7.271571966984763], [-80.886400926420791, 7.220541490096535], [-81.059542812814698, 7.817921047390596], [-81.189715745757937, 7.647905585150339], [-81.519514736644666, 7.706610012233908], [-81.721311204744453, 8.108962714058434], [-82.131441209628889, 8.175392767769635], [-82.390934414382542, 8.292362372262287], [-82.820081346350406, 8.290863755725821], [-82.850958014644803, 8.073822740099954], [-82.965783047197348, 8.225027980985983], [-82.9131764391242, 8.423517157419068], [-82.829770677405151, 8.626295477732368], [-82.868657192704759, 8.807266343618521], [-82.719183112300513, 8.925708726431493], [-82.927154914059145, 9.074330145702914], [-82.932890998043561, 9.476812038608172], [-82.546196255203469, 9.566134751824674], [-82.187122565423394, 9.207448635286779], [-82.207586432610952, 8.995575262890098], [-81.808566860669259, 8.95061676679617], [-81.714154018872023, 9.031955471223581], [-81.43928707551153, 8.786234035675715], [-80.947301601876745, 8.858503526235905], [-80.521901211250054, 9.11107208906243], [-79.914599778955974, 9.312765204297618], [-79.573302781884294, 9.611610012241526], [-79.021191779277913, 9.552931423374103], [-79.058450486960353, 9.454565334506523], [-78.500887620747164, 9.420458889193879], [-78.055927700497989, 9.247730414258296], [-77.729513515926399, 8.946844387238867], [-77.353360765273848, 8.670504665558068], [-77.474722866511314, 8.524286200388216], [-77.242566494440069, 7.935278225125442], [-77.431107957656977, 7.638061224798733], [-77.75341386586139, 7.709839789252141], [-77.881571417945239, 7.223771267114783]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Peru\", \"name\": \"Peru\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-69.590423753524036, -17.580011895419329], [-69.858443569605839, -18.092693780187009], [-70.3725723944777, -18.347975355708861], [-71.375250210236914, -17.77379851651385], [-71.462040778271117, -17.363487644116379], [-73.444529588500401, -16.359362888252992], [-75.23788265654143, -15.26568287522778], [-76.009205084929931, -14.649286390850317], [-76.423469204397733, -13.823186944232431], [-76.259241502574156, -13.535039157772939], [-77.10619238962181, -12.222716159720816], [-78.092152879534623, -10.377712497604062], [-79.036953091126918, -8.38656788496589], [-79.445920376284832, -7.930833428583859], [-79.760578172510037, -7.194340915560081], [-80.537481655586049, -6.541667575713715], [-81.249996304026411, -6.136834405139182], [-80.926346808582423, -5.690556735866563], [-81.410942552399433, -4.736764825055459], [-81.099669562489353, -4.036394138203696], [-80.302560594387188, -3.404856459164712], [-80.184014858709645, -3.821161797708043], [-80.46929460317692, -4.059286797708999], [-80.442241990872134, -4.425724379090673], [-80.028908047185581, -4.346090996928893], [-79.62497921417615, -4.454198093283494], [-79.205289069317715, -4.959128513207388], [-78.639897223612323, -4.547784112164072], [-78.450683966775628, -3.873096612161375], [-77.83790483265858, -3.003020521663103], [-76.635394253226707, -2.608677666843817], [-75.544995693652027, -1.56160979574588], [-75.233722703741932, -0.911416924649529], [-75.373223232713841, -0.15203175212045], [-75.106624518520064, -0.05720549886486], [-74.441600511355958, -0.530820000819887], [-74.122395189089048, -1.002832533373848], [-73.659503546834586, -1.260491224781134], [-73.070392218707212, -2.308954359550952], [-72.325786505813639, -2.434218031426453], [-71.774760708285385, -2.169789727388937], [-71.413645799429773, -2.342802422702128], [-70.813475714791949, -2.256864515800742], [-70.047708502874841, -2.725156345229699], [-70.692682054309699, -3.742872002785858], [-70.394043952094975, -3.766591485207825], [-69.893635219996611, -4.298186944194326], [-70.79476884630229, -4.251264743673302], [-70.928843349883564, -4.401591485210367], [-71.748405727816532, -4.59398284263301], [-72.891927659787243, -5.274561455916979], [-72.964507208941185, -5.741251315944892], [-73.219711269814596, -6.089188734566076], [-73.120027431923575, -6.629930922068238], [-73.724486660441627, -6.918595472850638], [-73.723401455363486, -7.340998630404412], [-73.987235480429646, -7.523829847853063], [-73.571059332967053, -8.424446709835832], [-73.015382656532537, -9.03283334720806], [-73.226713426390148, -9.462212823121233], [-72.563033006465631, -9.520193780152715], [-72.184890713169821, -10.05359791426943], [-71.302412278921523, -10.079436130415372], [-70.481893886991159, -9.490118096558842], [-70.548685675728393, -11.009146823778462], [-70.093752204046879, -11.123971856331011], [-69.52967810736493, -10.951734307502193], [-68.665079718689611, -12.561300144097171], [-68.880079515239956, -12.89972909917665], [-68.929223802349526, -13.602683607643007], [-68.94888668483658, -14.45363941819328], [-69.339534674747, -14.953195489158828], [-69.160346645774936, -15.323973890853015], [-69.389764166934697, -15.66012908291165], [-68.959635382753291, -16.500697930571267], [-69.590423753524036, -17.580011895419329]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Philippines\", \"name\": \"Philippines\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[126.376813592637447, 8.414706325713352], [126.478512811387873, 7.750354112168976], [126.537423944200611, 7.189380601424572], [126.19677290253253, 6.274294338400038], [125.831420526229081, 7.293715318221855], [125.363852166852283, 6.78648529706099], [125.683160841983707, 6.049656887227257], [125.396511672060626, 5.581003322772288], [124.219787632342332, 6.16135549562618], [123.938719517106918, 6.88513560630612], [124.243662144061318, 7.360610459823659], [123.610212437027542, 7.833527329942753], [123.29607140512519, 7.418875637232786], [122.825505812675388, 7.457374579290216], [122.085499302255769, 6.899424139834847], [121.919928013192603, 7.192119452336072], [122.312358840017112, 8.034962063016506], [122.94239790251963, 8.316236883981174], [123.487687616063511, 8.693009751821192], [123.841154412939815, 8.240324204944384], [124.6014697612502, 8.514157619659015], [124.764612257995623, 8.960409450715458], [125.471390822451539, 8.986996975129641], [125.412117954612754, 9.760334784377545], [126.222714471543156, 9.28607432701885], [126.306636997585073, 8.782487494334573], [126.376813592637447, 8.414706325713352]]], [[[123.982437778825798, 10.278778591345811], [123.62318322153277, 9.950090643753297], [123.309920688979332, 9.318268744336676], [122.995883009941636, 9.022188625520398], [122.380054966319463, 9.713360907424201], [122.586088901867072, 9.981044826696104], [122.837081333508706, 10.261156927934234], [122.947410516451896, 10.881868394408029], [123.498849725438447, 10.940624497923945], [123.337774285984722, 10.267383938025445], [124.077935825701218, 11.232725531453706], [123.982437778825798, 10.278778591345811]]], [[[118.504580926590336, 9.316382554558087], [117.174274530100675, 8.367499904814663], [117.664477166821371, 9.066888739452933], [118.386913690261736, 9.684499619989223], [118.98734215706105, 10.376292019080507], [119.511496209797528, 11.36966807702721], [119.689676548339889, 10.554291490109872], [119.029458449378978, 10.003653265823869], [118.504580926590336, 9.316382554558087]]], [[[121.883547804859106, 11.891755072471977], [122.483821242361458, 11.582187404827506], [123.120216506035959, 11.583660183147867], [123.100837843926442, 11.165933742716486], [122.637713657726692, 10.741308498574226], [122.002610304859559, 10.441016750526087], [121.967366978036523, 10.905691229694622], [122.038370396005519, 11.415840969280039], [121.883547804859106, 11.891755072471977]]], [[[125.502551711123488, 12.162694606978347], [125.783464797062152, 11.046121934447767], [125.01188398651226, 11.311454576050377], [125.032761265158115, 10.975816148314703], [125.277449172060244, 10.358722032101308], [124.801819289245714, 10.134678859899889], [124.760168084818474, 10.8379951033923], [124.459101190286049, 10.889929917845633], [124.302521600441722, 11.495370998577227], [124.891012811381572, 11.415582587118589], [124.877990350443952, 11.794189968304988], [124.266761509295705, 12.557760931849682], [125.22711632700782, 12.53572093347719], [125.502551711123488, 12.162694606978347]]], [[[121.527393833503481, 13.069590155484516], [121.262190382981544, 12.2055602075644], [120.833896112146533, 12.704496161342416], [120.323436313967477, 13.466413479053866], [121.18012820850214, 13.429697373910439], [121.527393833503481, 13.069590155484516]]], [[[121.321308221523566, 18.504064642811013], [121.937601353036371, 18.21855235439838], [122.246006300954264, 18.478949896717094], [122.336956821787965, 18.224882717354173], [122.174279412933174, 17.810282701076371], [122.51565392465335, 17.09350474697197], [122.252310825693883, 16.262444362854122], [121.662786086108255, 15.931017564350125], [121.505069614753367, 15.124813544164621], [121.728828566577249, 14.328376369682244], [122.258925409027313, 14.218202216035973], [122.701275669445636, 14.336541245984417], [123.950295037940236, 13.782130642141066], [123.855107049658599, 13.237771104378464], [124.181288690284873, 12.997527370653469], [124.077419061378222, 12.536676947474573], [123.298035109552245, 13.027525539598981], [122.928651971529902, 13.552919826710404], [122.671355015148663, 13.185836289925131], [122.034649692880521, 13.784481919810343], [121.126384718918587, 13.636687323455559], [120.628637323083296, 13.857655747935649], [120.679383579593832, 14.271015529838319], [120.99181928923052, 14.525392767795079], [120.693336216312687, 14.756670640517282], [120.564145135582976, 14.396279201713821], [120.070428501466367, 14.970869452367094], [119.920928582846102, 15.406346747290735], [119.883773228028247, 16.363704331929963], [120.286487664878791, 16.034628811095327], [120.39004723519173, 17.599081122299506], [120.7158671407919, 18.505227362537536], [121.321308221523566, 18.504064642811013]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Papua New Guinea\", \"name\": \"Papua New Guinea\", \"continent\": \"Australia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[155.880025669578401, -6.819996840037758], [155.599991082988765, -6.919990736522491], [155.166994256815087, -6.535931491729299], [154.729191522438327, -5.900828138862208], [154.514114211239644, -5.139117526880012], [154.652503696917336, -5.042430922061839], [154.759990676084357, -5.339983819198493], [155.062917922179338, -5.566791680527486], [155.547746209941693, -6.200654799019658], [156.019965448224752, -6.540013929880386], [155.880025669578401, -6.819996840037758]]], [[[151.982795851854462, -5.478063246282344], [151.459106887008659, -5.560280450058739], [151.301390415653884, -5.840728448106701], [150.754447056276661, -6.083762709175387], [150.241196730753813, -6.317753594592984], [149.709963006793316, -6.316513360218051], [148.890064732050462, -6.026040134305432], [148.318936802360696, -5.74714242922613], [148.401825799756864, -5.437755629094722], [149.298411900020824, -5.583741550319216], [149.845561965127217, -5.505503431829339], [149.996250441690279, -5.026101169457674], [150.139755894164921, -5.001348158389788], [150.236907586873485, -5.53222014732428], [150.807467075808063, -5.455842380396886], [151.089672072553981, -5.113692722192368], [151.647880894170811, -4.757073662946168], [151.537861769821518, -4.167807305521889], [152.136791620084352, -4.148790378438519], [152.338743117480988, -4.31296640382976], [152.318692661751754, -4.867661228050748], [151.982795851854462, -5.478063246282344]]], [[[147.191873814074938, -7.388024183789978], [148.084635858349372, -8.044108168167609], [148.734105259393573, -9.104663588093755], [149.306835158484432, -9.071435642130067], [149.266630894161324, -9.514406019736027], [150.038728469034311, -9.684318129111698], [149.738798456012262, -9.872937106977002], [150.801627638959133, -10.29368661869742], [150.690574985963849, -10.582712904505865], [150.028393182575826, -10.652476088099929], [149.782310012001972, -10.393267103723941], [148.923137648717216, -10.28092253992136], [147.913018426707993, -10.130440769087469], [147.135443150012236, -9.492443536012017], [146.567880894150619, -8.942554619994153], [146.048481073184917, -8.067414239131308], [144.74416792213799, -7.630128269077473], [143.897087844009661, -7.915330498896279], [143.286375767184268, -8.245491224809056], [143.413913202080664, -8.983068942910945], [142.628431431244223, -9.326820570516501], [142.068258905200196, -9.159595635620034], [141.033851760013874, -9.117892754760417], [141.017056919519007, -5.85902190513802], [141.000210402591847, -2.600151055515624], [142.735246616791443, -3.289152927263216], [144.583970982033236, -3.861417738463401], [145.27317955950997, -4.373737888205027], [145.829786411725649, -4.876497897972683], [145.981921828392956, -5.465609226100012], [147.648073358347574, -6.083659356310803], [147.891107619416175, -6.614014580922315], [146.970905389594861, -6.721656589386255], [147.191873814074938, -7.388024183789978]]], [[[153.14003787659874, -4.499983412294113], [152.827292108368255, -4.766427097190998], [152.63867313050298, -4.176127211120927], [152.406025832324929, -3.789742526874561], [151.953236932583536, -3.462062269711821], [151.384279413050024, -3.035421644710111], [150.6620495953388, -2.741486097833956], [150.939965448204532, -2.500002129734028], [151.479984165654514, -2.779985039891386], [151.820015090135087, -2.999971612157907], [152.239989455371074, -3.24000864015366], [152.640016717742526, -3.659983005389647], [153.019993524384631, -3.980015150573293], [153.14003787659874, -4.499983412294113]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Poland\", \"name\": \"Poland\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[15.016995883858666, 51.106674099321566], [14.607098422919531, 51.745188096719964], [14.685026482815685, 52.089947414755187], [14.437599725002197, 52.624850165408382], [14.074521111719488, 52.981262518925426], [14.353315463934136, 53.248171291712957], [14.119686313542584, 53.757029120491026], [14.802900424873455, 54.050706285205735], [16.363477003655728, 54.513158677785711], [17.622831658608671, 54.851535956432897], [18.620858595461637, 54.682605699270766], [18.696254510175461, 54.438718777069276], [19.6606400896064, 54.426083889373913], [20.89224450041862, 54.312524929412518], [22.731098667092649, 54.327536932993311], [23.243987257589506, 54.220566718149129], [23.484127638449841, 53.912497667041123], [23.527535841574995, 53.47012156840654], [23.804934930117774, 53.08973135030606], [23.799198846133375, 52.691099351606553], [23.19949384938618, 52.486977444053664], [23.508002150168689, 52.023646552124717], [23.52707075368437, 51.578454087930233], [24.029985792748899, 50.705406602575174], [23.922757195743259, 50.424881089878738], [23.426508416444388, 50.308505764357449], [22.518450148211596, 49.476773586619736], [22.776418898212619, 49.027395331409608], [22.558137648211751, 49.08573802346713], [21.607808058364206, 49.470107326854077], [20.887955356538406, 49.328772284535823], [20.415839471119849, 49.431453355499755], [19.825022820726865, 49.217125352569219], [19.320712517990469, 49.571574001659179], [18.909574822676316, 49.435845852244562], [18.85314415861361, 49.496229763377634], [18.392913852622168, 49.988628648470737], [17.649445021238986, 50.049038397819942], [17.554567091551117, 50.36214590107641], [16.868769158605655, 50.473973700556016], [16.719475945714429, 50.215746568393527], [16.176253289462263, 50.4226073268579], [16.238626743238566, 50.697732652379827], [15.490972120839725, 50.7847299261432], [15.016995883858666, 51.106674099321566]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Puerto Rico\", \"name\": \"Puerto Rico\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-66.2824344550082, 18.51476166429536], [-65.771302863209286, 18.426679185453875], [-65.591003790942935, 18.228034979723912], [-65.847163865813755, 17.975905666571855], [-66.599934455009475, 17.98182261806927], [-67.184162360285256, 17.946553453030074], [-67.24242753769434, 18.374460150622934], [-67.100679083917726, 18.520601101144347], [-66.2824344550082, 18.51476166429536]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"North Korea\", \"name\": \"Dem. Rep. Korea\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[130.640015903852401, 42.39500946712527], [130.780007358931101, 42.220007229168843], [130.400030552288996, 42.280003567059701], [129.965948521037234, 41.941367906251052], [129.667362095254788, 41.601104437825221], [129.705189243692445, 40.882827867184318], [129.188114862179958, 40.661807766271984], [129.010399611528186, 40.485436102859801], [128.633368361526692, 40.189846910150301], [127.967414178581322, 40.025412502597547], [127.533435500194145, 39.756850083976694], [127.502119582225276, 39.323930772451526], [127.385434198110261, 39.213472398427648], [127.783342726757709, 39.050898342437414], [128.349716424676586, 38.612242946927843], [128.205745884311426, 38.370397243801882], [127.780035435090966, 38.304535630845884], [127.073308547067342, 38.256114813788393], [126.683719924018888, 37.804772854151174], [126.237338901881742, 37.840377916000271], [126.174758742376213, 37.749685777328033], [125.689103631697165, 37.940010077459014], [125.568439162295675, 37.752088731429616], [125.275330438336184, 37.66907054295271], [125.24008711151312, 37.857224432927424], [124.981033156433952, 37.948820909164773], [124.712160679219352, 38.108346055649783], [124.985994093933954, 38.548474229479673], [125.221948683778677, 38.665857245430665], [125.13285851450749, 38.848559271798578], [125.386589797060566, 39.387957872061158], [125.321115757346774, 39.551384589184202], [124.737482131042384, 39.660344346671614], [124.265624627785286, 39.928493353834149], [125.079941847840615, 40.569823716792442], [126.182045119329402, 41.107336127276362], [126.86908328664984, 41.816569322266176], [127.343782993682993, 41.50315176041596], [128.208433058790632, 41.466771552082477], [128.052215203972281, 41.994284572917934], [129.59666873587949, 42.424981797854542], [129.994267205933198, 42.985386867843779], [130.640015903852401, 42.39500946712527]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Portugal\", \"name\": \"Portugal\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-9.034817674180244, 41.880570583659669], [-8.671945766626719, 42.134689439454952], [-8.26385698081779, 42.280468654950326], [-8.01317460776991, 41.790886135417118], [-7.422512986673794, 41.792074693359822], [-7.251308966490822, 41.91834605566504], [-6.668605515967655, 41.883386949219577], [-6.389087693700914, 41.381815497394641], [-6.851126674822551, 41.111082668617513], [-6.864019944679383, 40.330871893874821], [-7.026413133156593, 40.184524237624238], [-7.066591559263527, 39.711891587882768], [-7.498632371439724, 39.629571031241802], [-7.098036668313126, 39.03007274022378], [-7.374092169616317, 38.373058580064914], [-7.029281175148794, 38.075764065089757], [-7.166507941099863, 37.803894354802217], [-7.537105475281022, 37.428904323876232], [-7.45372555177809, 37.097787583966053], [-7.855613165711985, 36.838268540996253], [-8.382816127953687, 36.978880113262449], [-8.898856980820325, 36.868809312480771], [-8.746101446965552, 37.6513455266766], [-8.839997524439879, 38.266243394517609], [-9.287463751655221, 38.358485826158592], [-9.526570603869713, 38.737429104154906], [-9.44698889814023, 39.392066148428363], [-9.048305223008425, 39.755093085278766], [-8.977353481471679, 40.159306138665798], [-8.7686840478771, 40.76063894303018], [-8.790853237330309, 41.18433401139125], [-8.990789353867568, 41.543459377603625], [-9.034817674180244, 41.880570583659669]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Paraguay\", \"name\": \"Paraguay\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-62.685057135657871, -22.24902922942238], [-62.291179368729203, -21.051634616787389], [-62.265961269770784, -20.513734633061272], [-61.786326463453761, -19.633736667562957], [-60.043564622626477, -19.342746677327419], [-59.11504248720609, -19.356906019775398], [-58.183471442280492, -19.868399346600359], [-58.166392381408038, -20.176700941653674], [-57.870673997617786, -20.732687676681948], [-57.937155727761287, -22.090175876557169], [-56.881509568902885, -22.282153822521476], [-56.473317430229379, -22.086300144135279], [-55.797958136606894, -22.356929620047815], [-55.61068274598113, -22.655619398694839], [-55.517639329639621, -23.57199757252663], [-55.400747239795407, -23.956935316668797], [-55.027901780809543, -24.001273695575225], [-54.652834235235119, -23.839578138933955], [-54.292959560754511, -24.021014092710722], [-54.293476325077435, -24.570799655863958], [-54.428946092330577, -25.162184747012162], [-54.625290696823562, -25.739255466415507], [-54.788794928595038, -26.621785577096126], [-55.695845506398143, -27.387837009390857], [-56.486701626192989, -27.548499037386286], [-57.609759690976134, -27.395898532828383], [-58.618173590719735, -27.123718763947089], [-57.633660040911117, -25.603656508081638], [-57.777217169817924, -25.162339776309032], [-58.807128465394968, -24.771459242453307], [-60.028966030504016, -24.032796319273267], [-60.846564704009907, -23.880712579038288], [-62.685057135657871, -22.24902922942238]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Palestine\", \"name\": \"Palestine\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[35.545665317534535, 32.393992011030569], [35.545251906076196, 31.782504787720832], [35.397560662586038, 31.489086005167572], [34.927408481594554, 31.35343537040141], [34.970506626125989, 31.616778469360803], [35.225891554512422, 31.754341132121759], [34.974640740709319, 31.866582343059715], [35.183930291491428, 32.532510687788935], [35.545665317534535, 32.393992011030569]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Qatar\", \"name\": \"Qatar\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[50.810108270069563, 24.754742539971371], [50.743910760303677, 25.482424221289389], [51.01335167827348, 26.006991685484191], [51.286461622936045, 26.114582017515865], [51.589078810437243, 25.801112779233375], [51.606700473848804, 25.215670477798735], [51.389607781790623, 24.627385972588051], [51.112415398977006, 24.556330878186721], [50.810108270069563, 24.754742539971371]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Romania\", \"name\": \"Romania\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[22.710531447040488, 47.882193915389394], [23.142236362406798, 48.096341050806942], [23.760958286237404, 47.985598456405448], [24.402056105250374, 47.981877753280422], [24.866317172960571, 47.737525743188307], [25.207743361112986, 47.891056423527459], [25.945941196402394, 47.987148749374207], [26.197450392366925, 48.220881252630342], [26.619336785597788, 48.220726223333457], [26.924176059687561, 48.123264472030982], [27.233872918412736, 47.826770941756365], [27.551166212684841, 47.405117092470817], [28.128030226359037, 46.81047638608824], [28.160017937947707, 46.371562608417207], [28.054442986775392, 45.944586086605618], [28.233553501099035, 45.488283189468369], [28.679779493939371, 45.30403087013169], [29.149724969201646, 45.464925442072442], [29.603289015427425, 45.293308010431119], [29.62654340995876, 45.035390936862392], [29.141611769331831, 44.820210272799038], [28.837857700320196, 44.913873806328041], [28.55808149589199, 43.707461656258118], [27.970107049275068, 43.812468166675202], [27.242399529740904, 44.175986029632398], [26.065158725699739, 43.943493760751259], [25.569271681426923, 43.688444729174712], [24.100679152124169, 43.741051337247846], [23.332302280376322, 43.897010809904707], [22.94483239105184, 43.823785305347123], [22.657149692482985, 44.234923000661276], [22.474008416440594, 44.409227606781762], [22.705725538837349, 44.578002834647016], [22.459022251075933, 44.702517198254291], [22.145087924902807, 44.478422349620573], [21.562022739353605, 44.768947251965486], [21.483526238702233, 45.181170152357772], [20.874312778413351, 45.416375433934228], [20.76217492033998, 45.734573065771428], [20.220192498462833, 46.127468980486547], [21.021952345471245, 46.316087958351886], [21.626514926853869, 46.994237779318148], [22.09976769378283, 47.672439276716695], [22.710531447040488, 47.882193915389394]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Russia\", \"name\": \"Russia\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[143.648007440362846, 50.747600409541512], [144.65414757708561, 48.976390692737581], [143.173927850517174, 49.306551418650365], [142.558668247650076, 47.861575018904908], [143.533492466404027, 46.836728013692479], [143.505277134372591, 46.137907619809475], [142.747700636973889, 46.740764878926562], [142.092030064054484, 45.966755276058777], [141.906925083585008, 46.805928860046535], [142.018442824470867, 47.780132961612921], [141.904444614835029, 48.859188544299563], [142.135800002205656, 49.615163072297449], [142.179983351815281, 50.952342434281903], [141.594075962490024, 51.935434882202529], [141.682546014573632, 53.301966457728767], [142.606934035410745, 53.762145087287891], [142.209748976815376, 54.225475979216853], [142.654786411712934, 54.365880845753864], [142.914615513276544, 53.704577541714734], [143.260847609632037, 52.740760403039033], [143.235267775647628, 51.756660264688733], [143.648007440362846, 50.747600409541512]]], [[[22.731098667092649, 54.327536932993311], [20.892244500418652, 54.312524929412568], [19.6606400896064, 54.42608388937397], [19.88848147958134, 54.866160386771483], [21.268448927503492, 55.190481675835279], [22.315723504330599, 55.015298570365886], [22.757763706155281, 54.856574408581416], [22.651051873472564, 54.582740993866693], [22.731098667092649, 54.327536932993311]]], [[[180.000000000000114, 70.832199208546669], [178.903425, 70.78114], [178.7253, 71.0988], [180.000000000000114, 71.515714336428246], [180.000000000000114, 70.832199208546669]]], [[[143.60385, 73.21244], [142.08763, 73.20544], [140.038155, 73.31692], [139.86312, 73.36983], [140.81171, 73.76506], [142.06207, 73.85758], [143.48283, 73.47525], [143.60385, 73.21244]]], [[[150.73167, 75.08406], [149.575925, 74.68892], [147.977465, 74.778355], [146.11919, 75.17298], [146.358485, 75.49682], [148.22223, 75.345845], [150.73167, 75.08406]]], [[[145.086285, 75.562625], [144.3, 74.82], [140.61381, 74.84768], [138.95544, 74.61148], [136.97439, 75.26167], [137.51176, 75.94917], [138.831075, 76.13676], [141.471615, 76.09289], [145.086285, 75.562625]]], [[[57.535692579992386, 70.720463975702145], [56.944979282463933, 70.63274323188665], [53.677375115784187, 70.762657782668455], [53.412016635965372, 71.206661688920192], [51.601894565645708, 71.474759019650477], [51.455753615124209, 72.014881089965129], [52.478275180883564, 72.229441636840946], [52.444168735570841, 72.77473135038484], [54.427613559797649, 73.627547512497571], [53.508289829325136, 73.749813951300141], [55.902458937407644, 74.627486477345329], [55.631932814359701, 75.081412258597155], [57.868643833248839, 75.609390367323186], [61.170044386647497, 76.251883450008123], [64.498368361270209, 76.439055487769267], [66.210977003855092, 76.809782213031227], [68.157059767534818, 76.939696763812904], [68.852211134725124, 76.544811306454605], [68.180572544227644, 76.233641669409096], [64.637326287703004, 75.737754625136219], [61.583507521414752, 75.260884507946784], [58.477082147053366, 74.309056301562819], [56.986785516187993, 73.333043524866227], [55.41933597191094, 72.371267605265956], [55.622837762276291, 71.540594794390316], [57.535692579992386, 70.720463975702145]]], [[[106.970130000000111, 76.97419], [107.240000000000123, 76.48], [108.1538, 76.723350000000138], [111.077260000000138, 76.71], [113.33151, 76.22224], [114.13417, 75.84764], [113.88539, 75.327790000000121], [112.77918, 75.03186], [110.151250000000175, 74.47673], [109.4, 74.18], [110.64, 74.04], [112.11919, 73.787740000000113], [113.019540000000234, 73.976930000000138], [113.529580000000294, 73.33505], [113.96881, 73.59488], [115.56782, 73.75285], [118.776330000000215, 73.58772], [119.02, 73.12], [123.20066, 72.97122], [123.257770000000178, 73.73503], [125.380000000000166, 73.56], [126.97644, 73.56549], [128.59126, 73.03871], [129.05157, 72.39872], [128.46, 71.98], [129.715990000000204, 71.19304], [131.288580000000252, 70.786990000000102], [132.253500000000145, 71.8363], [133.857660000000294, 71.386420000000143], [135.56193, 71.655250000000123], [137.49755, 71.34763], [138.234090000000123, 71.62803], [139.86983, 71.487830000000116], [139.14791, 72.4161900000001], [140.46817, 72.849410000000134], [149.5, 72.2], [150.35118000000017, 71.60643], [152.96890000000019, 70.84222], [157.00688, 71.03141], [158.99779, 70.86672], [159.830310000000225, 70.45324], [159.70866, 69.72198], [160.94053000000028, 69.43728], [162.279070000000104, 69.64204], [164.05248, 69.66823], [165.940370000000172, 69.47199], [167.83567, 69.58269], [169.57763000000017, 68.6938], [170.816880000000253, 69.01363], [170.008200000000159, 69.65276], [170.453450000000259, 70.09703], [173.643910000000204, 69.81743], [175.72403000000017, 69.877250000000217], [178.6, 69.4], [180.000000000000114, 68.963636363636553], [180.000000000000114, 64.979708702198465], [179.99281, 64.97433], [178.707200000000199, 64.53493], [177.411280000000147, 64.60821], [178.313000000000187, 64.07593], [178.90825000000018, 63.251970000000128], [179.37034, 62.98262], [179.48636, 62.56894], [179.228250000000116, 62.304100000000133], [177.3643, 62.5219], [174.569290000000194, 61.76915], [173.68013, 61.65261], [172.15, 60.95], [170.6985, 60.33618], [170.330850000000282, 59.88177], [168.90046, 60.57355], [166.294980000000265, 59.7885500000002], [165.840000000000202, 60.16], [164.87674, 59.7316], [163.539290000000108, 59.86871], [163.217110000000218, 59.21101], [162.01733, 58.24328], [162.05297, 57.83912], [163.19191, 57.61503], [163.057940000000144, 56.159240000000111], [162.129580000000203, 56.12219], [161.70146, 55.285680000000148], [162.117490000000117, 54.85514], [160.368770000000325, 54.34433], [160.021730000000218, 53.20257], [158.530940000000157, 52.958680000000236], [158.23118, 51.94269], [156.789790000000266, 51.01105], [156.42000000000013, 51.7], [155.99182, 53.15895], [155.43366, 55.381030000000109], [155.914420000000291, 56.767920000000132], [156.75815, 57.3647], [156.81035, 57.83204], [158.364330000000166, 58.05575], [160.150640000000124, 59.314770000000109], [161.87204, 60.343000000000117], [163.66969, 61.1409], [164.473550000000103, 62.55061], [163.258420000000172, 62.46627], [162.65791, 61.6425], [160.12148, 60.54423], [159.30232, 61.77396], [156.72068, 61.43442], [154.218060000000293, 59.758180000000117], [155.04375, 59.14495], [152.81185, 58.88385], [151.265730000000246, 58.78089], [151.33815, 59.50396], [149.78371, 59.655730000000126], [148.54481, 59.16448], [145.48722, 59.33637], [142.197820000000121, 59.03998], [138.958480000000293, 57.08805], [135.12619, 54.72959], [136.70171, 54.603550000000112], [137.19342, 53.97732], [138.1647, 53.755010000000247], [138.80463, 54.25455], [139.90151, 54.189680000000166], [141.34531, 53.089570000000109], [141.37923, 52.23877], [140.59742000000017, 51.23967], [140.51308, 50.045530000000113], [140.061930000000189, 48.446710000000152], [138.554720000000202, 46.99965], [138.21971, 46.30795], [136.86232, 45.143500000000174], [135.515350000000183, 43.989], [134.869390000000237, 43.39821], [133.536870000000249, 42.81147], [132.90627, 42.79849], [132.278070000000241, 43.284560000000106], [130.935870000000136, 42.55274], [130.78, 42.220000000000191], [130.640000000000157, 42.395], [130.633866408409801, 42.903014634770543], [131.144687941614961, 42.929989732426932], [131.288555129115593, 44.111519680348252], [131.025190000000237, 44.96796], [131.883454217659562, 45.321161607436508], [133.097120000000189, 45.14409], [133.769643996313164, 46.116926988299149], [134.112350000000163, 47.212480000000127], [134.50081, 47.578450000000139], [135.026311476786759, 48.478229885443902], [133.373595819228001, 48.183441677434836], [132.506690000000106, 47.78896], [130.987260000000106, 47.79013], [130.582293328982644, 48.72968740497619], [129.397817824420486, 49.4406000840156], [127.657400000000351, 49.76027], [127.287455682484904, 50.739797268265434], [126.939156528837827, 51.353894151405896], [126.564399041856959, 51.784255479532689], [125.946348911646439, 52.792798570356936], [125.068211297710434, 53.161044826868924], [123.57147, 53.4588], [122.245747918793043, 53.431725979213681], [121.003084751470354, 53.251401068731226], [120.177088657716865, 52.753886216841195], [120.725789015791975, 52.516226304730893], [120.7382, 51.96411], [120.182080000000155, 51.64355], [119.27939, 50.58292], [119.288460728025839, 50.142882798861947], [117.87924441942647, 49.510983384797036], [116.67880089728618, 49.888531399121398], [115.485695428531415, 49.805177313834733], [114.962109816550353, 50.140247300815119], [114.362456496235325, 50.24830272073747], [112.897739699354361, 49.543565375356984], [111.581230910286649, 49.377968248077671], [110.662010532678835, 49.130128078805846], [109.402449171996707, 49.292960516957685], [108.475167270951275, 49.282547715850704], [107.868175897251092, 49.793705145865871], [106.888804152455293, 50.274295966180276], [105.886591424586868, 50.40601919209216], [104.62158, 50.275320000000157], [103.676545444760336, 50.08996613219513], [102.25589, 50.510560000000105], [102.06521, 51.25991], [100.889480421962631, 51.516855780638409], [99.981732212323564, 51.63400625264395], [98.861490513100492, 52.047366034546698], [97.82573978067451, 51.010995184933236], [98.231761509191699, 50.422400621128716], [97.259760000000199, 49.72605], [95.814020000000156, 49.977460000000114], [94.815949334698757, 50.01343333597088], [94.147566359435601, 50.480536607457161], [93.10421, 50.49529], [92.234711541719676, 50.802170722041737], [90.713667433640765, 50.331811835321098], [88.805566847695573, 49.470520738312459], [87.751264276076824, 49.297197984405543], [87.359970330762692, 49.214980780629148], [86.829356723989648, 49.826674709668133], [85.541269972682485, 49.69285858824815], [85.115559523462082, 50.117302964877631], [84.416377394553038, 50.311399644565817], [83.935114780618903, 50.889245510453563], [83.383003778012451, 51.069182847693881], [81.945985548839943, 50.812195949906325], [80.568446893235446, 51.388336493528435], [80.035559523441705, 50.864750881547209], [77.80091556184432, 53.404414984747532], [76.525179477854749, 54.177003485727127], [76.891100294913443, 54.490524400441913], [74.384820000000119, 53.546850000000113], [73.425678745420512, 53.489810289109741], [73.50851606638436, 54.035616766976588], [72.224150018202195, 54.376655381886778], [71.180131056609468, 54.133285224008247], [70.86526655465515, 55.169733588270091], [69.068166945272893, 55.385250149143488], [68.169100376258896, 54.970391750704366], [65.66687, 54.601250000000149], [65.178533563095939, 54.354227810272064], [61.436600000000126, 54.00625], [60.978066440683236, 53.664993394579128], [61.69998619980062, 52.979996446334255], [60.73999311711453, 52.719986477257734], [60.927268507740237, 52.447548326214999], [59.967533807215567, 51.96042043721566], [61.588003371024136, 51.272658799843171], [61.337424350840998, 50.799070136104248], [59.932807244715555, 50.842194118851822], [59.642282342370564, 50.545442206415707], [58.363320000000122, 51.06364], [56.77798, 51.04355], [55.71694, 50.621710000000142], [54.532878452376181, 51.026239732459359], [52.328723585831042, 51.718652248738088], [50.766648390512174, 51.692762356159861], [48.702381626181044, 50.605128485712825], [48.577841424357601, 49.87475962991563], [47.549480421749379, 50.454698391311119], [46.751596307162764, 49.356005764353725], [47.043671502476585, 49.152038886097571], [46.466445753776291, 48.394152330104923], [47.315240000000152, 47.71585], [48.05725, 47.74377], [48.694733514201872, 47.075628160177885], [48.59325000000014, 46.56104], [49.101160000000121, 46.39933], [48.645410000000105, 45.80629], [47.67591, 45.641490000000111], [46.68201, 44.6092], [47.59094, 43.660160000000118], [47.49252, 42.98658], [48.58437000000017, 41.80888], [47.987283156126033, 41.405819200194387], [47.815665724484653, 41.151416124021338], [47.373315464066387, 41.219732367511135], [46.686070591016708, 41.827137152669899], [46.404950799348924, 41.860675157227426], [45.7764, 42.092440000000224], [45.470279168485909, 42.502780666670041], [44.537622918482057, 42.711992702803677], [43.93121, 42.554960000000101], [43.755990000000182, 42.74083], [42.394400000000154, 43.2203], [40.922190000000128, 43.382150000000131], [40.076964959479838, 43.553104153002486], [39.95500857927108, 43.434997666999287], [38.68, 44.28], [37.539120000000104, 44.65721], [36.675460000000122, 45.24469], [37.40317, 45.40451], [38.23295, 46.24087], [37.67372, 46.63657], [39.14767, 47.044750000000128], [39.121200000000123, 47.26336], [38.22353803889947, 47.102189846375971], [38.2551123390298, 47.546400458356956], [38.77057, 47.825620000000228], [39.738277622238982, 47.898937079452068], [39.895620000000136, 48.23241], [39.67465, 48.783820000000127], [40.080789015469477, 49.307429917999364], [40.069040000000108, 49.60105], [38.594988234213552, 49.926461900423718], [38.010631137857068, 49.915661526074715], [37.393459506995228, 50.383953355503664], [36.626167840325387, 50.225590928745127], [35.35611616388811, 50.577197374059139], [35.37791, 50.77394], [35.02218305841793, 51.207572333371495], [34.224815708154402, 51.255993150428921], [34.141978387190612, 51.56641347920619], [34.391730584457228, 51.768881740925892], [33.75269982273587, 52.335074571331646], [32.715760532367163, 52.238465481162159], [32.412058139787767, 52.288694973349763], [32.15944000000021, 52.061250000000101], [31.78597, 52.10168], [31.540018344862254, 52.742052313846429], [31.305200636527978, 53.073995876673301], [31.49764, 53.167430000000124], [32.304519484188368, 53.132726141972839], [32.693643019346119, 53.351420803432141], [32.405598585751157, 53.618045355842], [31.731272820774585, 53.794029446012011], [31.791424187962399, 53.974638576872181], [31.384472283663818, 54.157056382862365], [30.757533807098774, 54.811770941784388], [30.971835971813245, 55.08154775656412], [30.873909132620064, 55.55097646750351], [29.896294386522435, 55.789463202530484], [29.371571893030783, 55.670090643936263], [29.229513380660389, 55.918344224666399], [28.176709425577933, 56.169129950578778], [27.855282016722519, 56.759326483784363], [27.770015903440985, 57.244258124411189], [27.288184848751648, 57.474528306703903], [27.716685825315771, 57.791899115624439], [27.420150000000202, 58.724570000000128], [28.131699253051856, 59.300825100330982], [27.98112, 59.47537], [29.1177, 60.028050000000107], [28.07, 60.503520000000137], [30.211107212044645, 61.780027777749673], [31.139991082491029, 62.357692776124431], [31.516092156711263, 62.867687486412898], [30.035872430142796, 63.552813625738551], [30.444684686003736, 64.204453436939062], [29.544429559047014, 64.948671576590542], [30.21765, 65.80598], [29.054588657352376, 66.944286200622017], [29.977426385220689, 67.69829702419274], [28.445943637818765, 68.364612942163987], [28.591929559043358, 69.064776923286686], [29.39955, 69.15692000000017], [31.101080000000103, 69.55811], [32.132720000000255, 69.905950000000232], [33.77547, 69.301420000000107], [36.51396, 69.06342], [40.292340000000159, 67.9324], [41.059870000000124, 67.457130000000106], [41.125950000000174, 66.79158000000011], [40.01583, 66.266180000000119], [38.38295, 65.99953], [33.918710000000168, 66.75961], [33.18444, 66.63253], [34.81477, 65.900150000000124], [34.87857425307876, 65.436212877048192], [34.943910000000152, 64.414370000000147], [36.23129, 64.10945], [37.012730000000111, 63.84983], [37.141970000000143, 64.33471], [36.539579035089801, 64.76446], [37.176040000000135, 65.143220000000113], [39.59345, 64.520790000000162], [40.4356, 64.76446], [39.762600000000148, 65.49682], [42.09309, 66.47623], [43.01604000000011, 66.41858], [43.94975000000013, 66.06908], [44.53226, 66.756340000000122], [43.69839, 67.35245], [44.187950000000136, 67.95051], [43.45282, 68.57079], [46.250000000000135, 68.25], [46.821340000000156, 67.68997], [45.55517, 67.56652], [45.56202, 67.010050000000192], [46.349150000000137, 66.66767], [47.894160000000248, 66.884550000000146], [48.13876, 67.52238], [50.227660000000142, 67.998670000000132], [53.717430000000164, 68.85738], [54.47171, 68.80815], [53.485820000000118, 68.20131], [54.72628, 68.09702], [55.442680000000124, 68.43866], [57.317020000000149, 68.46628], [58.802000000000206, 68.88082], [59.941420000000178, 68.27844], [61.077840000000165, 68.94069], [60.03, 69.52], [60.55, 69.85], [63.504000000000147, 69.54739], [64.888115, 69.234835000000132], [68.512160000000108, 68.09233000000016], [69.18068, 68.61563000000011], [68.16444, 69.14436], [68.13522, 69.35649], [66.930080000000103, 69.454610000000102], [67.25976, 69.92873], [66.724920000000125, 70.708890000000125], [66.69466, 71.028970000000228], [68.540060000000111, 71.934500000000227], [69.19636, 72.843360000000146], [69.94, 73.04000000000012], [72.58754, 72.77629], [72.79603, 72.22006], [71.84811, 71.40898], [72.47011, 71.09019], [72.79188, 70.39114], [72.564700000000201, 69.02085], [73.66787, 68.4079], [73.2387, 67.7404], [71.280000000000101, 66.320000000000149], [72.423010000000147, 66.172670000000167], [72.82077, 66.53267], [73.920990000000131, 66.789460000000119], [74.186510000000183, 67.28429], [75.052, 67.760470000000154], [74.469260000000148, 68.32899], [74.93584, 68.98918], [73.84236, 69.07146], [73.601870000000204, 69.62763], [74.3998, 70.63175], [73.1011, 71.447170000000241], [74.890820000000204, 72.12119], [74.65926, 72.83227], [75.158010000000175, 72.854970000000108], [75.68351, 72.300560000000118], [75.288980000000109, 71.33556], [76.35911, 71.152870000000135], [75.903130000000161, 71.87401], [77.5766500000001, 72.26717], [79.652020000000107, 72.32011], [81.5, 71.75], [80.61071, 72.582850000000107], [80.51109, 73.6482], [82.25, 73.85], [84.65526, 73.805910000000154], [86.822300000000226, 73.93688], [86.00956, 74.459670000000145], [87.166820000000143, 75.11643], [88.31571, 75.14393], [90.26, 75.64], [92.90058, 75.77333], [93.234210000000132, 76.0472], [95.860000000000127, 76.14], [96.67821, 75.91548], [98.922540000000197, 76.44689], [100.759670000000199, 76.43028], [101.03532, 76.86189], [101.990840000000105, 77.287540000000192], [104.3516, 77.69792], [106.066640000000135, 77.37389], [104.705000000000211, 77.1274], [106.970130000000111, 76.97419]]], [[[105.07547, 78.30689], [99.43814, 77.921], [101.2649, 79.23399], [102.08635, 79.34641], [102.837815, 79.28129], [105.37243, 78.71334], [105.07547, 78.30689]]], [[[51.136186557831266, 80.54728017854093], [49.793684523320692, 80.415427761548202], [48.894411248577526, 80.33956675894369], [48.75493655782175, 80.175468248200829], [47.586119012244147, 80.010181179515328], [46.502825962109647, 80.247246812654339], [47.072455275262897, 80.559424140129451], [44.846958042181107, 80.589809882317169], [46.799138624871226, 80.771917629713627], [48.31847741068465, 80.784009914869927], [48.52280602396668, 80.514568996900138], [49.097189568890897, 80.753985907708412], [50.039767693894603, 80.918885403151791], [51.522932977103679, 80.699725653801906], [51.136186557831266, 80.54728017854093]]], [[[99.93976, 78.88094], [97.75794, 78.7562], [94.97259, 79.044745], [93.31288, 79.4265], [92.5454, 80.14379], [91.18107, 80.34146], [93.77766, 81.0246], [95.940895, 81.2504], [97.88385, 80.746975], [100.186655, 79.780135], [99.93976, 78.88094]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Rwanda\", \"name\": \"Rwanda\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[30.419104852019235, -1.134659112150416], [30.816134881317705, -1.698914076345388], [30.758308953583104, -2.287250257988368], [30.469696079232978, -2.413857517103458], [29.938359002407935, -2.348486830254238], [29.632176141078585, -2.917857761246096], [29.02492638521678, -2.839257907730157], [29.117478875451546, -2.292211195488384], [29.254834832483336, -2.215109958508911], [29.29188683443661, -1.620055840667987], [29.579466180140876, -1.341313164885626], [29.821518588996003, -1.443322442229785], [30.419104852019235, -1.134659112150416]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Western Sahara\", \"name\": \"W. Sahara\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-8.794883999049075, 27.120696316022503], [-8.81782833498667, 27.656425889592349], [-8.665589565454805, 27.656425889592349], [-8.66512447756419, 27.58947907155822], [-8.684399786809051, 27.395744126895998], [-8.687293667017398, 25.881056219988899], [-11.969418911171159, 25.933352769468261], [-11.93722449385332, 23.374594224536164], [-12.874221564169574, 23.284832261645171], [-13.118754441774708, 22.771220201096249], [-12.929101935263528, 21.327070624267559], [-16.845193650773989, 21.333323472574875], [-17.063423224342568, 20.99975210213082], [-17.020428432675736, 21.422310288981475], [-17.002961798561085, 21.420734157796574], [-14.750954555713532, 21.50060008390366], [-14.630832688851068, 21.860939846274899], [-14.221167771857251, 22.310163072188153], [-13.891110398809044, 23.691009019459297], [-12.500962693725368, 24.770116278578193], [-12.030758836301613, 26.030866197203036], [-11.718219773800353, 26.104091701760616], [-11.392554897496977, 26.883423977154358], [-10.551262579785272, 26.990807603456879], [-10.18942420087758, 26.860944729107398], [-9.735343390328877, 26.860944729107398], [-9.413037482124464, 27.088476060488514], [-8.794883999049075, 27.120696316022503]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Saudi Arabia\", \"name\": \"Saudi Arabia\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[42.779332309750963, 16.34789134364868], [42.64957278826607, 16.77463532151496], [42.347989129410706, 17.075805568911996], [42.270887892431219, 17.474721787989122], [41.754381951673949, 17.833046169500971], [41.221391229015573, 18.671599636301206], [40.939341261566533, 19.486485297111752], [40.247652215339819, 20.174634507726488], [39.801684604660934, 20.338862209550054], [39.139399448408277, 21.29190481209293], [39.023695916506782, 21.986875311770191], [39.066328973147577, 22.579655666590263], [38.492772251140075, 23.688451036060851], [38.023860304523616, 24.078685614512928], [37.483634881344379, 24.285494696545008], [37.154817742671177, 24.858482977797301], [37.209491408035994, 25.084541530858104], [36.931627231602583, 25.602959499610172], [36.639603712721218, 25.826227525327219], [36.249136590323808, 26.570135606384873], [35.640181512196385, 27.376520494083415], [35.130186801907875, 28.063351955674712], [34.632336053207972, 28.058546047471559], [34.787778761541936, 28.607427273059692], [34.832220493312938, 28.957483425404838], [34.956037225084252, 29.356554673778835], [36.068940870922049, 29.19749461518445], [36.501214227043583, 29.505253607698702], [36.740527784987243, 29.865283311476183], [37.503581984209028, 30.003776150018396], [37.668119744626374, 30.338665269485894], [37.998848911294367, 30.508499864213128], [37.002165561681004, 31.508412990844736], [39.004885695152545, 32.010216986614971], [39.195468377444961, 32.16100881604266], [40.399994337736238, 31.889991766887931], [41.889980910007829, 31.190008653278362], [44.709498732284736, 29.178891099559376], [46.568713413281742, 29.099025173452283], [47.459821811722819, 29.002519436147217], [47.708850538937376, 28.526062730416136], [48.416094191283939, 28.552004299426663], [48.807594842327163, 27.689627997339876], [49.299554477745815, 27.461218166609804], [49.470913527225647, 27.109999294538078], [50.152422316290874, 26.689663194275994], [50.212935418504671, 26.277026882425371], [50.113303257045928, 25.943972276304248], [50.23985883972874, 25.608049628190923], [50.527386509000728, 25.327808335872099], [50.660556675016885, 24.999895534764018], [50.810108270069563, 24.754742539971371], [51.112415398977006, 24.556330878186721], [51.389607781790623, 24.627385972588051], [51.579518670463258, 24.245497137951102], [51.617707553926969, 24.014219265228824], [52.000733270074321, 23.001154486578937], [55.006803012924898, 22.496947536707129], [55.208341098863187, 22.708329982997039], [55.666659376859812, 22.000001125572336], [54.999981723862355, 19.999994004796104], [52.000009800022227, 19.000003363516054], [49.116671583864857, 18.616667588774941], [48.183343540241324, 18.166669216377311], [47.466694777217626, 17.116681626854877], [47.000004917189749, 16.949999294497438], [46.749994337761642, 17.283338120996174], [46.366658563020529, 17.233315334537632], [45.399999220568752, 17.333335069238554], [45.216651238797184, 17.43332896572333], [44.062613152855072, 17.410358791569589], [43.791518589051904, 17.319976711491105], [43.380794305196098, 17.579986680567668], [43.115797560403351, 17.088440456607369], [43.218375278502734, 16.666889960186406], [42.779332309750963, 16.34789134364868]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Sudan\", \"name\": \"Sudan\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[33.963392794971178, 9.464285229420623], [33.824963480907506, 9.48406084571536], [33.842130853028145, 9.981914637215992], [33.721959248183097, 10.325262079630191], [33.206938084561777, 10.720111638406591], [33.086766479716729, 11.441141267476493], [33.206938084561777, 12.179338268667093], [32.743419037302537, 12.24800775714999], [32.674749548819641, 12.024831919580716], [32.073891524594778, 11.973329803218517], [32.314234734284746, 11.681484477166519], [32.400071594888338, 11.080626452941486], [31.850715687025509, 10.531270545078822], [31.352861895524875, 9.810240916008693], [30.837840731903377, 9.707236683284519], [29.996639497988546, 10.290927335388684], [29.618957311332842, 10.084918869940223], [29.515953078608607, 9.793073543888053], [29.000931914987166, 9.604232450560287], [28.966597170745779, 9.398223985111654], [27.970889587744345, 9.398223985111654], [27.833550610778783, 9.604232450560287], [27.112520981708876, 9.638567194801622], [26.752006167173811, 9.466893473594492], [26.477328213242508, 9.552730334198086], [25.96230704962101, 10.136420986302422], [25.790633328413943, 10.411098940233726], [25.069603699343979, 10.27375996326799], [24.79492574541268, 9.810240916008693], [24.537415163602017, 8.917537565731719], [24.194067721187643, 8.728696472403895], [23.886979580860665, 8.619729712933063], [23.805813429466745, 8.666318874542522], [23.459012892355979, 8.954285793489019], [23.394779087017291, 9.26506785729225], [23.557249790142915, 9.681218166538766], [23.554304233502187, 10.089255275915319], [22.977543572692749, 10.714462591998538], [22.864165480244246, 11.142395127807616], [22.87622, 11.384610000000119], [22.50869, 11.67936], [22.49762, 12.26024], [22.28801, 12.64605], [21.93681, 12.588180000000133], [22.03759, 12.95546], [22.29658, 13.37232], [22.18329, 13.78648], [22.51202, 14.09318], [22.30351, 14.32682], [22.567950000000106, 14.944290000000134], [23.02459, 15.68072], [23.886890000000101, 15.61084], [23.837660000000135, 19.580470000000101], [23.850000000000129, 20.0], [25.00000000000011, 20.00304], [25.00000000000011, 22.0], [29.02, 22.0], [32.9, 22.0], [36.86623, 22.0], [37.18872, 21.01885], [36.96941, 20.837440000000125], [37.114700000000134, 19.80796], [37.48179, 18.61409], [37.86276, 18.36786], [38.410089959473218, 17.998307399970312], [37.904000000000103, 17.42754], [37.16747, 17.263140000000128], [36.852530000000108, 16.95655], [36.75389, 16.29186], [36.32322, 14.82249], [36.42951, 14.42211], [36.27022, 13.563330000000118], [35.86363, 12.57828], [35.26049, 12.08286], [34.831630000000125, 11.318960000000116], [34.73115000000012, 10.910170000000106], [34.25745, 10.63009], [33.96162, 9.58358], [33.963392794971178, 9.464285229420623]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"South Sudan\", \"name\": \"S. Sudan\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[33.963392794971178, 9.464285229420623], [33.97498, 8.68456], [33.82550000000014, 8.37916], [33.294800000000116, 8.35458], [32.95418, 7.7849700000001], [33.56829, 7.71334], [34.0751, 7.22595], [34.25032, 6.82607], [34.70702, 6.59422000000012], [35.298007118233095, 5.506], [34.620196267853935, 4.847122742082034], [34.005, 4.249884947362147], [33.39, 3.79], [32.68642, 3.79232], [31.881450000000136, 3.55827], [31.24556, 3.7819], [30.83385, 3.50917], [29.95349, 4.1737], [29.715995314256013, 4.600804755060152], [29.159078403446635, 4.389267279473244], [28.696677687298795, 4.455077215996993], [28.428993768026992, 4.287154649264607], [27.979977247842946, 4.408413397637388], [27.374226108517625, 5.233944403500173], [27.213409051225248, 5.550953477394613], [26.465909458123289, 5.946717434101855], [26.213418409945113, 6.546603298362127], [25.796647983511257, 6.979315904158169], [25.124130893664805, 7.500085150579422], [25.114932488716867, 7.825104071479244], [24.567369012152191, 8.229187933785452], [23.886979580860665, 8.619729712933063], [24.194067721187643, 8.728696472403895], [24.537415163602017, 8.917537565731719], [24.79492574541268, 9.810240916008693], [25.069603699343979, 10.27375996326799], [25.790633328413943, 10.411098940233726], [25.96230704962101, 10.136420986302422], [26.477328213242508, 9.552730334198086], [26.752006167173811, 9.466893473594492], [27.112520981708876, 9.638567194801622], [27.833550610778783, 9.604232450560287], [27.970889587744345, 9.398223985111654], [28.966597170745779, 9.398223985111654], [29.000931914987166, 9.604232450560287], [29.515953078608607, 9.793073543888053], [29.618957311332842, 10.084918869940223], [29.996639497988546, 10.290927335388684], [30.837840731903377, 9.707236683284519], [31.352861895524875, 9.810240916008693], [31.850715687025509, 10.531270545078822], [32.400071594888338, 11.080626452941486], [32.314234734284746, 11.681484477166519], [32.073891524594778, 11.973329803218517], [32.674749548819641, 12.024831919580716], [32.743419037302537, 12.24800775714999], [33.206938084561777, 12.179338268667093], [33.086766479716729, 11.441141267476493], [33.206938084561777, 10.720111638406591], [33.721959248183097, 10.325262079630191], [33.842130853028145, 9.981914637215992], [33.824963480907506, 9.48406084571536], [33.963392794971178, 9.464285229420623]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Senegal\", \"name\": \"Senegal\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-16.713728807023468, 13.594958604379853], [-17.126106736712611, 14.373515733289221], [-17.625042690490655, 14.72954051356407], [-17.185172898822227, 14.91947724045286], [-16.700706346085919, 15.621527411354107], [-16.463098110407881, 16.135036119038457], [-16.120690070041928, 16.45566254319338], [-15.623666144258689, 16.369337063049809], [-15.135737270558813, 16.587282416240779], [-14.577347581428977, 16.598263658102805], [-14.099521450242175, 16.304302273010489], [-13.43573767745306, 16.039383042866188], [-12.830658331747513, 15.303691514542942], [-12.170750291380299, 14.616834214735503], [-12.124887457721256, 13.994727484589784], [-11.927716030311613, 13.422075100147392], [-11.553397793005427, 13.141213690641063], [-11.467899135778522, 12.754518947800973], [-11.513942836950587, 12.442987575729415], [-11.658300950557928, 12.386582749882834], [-12.20356482588563, 12.465647691289401], [-12.278599005573438, 12.354440008997285], [-12.499050665730561, 12.332089952031053], [-13.217818162478235, 12.575873521367964], [-13.700476040084322, 12.586182969610192], [-15.548476935274005, 12.628170070847343], [-15.816574266004251, 12.515567124883345], [-16.147716844130581, 12.547761542201185], [-16.67745195155457, 12.38485158940105], [-16.84152462408127, 13.151393947802557], [-15.931295945692208, 13.130284125211331], [-15.691000535534991, 13.270353094938455], [-15.511812506562931, 13.278569647672864], [-15.141163295949463, 13.509511623585235], [-14.712197231494626, 13.298206691943774], [-14.277701788784553, 13.28058502853224], [-13.844963344772404, 13.505041612191999], [-14.046992356817478, 13.794067898000446], [-14.376713833055785, 13.625680243377371], [-14.687030808968483, 13.63035696049978], [-15.081735398813816, 13.876491807505982], [-15.398770310924457, 13.860368760630916], [-15.624596320039936, 13.623587347869556], [-16.713728807023468, 13.594958604379853]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Solomon Islands\", \"name\": \"Solomon Is.\", \"continent\": \"Australia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[162.119024693040842, -10.482719008021133], [162.398645868172196, -10.826367282762119], [161.700032180018354, -10.820011081590222], [161.319796991214702, -10.204751478723123], [161.917383254237933, -10.446700534713653], [162.119024693040842, -10.482719008021133]]], [[[160.852228631837903, -9.872937106977002], [160.462588332357228, -9.89520964929484], [159.849447463214176, -9.794027194867367], [159.640002883135139, -9.639979750205269], [159.70294477766663, -9.242949720906777], [160.362956170898428, -9.400304457235533], [160.688517694337179, -9.610162448772808], [160.852228631837903, -9.872937106977002]]], [[[161.679981724289121, -9.599982191611373], [161.52939660059053, -9.784312025596433], [160.788253208660507, -8.917543226764918], [160.579997186524338, -8.320008640173965], [160.92002811100491, -8.320008640173965], [161.280006138349961, -9.120011488484449], [161.679981724289121, -9.599982191611373]]], [[[159.875027297198585, -8.337320244991714], [159.917401971677975, -8.538289890174864], [159.133677199539335, -8.114181410355398], [158.586113722974687, -7.754823500197713], [158.211149530264834, -7.421872246941147], [158.359977655265425, -7.320017998893915], [158.820001255527671, -7.56000335045739], [159.640002883135139, -8.020026950719567], [159.875027297198585, -8.337320244991714]]], [[[157.53842573468927, -7.347819919466928], [157.339419793933217, -7.404767347852554], [156.902030471014768, -7.176874281445391], [156.491357863591304, -6.765943291860394], [156.542827590153934, -6.599338474151478], [157.140000441718882, -7.021638278840653], [157.53842573468927, -7.347819919466928]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Sierra Leone\", \"name\": \"Sierra Leone\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-11.438779466182053, 6.785916856305746], [-11.708194545935736, 6.860098374860724], [-12.428098924193815, 7.262942002792029], [-12.949049038128193, 7.798645738145736], [-13.124025437868479, 8.163946438016977], [-13.246550258832512, 8.903048610871506], [-12.711957566773076, 9.342711696810765], [-12.596719122762206, 9.620188300001969], [-12.425928514037562, 9.835834051955953], [-12.150338100625003, 9.858571682164378], [-11.917277390988655, 10.046983954300556], [-11.117481248407328, 10.045872911006283], [-10.839151984083299, 9.688246161330367], [-10.622395188835037, 9.267910061068276], [-10.65477047366589, 8.977178452994194], [-10.494315151399629, 8.715540676300433], [-10.505477260774667, 8.348896389189603], [-10.230093553091276, 8.406205552601291], [-10.695594855176477, 7.939464016141085], [-11.14670427086838, 7.396706447779534], [-11.199801805048278, 7.105845648624735], [-11.438779466182053, 6.785916856305746]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"El Salvador\", \"name\": \"El Salvador\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-87.793111131526558, 13.384480495655051], [-87.904112108089507, 13.149016831917134], [-88.483301561216791, 13.163951320849488], [-88.843227912129692, 13.259733588102474], [-89.256742723329282, 13.4585328231293], [-89.812393561547637, 13.520622056527994], [-90.095554572290951, 13.73533763270073], [-90.064677903996568, 13.881969509328924], [-89.7219339668207, 14.134228013561694], [-89.5342193265205, 14.244815578666302], [-89.587342698916544, 14.362586167859485], [-89.353325975282772, 14.424132798719112], [-89.058511929057644, 14.340029405164085], [-88.843072882832814, 14.140506700085169], [-88.541230841815974, 13.980154730683475], [-88.50399797234968, 13.845485948130854], [-88.065342576840123, 13.964625962779774], [-87.859515347021585, 13.893312486216979], [-87.723502977229387, 13.785050360565503], [-87.793111131526558, 13.384480495655051]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Somaliland\", \"name\": \"Somaliland\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[48.938129510296491, 9.451748968946672], [48.486735874226994, 8.837626247589979], [47.78942, 8.003], [46.948328484897942, 7.996876532417386], [43.67875, 9.183580000000116], [43.296975132018744, 9.540477403191742], [42.92812, 10.021940000000139], [42.55876, 10.572580000000126], [42.776851841000948, 10.926878566934416], [43.145304803242126, 11.462039699748853], [43.470659620951658, 11.27770986576388], [43.666668328634834, 10.864169216348158], [44.117803582542805, 10.445538438351603], [44.614259067570849, 10.442205308468941], [45.556940545439133, 10.698029486529775], [46.645401238802997, 10.816549383991171], [47.525657586462778, 11.127228094929986], [48.021596307167769, 11.193063869669741], [48.378783807169263, 11.375481675660122], [48.948206414593457, 11.410621649618516], [48.942005242718423, 11.394266058798163], [48.938491245322595, 10.982327378783451], [48.938232863161076, 9.973500067581481], [48.938129510296491, 9.451748968946672]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Somalia\", \"name\": \"Somalia\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[49.72862, 11.5789], [50.25878, 11.67957], [50.73202, 12.0219], [51.1112, 12.02464], [51.13387, 11.74815], [51.04153, 11.16651], [51.04531, 10.6409], [50.83418, 10.27972], [50.55239, 9.19874], [50.07092, 8.08173], [49.4527, 6.80466], [48.59455, 5.33911], [47.74079, 4.2194], [46.56476, 2.85529], [45.56399, 2.04576], [44.06815, 1.05283], [43.13597, 0.2922], [42.04157, -0.91916], [41.81095, -1.44647], [41.58513, -1.68325], [40.993, -0.85829], [40.98105, 2.78452], [41.855083092643966, 3.918911920483726], [42.12861, 4.23413], [42.76967, 4.25259], [43.66087, 4.95755], [44.9636, 5.00162], [47.78942, 8.003], [48.486735874226937, 8.837626247589993], [48.938129510296442, 9.451748968946616], [48.938232863161026, 9.973500067581508], [48.938491245322481, 10.982327378783465], [48.942005242718345, 11.394266058798136], [48.948204758509732, 11.410617281697961], [49.26776, 11.43033], [49.72862, 11.5789]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Republic of Serbia\", \"name\": \"Serbia\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[20.874312778413408, 45.416375433934306], [21.483526238702204, 45.181170152357865], [21.562022739353718, 44.768947251965635], [22.145087924902892, 44.478422349620573], [22.459022251075961, 44.702517198254426], [22.705725538837434, 44.578002834647002], [22.47400841644065, 44.409227606781762], [22.657149692483067, 44.234923000661347], [22.410446404721593, 44.008063462900047], [22.500156691180219, 43.642814439460999], [22.986018507588479, 43.211161200527094], [22.604801466571352, 42.898518785161109], [22.43659467946139, 42.580321153323943], [22.545011834409642, 42.461362006188025], [22.380525750424674, 42.320259507815074], [21.917080000000105, 42.30364], [21.576635989402117, 42.245224397061847], [21.54332, 42.32025], [21.66292, 42.43922], [21.77505, 42.6827], [21.63302, 42.67717], [21.43866, 42.86255], [21.27421, 42.90959], [21.143395, 43.068685000000123], [20.95651, 43.13094], [20.81448, 43.27205], [20.63508, 43.21671], [20.49679, 42.88469], [20.25758, 42.81275], [20.3398, 42.89852], [19.95857, 43.10604], [19.63, 43.213779970270522], [19.48389, 43.35229], [19.21852, 43.52384], [19.454, 43.568100000000115], [19.59976, 44.03847], [19.11761, 44.42307], [19.36803, 44.863], [19.00548, 44.86023], [19.390475701584588, 45.236515611342369], [19.072768995854172, 45.521511135432078], [18.82982, 45.90888], [19.596044549241636, 46.171729844744547], [20.22019249846289, 46.127468980486569], [20.76217492033998, 45.734573065771478], [20.874312778413408, 45.416375433934306]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Suriname\", \"name\": \"Suriname\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-57.147436489476874, 5.973149929219161], [-55.949318406789786, 5.772877915872], [-55.841779751190408, 5.953125311706059], [-55.033250291551759, 6.025291449401662], [-53.958044603070888, 5.756548163267764], [-54.478632981979224, 4.896755682795585], [-54.3995422023565, 4.212611395683466], [-54.006930508018996, 3.620037746592558], [-54.181726040246261, 3.189779771330421], [-54.269705166223183, 2.732391669115046], [-54.524754197799709, 2.311848863123785], [-55.097587449755125, 2.523748073736612], [-55.569755011605984, 2.42150625244713], [-55.973322109589361, 2.510363877773016], [-56.073341844290283, 2.220794989425499], [-55.905600145070871, 2.021995754398659], [-55.995698004771739, 1.817667141116601], [-56.53938574891454, 1.89952260986692], [-57.150097825739898, 2.768926906745406], [-57.281433478409703, 3.333491929534119], [-57.601568976457848, 3.334654649260684], [-58.044694383360664, 4.060863552258382], [-57.860209520078691, 4.576801052260449], [-57.914288906472123, 4.812626451024413], [-57.307245856339492, 5.073566595882225], [-57.147436489476874, 5.973149929219161]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Slovakia\", \"name\": \"Slovakia\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[18.85314415861361, 49.496229763377634], [18.909574822676316, 49.435845852244562], [19.320712517990469, 49.571574001659179], [19.825022820726865, 49.217125352569219], [20.415839471119849, 49.431453355499755], [20.887955356538406, 49.328772284535823], [21.607808058364206, 49.470107326854077], [22.558137648211751, 49.08573802346713], [22.280841912533553, 48.825392157580659], [22.085608351334848, 48.422264309271782], [21.872236362401729, 48.319970811550007], [20.801293979584919, 48.62385407164237], [20.473562045989862, 48.562850043321809], [20.239054396249344, 48.327567247096916], [19.769470656013109, 48.2026911484636], [19.66136355965849, 48.266614895208647], [19.174364861739885, 48.111378892603859], [18.777024773847668, 48.081768296900627], [18.696512892336923, 47.88095368101439], [17.857132602620023, 47.758428860050365], [17.488472934649813, 47.867466132186209], [16.979666782304033, 48.123497015976298], [16.879982944412998, 48.470013332709463], [16.960288120194573, 48.596982326850593], [17.101984897538895, 48.8169688991171], [17.545006951577101, 48.800019029325362], [17.886484816161808, 48.903475246773695], [17.913511590250462, 48.996492824899072], [18.104972771891848, 49.043983466175298], [18.170498488037961, 49.271514797556421], [18.399993523846174, 49.315000515330034], [18.554971144289478, 49.495015367218777], [18.85314415861361, 49.496229763377634]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Slovenia\", \"name\": \"Slovenia\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[13.806475457421524, 46.509306138691201], [14.632471551174827, 46.431817328469535], [15.137091912504982, 46.658702704447016], [16.011663852612653, 46.683610744811688], [16.202298211337361, 46.852385972676949], [16.370504998447412, 46.841327216166498], [16.564808383864854, 46.503750922219822], [15.768732944408548, 46.238108222023442], [15.671529575267552, 45.834153550797865], [15.323953891672403, 45.731782538427673], [15.327674594797424, 45.452316392593218], [14.935243767972931, 45.471695054702671], [14.595109490627804, 45.6349409043127], [14.411968214585411, 45.466165676447446], [13.715059848697221, 45.500323798192369], [13.937630242578305, 45.591015936864608], [13.698109978905475, 46.016778062517339], [13.806475457421524, 46.509306138691201]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Sweden\", \"name\": \"Sweden\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[22.183173455501922, 65.723740546320158], [21.213516879977213, 65.02600535751526], [21.369631381930954, 64.413587958424273], [19.778875766690216, 63.609554348395022], [17.847779168375208, 62.749400132896803], [17.11955488451812, 61.341165676510954], [17.831346062906388, 60.636583360427394], [18.787721795332086, 60.081914374422581], [17.869224887776337, 58.95376618105869], [16.829185011470084, 58.719826972073385], [16.44770958829147, 57.041118069071871], [15.87978559740378, 56.104301866268649], [14.666681349352071, 56.20088511822216], [14.100721062891461, 55.407781073622637], [12.942910597392054, 55.361737372450563], [12.625100538797025, 56.307080186581956], [11.787942335668671, 57.441817125063061], [11.027368605196866, 58.856149400459344], [11.468271925511145, 59.432393296946024], [12.300365838274896, 60.117932847730025], [12.631146681375181, 61.293571682370121], [11.992064243221559, 61.800362453856543], [11.930569288794228, 63.128317572676963], [12.57993533697393, 64.066218980558318], [13.571916131248711, 64.049114081469696], [13.9199052263022, 64.445420640716065], [13.555689731509087, 64.7870276963815], [15.108411492582999, 66.19386688909546], [16.108712192456775, 67.302455552836875], [16.768878614985478, 68.013936672631388], [17.729181756265344, 68.010551866316263], [17.993868442464329, 68.567391262477344], [19.878559604581248, 68.407194322372561], [20.025268995857882, 69.065138658312691], [20.645592889089521, 69.106247260200846], [21.978534783626113, 68.616845608180682], [23.539473097434435, 67.936008612735236], [23.565879754335576, 66.396050930437411], [23.903378533633795, 66.006927395279604], [22.183173455501922, 65.723740546320158]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Swaziland\", \"name\": \"Swaziland\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[32.071665480281062, -26.733820082304902], [31.868060337051073, -27.17792734142127], [31.282773064913325, -27.285879408478991], [30.685961948374477, -26.743845310169526], [30.676608514129633, -26.398078301704604], [30.949666782359905, -26.022649021104144], [31.044079624157146, -25.731452325139436], [31.333157586397899, -25.660190525008943], [31.837777947728057, -25.843331801051342], [31.985779249811962, -26.29177988048022], [32.071665480281062, -26.733820082304902]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Syria\", \"name\": \"Syria\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[38.792340529136077, 33.378686428352218], [36.834062127435537, 32.312937526980768], [35.719918247222743, 32.709192409794859], [35.700797967274745, 32.716013698857374], [35.836396925608618, 32.868123277308506], [35.821100701650231, 33.277426459276292], [36.066460402172048, 33.824912421192543], [36.611750115715886, 34.201788641897174], [36.448194207512095, 34.59393524834406], [35.998402540843628, 34.644914048799997], [35.905023227692219, 35.410009467097318], [36.149762811026527, 35.821534735653664], [36.417550083163029, 36.040616970355053], [36.685389031731795, 36.259699205056457], [36.739494256341395, 36.817520453431079], [37.066761102045824, 36.623036200500614], [38.167727492024191, 36.901210435527766], [38.699891391765895, 36.712927354472335], [39.522580193852541, 36.716053778625984], [40.673259311695681, 37.091276353497285], [41.212089471203043, 37.074352321921687], [42.349591098811764, 37.22987254490409], [41.837064243340954, 36.605853786763568], [41.289707472505448, 36.358814602192261], [41.383965285005807, 35.628316555314349], [41.00615888851992, 34.419372260062111], [38.792340529136077, 33.378686428352218]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Chad\", \"name\": \"Chad\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[14.495787387762899, 12.859396267137353], [14.595781284247604, 13.330426947477859], [13.954476759505607, 13.353448798063765], [13.956698846094124, 13.996691189016925], [13.540393507550785, 14.36713369390122], [13.97217, 15.68437], [15.247731154041842, 16.627305813050778], [15.300441114979716, 17.927949937405], [15.68574059414777, 19.957180080642384], [15.90324669766431, 20.387618923417499], [15.487148064850143, 20.730414537025634], [15.47106, 21.04845], [15.096887648181847, 21.308518785074902], [14.8513, 22.862950000000119], [15.86085, 23.40972], [19.84926, 21.49509], [23.837660000000135, 19.580470000000101], [23.886890000000101, 15.61084], [23.02459, 15.68072], [22.567950000000106, 14.944290000000134], [22.30351, 14.32682], [22.51202, 14.09318], [22.18329, 13.78648], [22.29658, 13.37232], [22.03759, 12.95546], [21.93681, 12.588180000000133], [22.28801, 12.64605], [22.49762, 12.26024], [22.50869, 11.67936], [22.87622, 11.384610000000119], [22.864165480244246, 11.142395127807616], [22.231129184668756, 10.971888739460608], [21.723821648859538, 10.567055568885959], [21.000868361096305, 9.475985215691479], [20.059685499764267, 9.012706000194838], [19.094008009526071, 9.074846910025768], [18.81200971850927, 8.982914536978623], [18.911021762780589, 8.630894680206435], [18.389554884523303, 8.281303615751879], [17.964929640380884, 7.890914008002992], [16.705988396886365, 7.508327541529978], [16.4561845231874, 7.734773667832938], [16.290561557691884, 7.754307359239417], [16.106231723706738, 7.497087917506461], [15.279460483469164, 7.42192454673801], [15.436091749745737, 7.692812404811887], [15.120865512765302, 8.382150173369437], [14.979995558337688, 8.796104234243442], [14.544466586981851, 8.965861314322238], [13.954218377344088, 9.549494940626685], [14.17146609869911, 10.021378282100043], [14.627200555081057, 9.920919297724591], [14.909353875394796, 9.992129421422758], [15.46787275560524, 9.982336737503543], [14.923564894275042, 10.891325181517514], [14.960151808337679, 11.555574042197234], [14.89336, 12.21905], [14.495787387762899, 12.859396267137353]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Togo\", \"name\": \"Togo\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[1.865240512712318, 6.14215770102973], [1.060121697604927, 5.928837388528875], [0.836931186536333, 6.279978745952147], [0.570384148774849, 6.914358628767188], [0.490957472342245, 7.411744289576474], [0.712029249686878, 8.312464504423827], [0.461191847342121, 8.677222601756013], [0.365900506195885, 9.46500397382948], [0.367579990245389, 10.191212876827176], [-0.049784715159944, 10.706917832883928], [0.023802524423701, 11.018681748900802], [0.899563022474069, 10.997339382364258], [0.772335646171484, 10.470808213742357], [1.077795037448737, 10.175606594275022], [1.425060662450136, 9.825395412632998], [1.46304284018467, 9.334624335157086], [1.664477573258381, 9.128590399609378], [1.618950636409238, 6.832038072126236], [1.865240512712318, 6.14215770102973]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Thailand\", \"name\": \"Thailand\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[102.58493248902667, 12.186594956913279], [101.687157830819928, 12.645740057826568], [100.831809523524839, 12.627084865769204], [100.978467238369191, 13.412721665902563], [100.097797479251099, 13.406856390837429], [100.018732537844528, 12.307001044153353], [99.478920526123602, 10.846366685423545], [99.153772414143134, 9.963061428258554], [99.222398716226749, 9.239255479362425], [99.873831821698118, 9.207862046745118], [100.279646844486194, 8.29515289960605], [100.45927412313273, 7.429572658717175], [101.017327915452697, 6.856868597842476], [101.623079054778032, 6.740622463401918], [102.141186964936367, 6.221636053894626], [101.81428185425797, 5.810808417174242], [101.154218784593837, 5.691384182147713], [101.075515578213327, 6.20486705161592], [100.259596388756933, 6.642824815289542], [100.085756870527092, 6.46448944745029], [99.690690545655727, 6.848212795433595], [99.519641554769606, 7.343453884302759], [98.988252801512289, 7.907993068875325], [98.503786248775967, 8.382305202666286], [98.339661899816988, 7.794511623562384], [98.150009393305808, 8.350007432483876], [98.259150018306229, 8.973922837759799], [98.553550653073017, 9.932959906448543], [99.038120558673953, 10.960545762572435], [99.587286004639694, 11.892762762901695], [99.196353794351637, 12.804748439988666], [99.212011753336071, 13.269293728076462], [99.097755161538728, 13.827502549693275], [98.430819126379859, 14.622027696180831], [98.192074009191373, 15.123702500870349], [98.537375929765687, 15.308497422746081], [98.90334842325673, 16.177824204976115], [98.493761020911322, 16.837835598207928], [97.859122755934848, 17.567946071843657], [97.375896437573516, 18.445437730375811], [97.797782830804394, 18.627080389881751], [98.253723992915582, 19.708203029860041], [98.959675734454848, 19.752980658440944], [99.543309360759281, 20.186597601802056], [100.115987583417819, 20.41784963630818], [100.548881056726856, 20.109237982661124], [100.606293573003128, 19.508344427971217], [101.282014601651667, 19.462584947176762], [101.035931431077742, 18.408928330961611], [101.059547560635139, 17.512497259994486], [102.113591750092453, 18.109101670804161], [102.413004998791592, 17.932781683824281], [102.998705682387694, 17.961694647691598], [103.200192091893726, 18.309632066312769], [103.956476678485288, 18.240954087796872], [104.716947056092465, 17.428858954330078], [104.779320509868768, 16.441864935771445], [105.589038527450128, 15.570316066952856], [105.544338413517664, 14.723933620660414], [105.218776890078871, 14.27321177821069], [104.281418084736586, 14.416743068901363], [102.988422072361601, 14.225721136934464], [102.348099399833004, 13.39424734135822], [102.58493248902667, 12.186594956913279]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Tajikistan\", \"name\": \"Tajikistan\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[71.014198032520156, 40.244365546218226], [70.648018833299957, 39.935753892571157], [69.559609816368507, 40.103211371412968], [69.464886915977516, 39.526683254548693], [70.549161818325601, 39.604197902986492], [71.784693637991992, 39.279463202464363], [73.67537926625478, 39.431236884105594], [73.928852166646408, 38.505815334622724], [74.257514276022718, 38.606506862943441], [74.864815708316812, 38.378846340481587], [74.829985792952087, 37.990007025701388], [74.980002475895404, 37.419990139305888], [73.948695916646486, 37.421566270490786], [73.260055779924983, 37.495256862938994], [72.636889682917271, 37.047558091778349], [72.193040805962383, 36.94828766534566], [71.84463829945058, 36.738171291646914], [71.448693475230229, 37.065644843080513], [71.541917759084768, 37.905774441065631], [71.239403924448155, 37.953265082341879], [71.348131137990251, 38.258905341132156], [70.806820509732873, 38.486281643216408], [70.376304152309274, 38.138395901027515], [70.270574171840124, 37.73516469985401], [70.116578403610319, 37.588222764632086], [69.518785434857946, 37.608996690413413], [69.196272820924364, 37.15114350030742], [68.859445835245921, 37.344335842430588], [68.135562371701369, 37.023115139304302], [67.829999627559502, 37.144994004864678], [68.392032505165943, 38.157025254868728], [68.176025018185911, 38.901553453113898], [67.442219679641298, 39.140143541005479], [67.701428664017342, 39.580478420564518], [68.536416456989414, 39.533452867178923], [69.011632928345477, 40.086158148756653], [69.329494663372813, 40.727824408524839], [70.666622348925031, 40.960213324541407], [70.458159621059608, 40.49649485937028], [70.601406691372674, 40.218527330072284], [71.014198032520156, 40.244365546218226]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Turkmenistan\", \"name\": \"Turkmenistan\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[61.21081709172573, 35.650072333309218], [61.123070509694131, 36.491597194966239], [60.377637973883864, 36.52738312432836], [59.234761997316795, 37.412987982730336], [58.436154412678192, 37.522309475243794], [57.330433790928964, 38.029229437810933], [56.619366082592805, 38.121394354803478], [56.180374790273319, 37.935126654607423], [55.511578403551894, 37.964117133123153], [54.800303989486558, 37.392420762678178], [53.921597934795543, 37.198918361961255], [53.735511102112504, 37.906136176091685], [53.880928582581831, 38.952093003895349], [53.101027866432894, 39.290573635407121], [53.357808058491216, 39.975286363274442], [52.693972609269807, 40.033629055331964], [52.91525109234361, 40.87652334244472], [53.85813927594112, 40.631034450842165], [54.736845330632136, 40.951014919593455], [54.0083109881813, 41.551210842447404], [53.721713494690576, 42.123191433270016], [52.916749708880069, 41.868116563477322], [52.81468875510361, 41.135370591794704], [52.502459751196135, 41.783315538086356], [52.94429324729164, 42.116034247397586], [54.079417759014937, 42.324109402020817], [54.755345493392625, 42.04397146256656], [55.455251092353755, 41.259859117185826], [55.968191359282898, 41.308641669269356], [57.096391229079089, 41.32231008561056], [56.93221520368779, 41.82602610937559], [57.786529982337065, 42.170552883465511], [58.629010857991453, 42.751551011723045], [59.976422153569771, 42.223081976890199], [60.083340691981654, 41.425146185871391], [60.46595299667068, 41.22032664648254], [61.547178989513547, 41.2663703476546], [61.882714064384679, 41.084856879229392], [62.374260288344992, 40.053886216790382], [63.518014764261018, 39.363256537425627], [64.170223016216752, 38.892406724598231], [65.215998976507379, 38.402695013984292], [66.546150343700205, 37.974684963526855], [66.518606805288655, 37.362784328758785], [66.217384881459324, 37.393790188133913], [65.745630731066811, 37.661164048812061], [65.588947788357828, 37.305216783185628], [64.746105177677393, 37.111817735333297], [64.546479119733888, 36.31207326918426], [63.982895949158696, 36.007957465146596], [63.193538445900337, 35.857165635718907], [62.984662306576588, 35.404040839167614], [62.230651483005879, 35.270663967422287], [61.21081709172573, 35.650072333309218]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"East Timor\", \"name\": \"Timor-Leste\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[124.96868248911619, -8.892790215697081], [125.086246372580248, -8.656887302284678], [125.947072381698234, -8.432094821815033], [126.64470421763852, -8.39824675866385], [126.957243280139792, -8.273344821814396], [127.335928175974615, -8.397316582882601], [126.967991978056517, -8.668256117388891], [125.925885044458568, -9.106007175333351], [125.088520135601073, -9.393173109579292], [125.070019972840583, -9.08998748132287], [124.96868248911619, -8.892790215697081]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Trinidad and Tobago\", \"name\": \"Trinidad and Tobago\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-61.68, 10.76], [-61.105, 10.89], [-60.895, 10.855], [-60.935, 10.11], [-61.77, 10.0], [-61.95, 10.09], [-61.66, 10.365], [-61.68, 10.76]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Tunisia\", \"name\": \"Tunisia\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[9.482139926805273, 30.307556057246181], [9.055602654668148, 32.102691962201284], [8.439102817426116, 32.506284898400814], [8.430472853233367, 32.748337307255944], [7.612641635782181, 33.344114895148955], [7.524481642292242, 34.097376410451453], [8.140981479534302, 34.655145982393783], [8.376367628623766, 35.479876003555937], [8.217824334352313, 36.433176988260271], [8.420964389691674, 36.946427313783154], [9.509993523810605, 37.349994411766531], [10.210002475636315, 37.230001735984807], [10.180650262094529, 36.724037787415071], [11.028867221733348, 37.09210317641395], [11.100025668999249, 36.899996039368908], [10.600004510143092, 36.410000108377368], [10.593286573945134, 35.947444362932806], [10.939518670300686, 35.698984076473486], [10.807847120821007, 34.833507188449182], [10.149592726287123, 34.330773016897702], [10.339658644256613, 33.785741685515312], [10.856836378633684, 33.768740139291275], [11.108500603895118, 33.293342800422188], [11.488787469131008, 33.136995754523134], [11.432253452203692, 32.368903103152867], [10.944789666394453, 32.081814683555358], [10.636901482799484, 31.761420803345747], [9.950225050505081, 31.376069647745251], [10.056575148161752, 30.961831366493595], [9.97001712407285, 30.539324856075236], [9.482139926805273, 30.307556057246181]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Turkey\", \"name\": \"Turkey\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[36.913127068842151, 41.335358384764291], [38.347664829264502, 40.948586127275711], [39.512606642420238, 41.102762763018561], [40.373432651538245, 41.013672593747337], [41.554084100110707, 41.535656236327604], [42.619548781104548, 41.58317271581992], [43.582745802592704, 41.09214325618256], [43.752657911968491, 40.740200914058811], [43.656436395040963, 40.253563951166157], [44.400008579288759, 40.005000311842302], [44.79398969908199, 39.713002631177027], [44.109225294782355, 39.428136298168049], [44.421402622257595, 38.281281236314513], [44.225755649600522, 37.971584377589345], [44.772699008977739, 37.170444647768441], [44.293451775902852, 37.001514390606353], [43.942258742047343, 37.256227525372928], [42.77912560402185, 37.385263576805798], [42.349591098811764, 37.229872544904104], [41.212089471203015, 37.074352321921729], [40.673259311695702, 37.091276353497356], [39.522580193852512, 36.716053778626012], [38.699891391765917, 36.712927354472313], [38.167727492024156, 36.90121043552778], [37.066761102045824, 36.623036200500614], [36.739494256341366, 36.817520453431108], [36.685389031731816, 36.259699205056499], [36.417550083163086, 36.040616970355096], [36.149762811026584, 35.821534735653664], [35.782084995269848, 36.274995429014915], [36.160821567537049, 36.650605577128367], [35.550936313628334, 36.565442816711325], [34.714553256984367, 36.795532131490909], [34.026894972476455, 36.219960028623966], [32.509158156064096, 36.107563788389193], [31.69959516777956, 36.644275214172602], [30.621624790171062, 36.677864895162308], [30.391096225717114, 36.262980658506983], [29.69997562024556, 36.144357408181001], [28.732902866335387, 36.676831366516431], [27.641186557737363, 36.658822129862749], [27.048767937943289, 37.653360907536005], [26.318218214633042, 38.208133246405382], [26.804700148228726, 38.985760199533551], [26.170785353304375, 39.463612168936457], [27.280019972449388, 40.420013739578302], [28.819977654747209, 40.460011298172212], [29.240003696415574, 41.219990749672682], [31.145933872204434, 41.087621568357058], [32.347979363745786, 41.736264146484629], [33.513282911927512, 42.018960069337304], [35.167703891751863, 42.040224921225438], [36.913127068842151, 41.335358384764291]]], [[[27.192376743282406, 40.690565700842448], [26.358009067497782, 40.151993923496477], [26.043351271272535, 40.617753607743161], [26.056942172965332, 40.824123440100735], [26.294602085075692, 40.936261298174166], [26.604195590936282, 41.562114569661013], [26.117041863720825, 41.826904608724554], [27.135739373490505, 42.141484890301307], [27.996720411905407, 42.007358710287768], [28.115524529744441, 41.622886054036279], [28.988442824018779, 41.299934190428175], [28.806438429486743, 41.05496206314853], [27.619017368284112, 40.999823309893102], [27.192376743282406, 40.690565700842448]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Taiwan\", \"name\": \"Taiwan\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[121.777817824389899, 24.394273586519393], [121.175632358892713, 22.790857245367164], [120.747079705896198, 21.970571397382106], [120.220083449383651, 22.814860948166732], [120.106188592612369, 23.556262722258229], [120.694679803552233, 24.53845083261373], [121.49504438688875, 25.295458889257379], [121.951243931161429, 24.997595933527034], [121.777817824389899, 24.394273586519393]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"United Republic of Tanzania\", \"name\": \"Tanzania\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[33.903711197104592, -0.95], [34.07262, -1.05982], [37.69869, -3.09699], [37.7669, -3.67712], [39.20222, -4.67677], [38.74054, -5.90895], [38.79977, -6.47566], [39.44, -6.84], [39.470000000000134, -7.1], [39.19469, -7.7039], [39.25203, -8.00781], [39.18652, -8.48551], [39.53574, -9.112369999999883], [39.9496, -10.0984], [40.31659, -10.317099999999867], [39.521, -10.89688], [38.427556593587767, -11.285202325081626], [37.82764, -11.26879], [37.47129, -11.56876], [36.775150994622884, -11.59453744878078], [36.514081658684397, -11.720938002166745], [35.312397902169145, -11.439146416879165], [34.559989047999451, -11.520020033415845], [34.28, -10.16], [33.940837724096518, -9.693673841980283], [33.73972, -9.41715], [32.759375441221373, -9.230599053589001], [32.191864861791935, -8.930358981973255], [31.556348097466628, -8.762048841998647], [31.157751336950064, -8.594578747317312], [30.74, -8.34], [30.2, -7.08], [29.62, -6.52], [29.419992710088305, -5.939998874539297], [29.519986606573063, -5.419978936386257], [29.339997592900367, -4.499983412294113], [29.753512404099858, -4.452389418153301], [30.11632, -4.09012], [30.50554, -3.56858], [30.75224, -3.35931], [30.74301, -3.03431], [30.52766, -2.80762], [30.46967, -2.41383], [30.758308953583132, -2.287250257988375], [30.816134881317844, -1.698914076345374], [30.419104852019291, -1.134659112150416], [30.769860000000101, -1.01455], [31.86617, -1.02736], [33.903711197104592, -0.95]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Uganda\", \"name\": \"Uganda\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[31.86617, -1.02736], [30.769860000000101, -1.01455], [30.419104852019291, -1.134659112150416], [29.821518588996121, -1.443322442229771], [29.579466180141019, -1.341313164885605], [29.587837762172164, -0.587405694179381], [29.8195, -0.2053], [29.875778842902431, 0.597379868976361], [30.086153598762785, 1.062312730306416], [30.468507521290285, 1.583805446779706], [30.852670118948133, 1.849396470543752], [31.174149204235952, 2.204465236821306], [30.77332, 2.339890000000139], [30.83385, 3.50917], [31.24556, 3.7819], [31.88145, 3.55827], [32.68642, 3.79232], [33.39, 3.79], [34.005, 4.249884947362147], [34.47913, 3.5556], [34.59607, 3.053740000000118], [35.03599, 1.90584], [34.6721, 1.17694], [34.18, 0.515], [33.893568969666994, 0.109813537861839], [33.903711197104592, -0.95], [31.86617, -1.02736]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Ukraine\", \"name\": \"Ukraine\", \"continent\": \"Europe\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[31.78599816257158, 52.10167796488544], [32.159412062312661, 52.061266994833204], [32.412058139787625, 52.288694973349735], [32.715760532366964, 52.238465481162038], [33.7526998227357, 52.335074571331681], [34.391730584457001, 51.768881740925778], [34.141978387190385, 51.566413479206226], [34.22481570815426, 51.255993150428942], [35.022183058417873, 51.207572333371445], [35.377923618315116, 50.773955390010343], [35.35611616388794, 50.577197374059054], [36.62616784032533, 50.225590928745127], [37.393459506995065, 50.383953355503586], [38.01063113785689, 49.915661526074622], [38.59498823421341, 49.926461900423618], [40.069058465339097, 49.601055406281688], [40.080789015469342, 49.307429917999272], [39.674663934087526, 48.783818467801872], [39.895632358567575, 48.232405097031425], [39.738277622238819, 47.898937079451983], [38.770584751141186, 47.825608222029807], [38.255112339029743, 47.546400458356807], [38.223538038899413, 47.102189846375872], [37.42513715998998, 47.022220567404197], [36.759854770664383, 46.698700263040919], [35.823684523264816, 46.645964463887054], [34.962341749823871, 46.273196519549636], [35.020787794745978, 45.65121898048465], [35.51000857925316, 45.409993394546177], [36.529997999830151, 45.46998973243705], [36.334712762199146, 45.113215643893952], [35.239999220528112, 44.939996242851599], [33.882511020652878, 44.361478583344066], [33.326420932760037, 44.564877020844875], [33.546924269349446, 45.034770819674883], [32.454174432105496, 45.327466132176063], [32.630804477679128, 45.519185695978905], [33.588162062318382, 45.851568508480227], [33.298567335754704, 46.08059845639783], [31.744140252415171, 46.333347886737378], [31.675307244602401, 46.706245022155528], [30.748748813609094, 46.583100084003995], [30.37760867688888, 46.032410183285663], [29.603289015427425, 45.293308010431119], [29.149724969201646, 45.464925442072442], [28.679779493939371, 45.30403087013169], [28.233553501099035, 45.488283189468369], [28.48526940279276, 45.596907050145887], [28.659987420371575, 45.939986884131628], [28.933717482221621, 46.258830471372491], [28.862972446414055, 46.437889309263824], [29.072106967899288, 46.517677720722482], [29.170653924279879, 46.379262396828693], [29.759971958136383, 46.349987697935354], [30.024658644335364, 46.423936672545032], [29.838210076626289, 46.525325832701675], [29.908851759569295, 46.67436066343145], [29.559674106573105, 46.928582872091312], [29.415135125452732, 47.346645209332571], [29.050867954227321, 47.510226955752493], [29.122698195113024, 47.849095160506458], [28.670891147585163, 48.118148505234089], [28.259546746541837, 48.155562242213406], [27.52253746919515, 48.467119452501102], [26.857823520624798, 48.368210761094488], [26.619336785597788, 48.220726223333457], [26.197450392366925, 48.220881252630342], [25.945941196402394, 47.987148749374207], [25.207743361112986, 47.891056423527459], [24.866317172960571, 47.737525743188307], [24.402056105250374, 47.981877753280422], [23.760958286237404, 47.985598456405448], [23.142236362406798, 48.096341050806942], [22.710531447040488, 47.882193915389394], [22.640819939878746, 48.150239569687351], [22.085608351334848, 48.422264309271782], [22.280841912533553, 48.825392157580659], [22.558137648211751, 49.08573802346713], [22.776418898212619, 49.027395331409608], [22.518450148211596, 49.476773586619736], [23.426508416444388, 50.308505764357449], [23.922757195743259, 50.424881089878738], [24.029985792748899, 50.705406602575174], [23.52707075368437, 51.578454087930233], [24.005077752384206, 51.617443956094448], [24.553106316839511, 51.888461005249177], [25.327787713327005, 51.910656032918538], [26.337958611768549, 51.832288723347915], [27.454066196408426, 51.59230337178446], [28.241615024536564, 51.572227077839059], [28.617612745892242, 51.427713934934836], [28.992835320763522, 51.602044379271462], [29.254938185347921, 51.368234361366881], [30.157363722460889, 51.416138414101454], [30.55511722181145, 51.319503485715643], [30.619454380014837, 51.822806098022362], [30.927549269338975, 52.042353420614383], [31.78599816257158, 52.10167796488544]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Uruguay\", \"name\": \"Uruguay\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-57.625133429582945, -30.216294854454258], [-56.976025763564721, -30.109686374636119], [-55.97324459494093, -30.883075860316296], [-55.601510179249331, -30.853878676071385], [-54.572451544805105, -31.494511407193745], [-53.787951626182185, -32.047242526987617], [-53.209588995971529, -32.727666110974717], [-53.650543992718084, -33.202004082981823], [-53.373661668498229, -33.768377780900757], [-53.806425950726521, -34.396814874002224], [-54.935866054897716, -34.952646579733617], [-55.674089728403274, -34.752658786764066], [-56.215297003796053, -34.85983570733741], [-57.139685024633096, -34.430456231424238], [-57.817860683815489, -34.462547295877492], [-58.427074144104381, -33.909454441057569], [-58.349611172098854, -33.2631889788154], [-58.132647671121433, -33.040566908502008], [-58.142440355040748, -32.044503676076147], [-57.874937303281875, -31.016556084926201], [-57.625133429582945, -30.216294854454258]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"United States of America\", \"name\": \"United States\", \"continent\": \"North America\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[-155.54211, 19.08348], [-155.68817, 18.91619], [-155.93665, 19.05939], [-155.90806, 19.33888], [-156.07347, 19.70294], [-156.02368, 19.81422], [-155.85008, 19.97729], [-155.91907, 20.17395], [-155.86108, 20.26721], [-155.78505, 20.2487], [-155.40214, 20.07975], [-155.22452, 19.99302], [-155.06226, 19.8591], [-154.80741, 19.50871], [-154.83147, 19.45328], [-155.222169999999892, 19.23972], [-155.54211, 19.08348]]], [[[-156.07926, 20.64397], [-156.41445, 20.57241], [-156.58673, 20.783], [-156.70167, 20.8643], [-156.71055, 20.92676], [-156.61258, 21.01249], [-156.25711, 20.91745], [-155.99566, 20.76404], [-156.07926, 20.64397]]], [[[-156.75824, 21.17684], [-156.78933, 21.06873], [-157.32521, 21.09777], [-157.25027, 21.21958], [-156.75824, 21.17684]]], [[[-157.65283, 21.32217], [-157.70703, 21.26442], [-157.7786, 21.27729], [-158.12667, 21.31244], [-158.2538, 21.53919], [-158.29265, 21.57912], [-158.0252, 21.71696], [-157.94161, 21.65272], [-157.65283, 21.32217]]], [[[-159.34512, 21.982], [-159.46372, 21.88299], [-159.80051, 22.06533], [-159.74877, 22.1382], [-159.5962, 22.23618], [-159.36569, 22.21494], [-159.34512, 21.982]]], [[[-94.81758, 49.38905], [-94.639999999999858, 48.840000000000103], [-94.32914, 48.67074], [-93.63087, 48.60926], [-92.61, 48.45], [-91.64, 48.14], [-90.829999999999856, 48.27], [-89.6, 48.01], [-89.272917446636654, 48.019808254582834], [-88.378114183286513, 48.302917588893806], [-87.439792623300207, 47.94], [-86.461990831228135, 47.553338019392037], [-85.652363247403215, 47.220218817730498], [-84.876079881514855, 46.900083319682366], [-84.779238247399817, 46.637101955749117], [-84.54374874544564, 46.538684190449224], [-84.6049, 46.4396], [-84.3367, 46.408770000000104], [-84.142119513673279, 46.512225857115723], [-84.091851264161463, 46.275418606138253], [-83.890765347005654, 46.116926988299149], [-83.616130947590491, 46.116926988299149], [-83.469550747394621, 45.994686387712584], [-83.592850714843067, 45.816893622412543], [-82.550924648758169, 45.347516587905446], [-82.337763125431053, 44.44], [-82.137642381503952, 43.571087551439987], [-82.43, 42.98], [-82.899999999999878, 42.430000000000135], [-83.119999999999877, 42.08], [-83.141999681312555, 41.975681057292995], [-83.029810146806909, 41.832795722005997], [-82.690089280920162, 41.675105088867319], [-82.439277716791608, 41.675105088867319], [-81.277746548167059, 42.209025987306845], [-80.247447679347843, 42.36619985612267], [-78.939362148743683, 42.863611355148116], [-78.92, 42.965], [-79.009999999999863, 43.27], [-79.171673550111862, 43.466339423184301], [-78.720279914042365, 43.625089423184953], [-77.737885097957601, 43.629055589363382], [-76.820034145805565, 43.628784288093748], [-76.5, 44.018458893758599], [-76.375, 44.09631], [-75.31821, 44.81645000000016], [-74.867, 45.00048000000011], [-73.347829999999874, 45.00738], [-71.505059999999858, 45.0082], [-71.405, 45.255000000000123], [-71.08482, 45.305240000000154], [-70.659999999999783, 45.46], [-70.305, 45.915], [-69.99997, 46.69307], [-69.237216, 47.447781], [-68.905, 47.185], [-68.23444, 47.35486], [-67.79046, 47.06636], [-67.79134, 45.702810000000134], [-67.13741, 45.13753], [-66.96466, 44.809700000000149], [-68.03252, 44.3252], [-69.059999999999874, 43.98], [-70.116169999999897, 43.684050000000141], [-70.645475633410967, 43.090238348964043], [-70.81489, 42.8653], [-70.825, 42.335], [-70.494999999999891, 41.805], [-70.08, 41.78], [-70.185, 42.145], [-69.88497, 41.922830000000111], [-69.96503, 41.637170000000161], [-70.64, 41.475], [-71.12039, 41.494450000000164], [-71.859999999999829, 41.32], [-72.295, 41.27], [-72.87643, 41.22065], [-73.71, 40.931102351654481], [-72.24126, 41.119480000000138], [-71.944999999999808, 40.93], [-73.345, 40.63], [-73.982, 40.628], [-73.952325, 40.75075], [-74.25671, 40.47351], [-73.96244, 40.42763], [-74.17838, 39.70926], [-74.90604, 38.93954], [-74.98041, 39.1964], [-75.20002, 39.24845], [-75.52805, 39.4985], [-75.32, 38.96], [-75.071834764789784, 38.782032230179276], [-75.05673, 38.404120000000106], [-75.37747, 38.01551], [-75.94023, 37.21689], [-76.03127, 37.2566], [-75.722049999999783, 37.937050000000106], [-76.23287, 38.319215], [-76.35, 39.15], [-76.542725, 38.717615], [-76.32933, 38.08326], [-76.98999793161353, 38.239991766913384], [-76.301619999999886, 37.917945], [-76.25874, 36.9664000000001], [-75.9718, 36.89726], [-75.868039999999809, 36.55125], [-75.72749, 35.550740000000125], [-76.36318, 34.808540000000129], [-77.39763499999988, 34.51201], [-78.05496, 33.92547], [-78.554349999999815, 33.861330000000116], [-79.06067, 33.49395], [-79.20357, 33.15839], [-80.301325, 32.509355], [-80.86498, 32.0333], [-81.33629, 31.44049], [-81.49042, 30.729990000000122], [-81.31371, 30.03552], [-80.98, 29.18000000000011], [-80.53558499999987, 28.47213], [-80.529999999999774, 28.04], [-80.056539284977532, 26.88000000000013], [-80.088015, 26.205765], [-80.131559999999837, 25.816775], [-80.38103, 25.20616], [-80.679999999999879, 25.08], [-81.17213, 25.201260000000126], [-81.33, 25.64], [-81.709999999999795, 25.87], [-82.239999999999895, 26.730000000000125], [-82.70515, 27.49504], [-82.85526, 27.88624], [-82.65, 28.550000000000146], [-82.929999999999865, 29.100000000000129], [-83.70959, 29.93656], [-84.1, 30.090000000000114], [-85.10882, 29.63615], [-85.28784, 29.686120000000127], [-85.7731, 30.152610000000116], [-86.399999999999878, 30.400000000000112], [-87.530359999999831, 30.27433], [-88.41782, 30.3849], [-89.180489999999836, 30.31598], [-89.593831178419748, 30.159994004836843], [-89.413735, 29.89419], [-89.43, 29.48864], [-89.21767, 29.29108], [-89.40823, 29.15961], [-89.77928, 29.307140000000135], [-90.15463, 29.11743], [-90.880224999999896, 29.148535000000116], [-91.626784999999842, 29.677000000000127], [-92.49906, 29.5523], [-93.22637, 29.78375], [-93.84842, 29.71363], [-94.69, 29.480000000000125], [-95.60026, 28.73863], [-96.59404, 28.30748], [-97.139999999999802, 27.83], [-97.37, 27.38], [-97.379999999999853, 26.69], [-97.33, 26.210000000000115], [-97.139999999999802, 25.87], [-97.529999999999859, 25.84], [-98.239999999999895, 26.060000000000109], [-99.019999999999854, 26.37], [-99.3, 26.84], [-99.52, 27.54], [-100.11, 28.11000000000012], [-100.45584, 28.696120000000118], [-100.957599999999886, 29.380710000000125], [-101.6624, 29.779300000000113], [-102.48, 29.76], [-103.11, 28.97], [-103.94, 29.27], [-104.456969999999814, 29.57196], [-104.705749999999895, 30.12173], [-105.03737, 30.64402], [-105.63159, 31.083830000000113], [-106.1429, 31.39995], [-106.507589999999794, 31.75452], [-108.24, 31.754853718166398], [-108.24194, 31.34222], [-109.035, 31.341940000000161], [-111.02361, 31.33472], [-113.30498, 32.03914], [-114.815, 32.52528], [-114.721389999999829, 32.72083], [-115.991349999999869, 32.61239000000014], [-117.127759999999753, 32.53534], [-117.295937691273863, 33.04622461520389], [-117.944, 33.621236431201389], [-118.410602275897475, 33.740909223124497], [-118.519894822799685, 34.027781577575745], [-119.081, 34.078], [-119.438840642016658, 34.348477178284291], [-120.36778, 34.44711], [-120.62286, 34.60855], [-120.74433, 35.156860000000101], [-121.714569999999853, 36.16153], [-122.54747, 37.551760000000101], [-122.51201, 37.783390000000132], [-122.95319, 38.113710000000104], [-123.7272, 38.951660000000111], [-123.865169999999878, 39.766990000000128], [-124.39807, 40.3132], [-124.17886, 41.142020000000109], [-124.2137, 41.999640000000134], [-124.532839999999894, 42.76599], [-124.14214, 43.70838], [-124.020535, 44.615895], [-123.898929999999893, 45.52341], [-124.079635, 46.86475], [-124.395669999999896, 47.72017], [-124.687210083007812, 48.184432983398537], [-124.566101074218736, 48.379714965820384], [-123.12, 48.04], [-122.587359999999876, 47.096], [-122.34, 47.36], [-122.5, 48.18], [-122.84, 49.0], [-120.0, 49.0], [-117.03121, 49.0], [-116.04818, 49.0], [-112.999999999999872, 49.0], [-110.049999999999812, 49.0], [-107.049999999999898, 49.0], [-104.04826, 48.99986], [-100.65, 49.0], [-97.228720000004699, 49.0007], [-95.159069509171943, 49.0], [-95.15609, 49.38425], [-94.81758, 49.38905]]], [[[-153.006314053336837, 57.115842190165878], [-154.0050902984581, 56.734676825581047], [-154.516402757770067, 56.992748928446687], [-154.670992804971092, 57.461195787172493], [-153.762779507441451, 57.816574612043773], [-153.228729417921073, 57.968968410872421], [-152.564790615835108, 57.901427313866961], [-152.141147223906273, 57.591058661521977], [-153.006314053336837, 57.115842190165878]]], [[[-165.579164191733554, 59.909986884187539], [-166.192770148767238, 59.754440822988961], [-166.848337368821944, 59.941406155020942], [-167.455277066090048, 60.213069159579376], [-166.467792121424566, 60.384169826897775], [-165.674429694663644, 60.293606879306232], [-165.579164191733554, 59.909986884187539]]], [[[-171.731656867539357, 63.782515367275906], [-171.114433560245175, 63.592191067144981], [-170.491112433940657, 63.694975490973505], [-169.682505459653555, 63.431115627691142], [-168.689439460300662, 63.297506212000584], [-168.77194088445458, 63.188598130945437], [-169.529439867204985, 62.976931464277882], [-170.290556200215917, 63.194437567794452], [-170.671385667990847, 63.375821845138965], [-171.553063117538642, 63.317789211675077], [-171.791110602891166, 63.40584585230048], [-171.731656867539357, 63.782515367275906]]], [[[-155.067790290324211, 71.147776394323685], [-154.344165208941206, 70.696408596470192], [-153.900006273392563, 70.889988511835682], [-152.210006069935275, 70.829992173944831], [-152.270002407826127, 70.60000621202984], [-150.739992438744508, 70.430016588005699], [-149.720003018167489, 70.530010484490433], [-147.613361579357047, 70.214034939241785], [-145.689989800225248, 70.120009670686741], [-144.920010959076393, 69.989991767040479], [-143.58944618042517, 70.152514146598307], [-142.072510348713365, 69.851938178172631], [-140.985987521560702, 69.711998399526365], [-140.985988329004869, 69.711998399526365], [-140.992498752029377, 66.000028591568665], [-140.997769748123119, 60.306396796298593], [-140.012997816153074, 60.276837877027575], [-139.03900042031583, 60.000007229240012], [-138.340889999999888, 59.562110000000146], [-137.4525, 58.905000000000101], [-136.47972, 59.46389], [-135.47583, 59.78778], [-134.945, 59.270560000000117], [-134.27111, 58.86111], [-133.355548882207188, 58.410285142645151], [-132.73042, 57.692890000000105], [-131.707809999999853, 56.55212], [-130.00778, 55.91583], [-129.979994263358265, 55.284997870497207], [-130.536110189467223, 54.802753404349389], [-131.08581823797212, 55.178906155002025], [-131.967211467142278, 55.497775580459049], [-132.250010742859445, 56.369996242897443], [-133.539181084356386, 57.178887437562125], [-134.07806292029602, 58.123067531966889], [-135.038211032279037, 58.187714748763931], [-136.628062309954629, 58.212209377670447], [-137.800006279686016, 58.499995429103777], [-139.867787041412981, 59.537761542389134], [-140.825273817133024, 59.72751740176507], [-142.574443535564427, 60.084446519604981], [-143.958880994879848, 59.99918040632339], [-145.925556816827822, 60.458609727614274], [-147.114373949146625, 60.884656073644628], [-148.224306200127643, 60.672989406977152], [-148.018065558850736, 59.978328965893631], [-148.570822516860858, 59.914172675203297], [-149.727857835875824, 59.705658270905545], [-150.608243374616421, 59.368211168039487], [-151.716392788683294, 59.155821031319974], [-151.859433153267105, 59.74498403587959], [-151.40971900124714, 60.725802720779392], [-150.346941494732505, 61.033587551509854], [-150.621110806256951, 61.284424953854447], [-151.895839199816834, 60.727197984451273], [-152.578329841095581, 60.061657212964285], [-154.019172126257558, 59.350279446034264], [-153.287511359653166, 58.864727688219787], [-154.232492438758442, 58.146373602930531], [-155.307491421510207, 57.727794501366319], [-156.308334723923082, 57.422774359763636], [-156.556097378546298, 56.979984849670636], [-158.117216559867728, 56.463608099994175], [-158.433321296197136, 55.994153550838533], [-159.603327399717415, 55.566686102920116], [-160.289719611634183, 55.643580634170561], [-161.223047655257773, 55.364734605523481], [-162.23776607974105, 55.024186916720097], [-163.069446581046378, 54.689737046927171], [-164.785569221027174, 54.40417308208216], [-164.942226325520011, 54.572224839895327], [-163.84833960676562, 55.039431464246107], [-162.870001390615897, 55.348043117893198], [-161.804174974596009, 55.894986477270429], [-160.563604702781134, 56.008054511125025], [-160.070559862284483, 56.418055324928744], [-158.684442918919416, 57.016675116597852], [-158.461097378553944, 57.216921291728866], [-157.722770352183858, 57.570000515363056], [-157.550274421193564, 58.328326321030218], [-157.041674974576949, 58.918884589261708], [-158.194731208305427, 58.615802313869828], [-158.517217984023034, 58.787781480537305], [-159.058606126928709, 58.424186102931671], [-159.711667040017318, 58.931390285876333], [-159.981288825500144, 58.572549140041623], [-160.355271165996498, 59.071123358793628], [-161.355003425115001, 58.670837714260742], [-161.968893602526293, 58.671664537177371], [-162.054986538724648, 59.266925360747436], [-161.874170702135331, 59.633621324290587], [-162.518059048492034, 59.989723619213905], [-163.818341437820123, 59.798055731843377], [-164.662217577146407, 60.267484442782639], [-165.346387702474772, 60.507495632562396], [-165.350831875651835, 61.073895168697497], [-166.121379157555907, 61.500019029376212], [-165.734451870770471, 62.074996853271792], [-164.919178636717788, 62.633076483807919], [-164.562507901039339, 63.146378485763044], [-163.753332485996964, 63.219448961023758], [-163.067224494457832, 63.05945872664801], [-162.260555386381697, 63.541935736741159], [-161.534449836248569, 63.455816962326757], [-160.772506680321101, 63.76610810002326], [-160.958335130842528, 64.222798570402759], [-161.518068407212184, 64.402787584075313], [-160.777777676414729, 64.788603827566405], [-161.391926235987597, 64.777235012462327], [-162.453050096668818, 64.559444688568206], [-162.757786017894034, 64.338605455168803], [-163.54639421288428, 64.559160468190484], [-164.960829841145141, 64.446945095468848], [-166.425288255864473, 64.686672064870706], [-166.845004238939026, 65.088895575614529], [-168.110560065767146, 65.669997056736733], [-166.70527116602193, 66.088317776139391], [-164.474709642575448, 66.576660061297488], [-163.652511766595637, 66.576660061297488], [-163.788601651036117, 66.077207343196662], [-161.677774421210131, 66.116119696712403], [-162.489714525379981, 66.735565090595102], [-163.719716966791083, 67.116394558370089], [-164.430991380856511, 67.616338202577779], [-165.390286831706703, 68.042772121850234], [-166.764440680995989, 68.35887685817967], [-166.204707404626561, 68.883030910916162], [-164.430810513343431, 68.915535386827727], [-163.168613654614489, 69.371114813912882], [-162.930566169261965, 69.858061835399255], [-161.908897264635499, 70.333329983187625], [-160.93479651593367, 70.447689927849567], [-159.039175788387126, 70.891642157668926], [-158.119722866833939, 70.824721177851032], [-156.580824551398024, 71.357763576941736], [-155.067790290324211, 71.147776394323685]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Uzbekistan\", \"name\": \"Uzbekistan\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[66.518606805288655, 37.362784328758785], [66.546150343700205, 37.974684963526855], [65.215998976507379, 38.402695013984292], [64.170223016216752, 38.892406724598231], [63.518014764261018, 39.363256537425627], [62.374260288344992, 40.053886216790382], [61.882714064384679, 41.084856879229392], [61.547178989513547, 41.2663703476546], [60.46595299667068, 41.22032664648254], [60.083340691981654, 41.425146185871391], [59.976422153569771, 42.223081976890199], [58.629010857991453, 42.751551011723045], [57.786529982337065, 42.170552883465511], [56.93221520368779, 41.82602610937559], [57.096391229079089, 41.32231008561056], [55.968191359282898, 41.308641669269356], [55.928917270741081, 44.995858466159099], [58.503127068928457, 45.586804307632818], [58.689989048095882, 45.500013739598621], [60.239971958258316, 44.784036770194717], [61.05831994003244, 44.405816962250505], [62.013300408786236, 43.504476630215642], [63.185786981056559, 43.650074978197999], [64.900824415959264, 43.728080552742576], [66.098012322865074, 42.997660020513088], [66.023391554635609, 41.994646307943974], [66.510648634715707, 41.987644151368436], [66.714047072216502, 41.168443508461493], [67.985855747351806, 41.135990708982213], [68.259895867795606, 40.662324530594894], [68.632482944620008, 40.668680731766798], [69.070027296835306, 41.384244289712363], [70.388964878220776, 42.081307684897439], [70.96231489449913, 42.266154283205481], [71.259247674448218, 42.167710679689456], [70.420022414028196, 41.519998277343134], [71.157858514291576, 41.143587144529107], [71.870114780570447, 41.392900092121259], [73.055417108049156, 40.86603302668945], [71.774875115856545, 40.145844428053763], [71.014198032520156, 40.244365546218226], [70.601406691372674, 40.218527330072284], [70.458159621059608, 40.49649485937028], [70.666622348925031, 40.960213324541407], [69.329494663372813, 40.727824408524839], [69.011632928345477, 40.086158148756653], [68.536416456989414, 39.533452867178923], [67.701428664017342, 39.580478420564518], [67.442219679641298, 39.140143541005479], [68.176025018185911, 38.901553453113898], [68.392032505165943, 38.157025254868728], [67.829999627559502, 37.144994004864678], [67.075782098259609, 37.35614390720928], [66.518606805288655, 37.362784328758785]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Venezuela\", \"name\": \"Venezuela\", \"continent\": \"South America\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[-71.331583624950284, 11.776284084515805], [-71.36000566271079, 11.53999359786121], [-71.947049933546495, 11.423282375530018], [-71.620868292920164, 10.969459947142791], [-71.633063930941063, 10.446494452349027], [-72.074173956984495, 9.865651353388369], [-71.695644090446521, 9.072263088411246], [-71.26455929226772, 9.137194525585981], [-71.039999355743376, 9.859992784052407], [-71.350083787710773, 10.211935126176213], [-71.400623338492224, 10.968969021036013], [-70.155298834906503, 11.375481675660039], [-70.293843349881016, 11.846822414594211], [-69.943244594996813, 12.162307033736095], [-69.584300096297454, 11.459610907431211], [-68.882999233664435, 11.44338450769156], [-68.233271450458716, 10.885744126829945], [-68.194126552997616, 10.554653225135921], [-67.296248541926317, 10.545868231646306], [-66.227864142507983, 10.648626817258684], [-65.655237596281737, 10.20079885501732], [-64.890452236578156, 10.077214667191296], [-64.329478725833724, 10.389598700395679], [-64.318006557864933, 10.641417954953978], [-63.079322475828725, 10.701724351438598], [-61.880946010980182, 10.7156253117251], [-62.730118984616396, 10.420268662960904], [-62.388511928950969, 9.948204453974636], [-61.588767462801918, 9.873066921422263], [-60.830596686431711, 9.38133982994894], [-60.671252407459718, 8.580174261911877], [-60.150095587796166, 8.602756862823425], [-59.758284878159181, 8.367034816924045], [-60.550587938058186, 7.779602972846178], [-60.637972785063752, 7.414999904810853], [-60.295668097562377, 7.043911444522918], [-60.543999192940966, 6.856584377464881], [-61.159336310456467, 6.696077378766317], [-61.139415045807937, 6.234296779806142], [-61.410302903881941, 5.959068101419616], [-60.733574184803707, 5.2002772078619], [-60.601179165271922, 4.918098049332129], [-60.966893276601517, 4.536467596856638], [-62.085429653559125, 4.162123521334308], [-62.804533047116692, 4.006965033377951], [-63.093197597899092, 3.770571193858784], [-63.888342861574145, 4.020530096854571], [-64.628659430587533, 4.14848094320925], [-64.816064012294007, 4.056445217297422], [-64.368494432214092, 3.797210394705246], [-64.408827887617903, 3.126786200366623], [-64.269999152265783, 2.497005520025566], [-63.422867397705105, 2.411067613124174], [-63.368788011311644, 2.200899562993129], [-64.083085496666072, 1.91636912679408], [-64.199305792890499, 1.49285492594602], [-64.611011928959854, 1.328730576987041], [-65.354713304288353, 1.0952822941085], [-65.548267381437554, 0.78925446207603], [-66.325765143484944, 0.724452215982012], [-66.876325853122566, 1.253360500489336], [-67.181294318293041, 2.250638129074062], [-67.447092047786299, 2.600280869960869], [-67.809938117123693, 2.820655015469569], [-67.303173183853417, 3.31845408773718], [-67.33756384954367, 3.542342230641721], [-67.621835903581271, 3.839481716319994], [-67.823012254493534, 4.503937282728898], [-67.744696621355203, 5.221128648291667], [-67.521531948502741, 5.556870428891968], [-67.34143958196556, 6.095468044454021], [-67.695087246355001, 6.267318020040645], [-68.265052456318216, 6.153268133972473], [-68.985318569602327, 6.206804917826856], [-69.389479946557103, 6.099860541198835], [-70.093312954372408, 6.960376491723109], [-70.674233567981503, 7.087784735538717], [-71.960175747348629, 6.991614895043538], [-72.19835242378187, 7.340430813013682], [-72.444487270788059, 7.42378489830048], [-72.479678921178831, 7.632506008327352], [-72.360900641555958, 8.002638454617893], [-72.439862230097944, 8.405275376820027], [-72.660494757768092, 8.62528778730268], [-72.788729824500379, 9.085027167187331], [-73.304951544880026, 9.151999823437604], [-73.027604132769554, 9.736770331252441], [-72.905286017534692, 10.45034434655477], [-72.614657762325194, 10.821975409381777], [-72.227575446242923, 11.108702093953237], [-71.973921678338272, 11.608671576377116], [-71.331583624950284, 11.776284084515805]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Vietnam\", \"name\": \"Vietnam\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[108.050180291782908, 21.552379869060111], [106.715067987090066, 20.696850694252014], [105.881682163519002, 19.752050482659694], [105.662005649846279, 19.058165188060567], [106.426816847765991, 18.004120998603224], [107.36195356651973, 16.697456569887049], [108.269495070429599, 16.079742336486145], [108.877106561317447, 15.276690578670436], [109.335269810017209, 13.42602834721772], [109.200135939573954, 11.666859239137761], [108.366129998815424, 11.00832062422627], [107.22092858279521, 10.36448395430183], [106.4051127462034, 9.530839748569317], [105.158263787865081, 8.599759629750492], [104.795185174582372, 9.2410383162765], [105.076201613385592, 9.918490505406806], [104.334334751403446, 10.486543687375228], [105.199914992292321, 10.889309800658094], [106.249670037869436, 10.961811835163585], [105.810523716253101, 11.567614650921225], [107.491403029410861, 12.337205918827944], [107.614547967562402, 13.535530707244202], [107.382727492301058, 14.202440904186968], [107.564525181103875, 15.202173163305554], [107.312705926545576, 15.908538316303177], [106.55600792849566, 16.604283962464802], [105.925762160264, 17.485315456608955], [105.094598423281496, 18.666974595611073], [103.896532017026701, 19.265180975821799], [104.183387892678908, 19.624668077060214], [104.822573683697073, 19.886641750563879], [104.435000441508024, 20.758733221921528], [103.203861118586431, 20.766562201413745], [102.754896274834636, 21.675137233969462], [102.170435825613552, 22.464753119389297], [102.706992222100084, 22.708795070887668], [103.504514601660546, 22.703756618739202], [104.476858351664447, 22.819150092046961], [105.329209425886603, 23.352063300056908], [105.811247186305209, 22.976892401617899], [106.725403273548451, 22.794267889898414], [106.567273390735295, 22.218204860924768], [107.043420037872608, 21.811898912029907], [108.050180291782908, 21.552379869060111]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Vanuatu\", \"name\": \"Vanuatu\", \"continent\": \"Australia\" }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [[[[167.844876743845077, -16.466333103097153], [167.515181105822847, -16.597849623279966], [167.180007765977791, -16.159995212470957], [167.2168013857696, -15.891846205308449], [167.844876743845077, -16.466333103097153]]], [[[167.107712437201485, -14.933920179913951], [167.2700281110302, -15.74002084723487], [167.001207310247935, -15.614602146062492], [166.79315799384085, -15.668810723536719], [166.649859247095549, -15.392703545801192], [166.629136997746429, -14.6264970842096], [167.107712437201485, -14.933920179913951]]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Yemen\", \"name\": \"Yemen\", \"continent\": \"Asia\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[53.108572625547502, 16.651051133688949], [52.385205926325874, 16.38241120041965], [52.191729363825075, 15.938433132384018], [52.168164910699986, 15.597420355689945], [51.172515089732471, 15.175249742081489], [49.574576450403136, 14.708766587782746], [48.679230584514151, 14.003202419485657], [48.238947381387412, 13.948089504446369], [47.938914015500771, 14.007233181204423], [47.354453566279702, 13.592219753468379], [46.71707645039173, 13.399699204965016], [45.877592807810252, 13.347764390511681], [45.625050083199874, 13.290946153206759], [45.406458774605241, 13.02690542241143], [45.144355910020849, 12.953938300015306], [44.9895333188744, 12.699586900274708], [44.494576450382844, 12.721652736863344], [44.175112745954486, 12.585950425664873], [43.48295861183712, 12.63680003504008], [43.222871128112118, 13.220950425667422], [43.251448195169516, 13.767583726450848], [43.087943963398047, 14.062630316621306], [42.892245314308717, 14.802249253798745], [42.604872674333606, 15.213335272680592], [42.805015496600042, 15.261962795467252], [42.702437778500652, 15.718885809791995], [42.823670688657408, 15.911742255105263], [42.779332309750963, 16.34789134364868], [43.218375278502734, 16.666889960186406], [43.115797560403351, 17.088440456607369], [43.380794305196098, 17.579986680567668], [43.791518589051904, 17.319976711491105], [44.062613152855072, 17.410358791569589], [45.216651238797184, 17.43332896572333], [45.399999220568752, 17.333335069238554], [46.366658563020529, 17.233315334537632], [46.749994337761642, 17.283338120996174], [47.000004917189749, 16.949999294497438], [47.466694777217626, 17.116681626854877], [48.183343540241324, 18.166669216377311], [49.116671583864857, 18.616667588774941], [52.000009800022227, 19.000003363516054], [52.782184279192037, 17.349742336491229], [53.108572625547502, 16.651051133688949]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"South Africa\", \"name\": \"South Africa\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[31.521001417778869, -29.257386976846245], [31.325561150850994, -29.401977634398907], [30.901762729625336, -29.909956963828034], [30.622813348113816, -30.423775730106122], [30.055716180142774, -31.140269463832951], [28.925552605919535, -32.172041110972494], [28.219755893677092, -32.771952813448848], [27.464608188595967, -33.226963799778794], [26.419452345492818, -33.614950453426175], [25.909664340933482, -33.667040297176392], [25.78062828950069, -33.944646091448334], [25.172861769315965, -33.796851495093577], [24.67785322439212, -33.987175795224537], [23.594043409934635, -33.794474379208147], [22.988188917744729, -33.916430759416976], [22.574157342222232, -33.864082533505304], [21.542799106541022, -34.258838799782922], [20.689052768646999, -34.417175388325226], [20.071261020597628, -34.795136814107984], [19.616405063564567, -34.819166355123706], [19.193278435958714, -34.462598972309777], [18.855314568769867, -34.444305515278458], [18.424643182049376, -33.997872816708963], [18.377410922934612, -34.13652068454806], [18.244499139079917, -33.867751560198023], [18.250080193767442, -33.281430759414434], [17.925190463948436, -32.61129078545342], [18.247909783611185, -32.429131361624563], [18.221761508871477, -31.661632989225662], [17.566917758868861, -30.72572112398754], [17.0644161312627, -29.878641045859158], [17.06291751472622, -29.875953871379977], [16.344976840895239, -28.576705010697697], [16.824017368240899, -28.082161553664466], [17.218928663815401, -28.355943291946804], [17.387497185951499, -28.783514092729774], [17.836151971109526, -28.856377862261311], [18.464899122804745, -29.045461928017271], [19.002127312911082, -28.972443129188857], [19.89473432788861, -28.461104831660769], [19.895767856534427, -24.767790215760588], [20.165725538827186, -24.917961928000768], [20.758609246511831, -25.868136488551446], [20.666470167735437, -26.477453301704916], [20.889609002371731, -26.828542982695907], [21.60589603036939, -26.726533705351748], [22.105968865657864, -26.28025603607913], [22.579531691180584, -25.979447523708142], [22.824271274514896, -25.500458672794768], [23.312096795350179, -25.268689873965712], [23.733569777122703, -25.39012948985161], [24.211266717228792, -25.670215752873567], [25.025170525825782, -25.719670098576891], [25.664666375437712, -25.486816094669706], [25.765848829865206, -25.174845472923671], [25.941652052522151, -24.696373386333214], [26.485753208123292, -24.616326592713097], [26.78640669119741, -24.240690606383478], [27.119409620886238, -23.574323011979772], [28.017235955525244, -22.827753594659072], [29.432188348109033, -22.091312758067584], [29.839036899542965, -22.102216485281172], [30.322883335091767, -22.271611830333931], [30.659865350067083, -22.151567478119912], [31.191409132621278, -22.251509698172395], [31.670397983534645, -23.658969008073861], [31.930588820124242, -24.369416599222532], [31.752408481581874, -25.484283949487406], [31.837777947728057, -25.843331801051342], [31.333157586397899, -25.660190525008943], [31.044079624157146, -25.731452325139436], [30.949666782359905, -26.022649021104144], [30.676608514129633, -26.398078301704604], [30.685961948374477, -26.743845310169526], [31.282773064913325, -27.285879408478991], [31.868060337051073, -27.17792734142127], [32.071665480281062, -26.733820082304902], [32.830120477028878, -26.74219166433619], [32.580264926897677, -27.470157566031808], [32.462132602678444, -28.30101124442055], [32.203388706193032, -28.752404880490065], [31.521001417778869, -29.257386976846245]], [[28.978262566857236, -28.955596612261708], [28.541700066855491, -28.647501722937562], [28.07433841320778, -28.851468601193581], [27.532511020627471, -29.242710870075353], [26.999261915807629, -29.875953871379977], [27.749397006956478, -30.645105889612214], [28.107204624145421, -30.545732110314944], [28.291069370239903, -30.226216729454293], [28.848399692507734, -30.070050551068245], [29.018415154748016, -29.743765557577362], [29.325166456832587, -29.257386976846245], [28.978262566857236, -28.955596612261708]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Zambia\", \"name\": \"Zambia\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[32.759375441221316, -9.230599053589058], [33.231387973775291, -9.676721693564799], [33.485687697083584, -10.525558770391111], [33.315310499817279, -10.796549981329695], [33.114289178201908, -11.607198174692311], [33.306422153463068, -12.435778090060214], [32.991764357237876, -12.783870537978272], [32.688165317523122, -13.712857761289273], [33.214024692525207, -13.97186003993615], [30.179481235481827, -14.796099134991525], [30.274255812305103, -15.507786960515208], [29.51683434420314, -15.644677829656386], [28.947463413211256, -16.043051446194436], [28.825868768028492, -16.389748630440611], [28.467906121542676, -16.468400160388843], [27.598243442502753, -17.290830580314005], [27.044427117630729, -17.938026218337427], [26.706773309035633, -17.961228936436477], [26.381935255648919, -17.846042168857892], [25.264225701608005, -17.736539808831413], [25.084443393664564, -17.661815687737366], [25.076950310982255, -17.578823337476617], [24.6823490740015, -17.35341073981947], [24.033861525170771, -17.29584319424632], [23.215048455506057, -17.52311614346598], [22.562478468524255, -16.89845142992181], [21.887842644953867, -16.080310153876876], [21.933886346125913, -12.898437188369357], [24.016136508894672, -12.91104623784857], [23.930922072045373, -12.565847670138854], [24.079905226342838, -12.191296888887361], [23.904153680118181, -11.722281589406318], [24.017893507592586, -11.237298272347088], [23.912215203555714, -10.926826267137512], [24.257155389103982, -10.951992689663655], [24.314516228947948, -11.262826429899269], [24.783169793402948, -11.238693536018962], [25.418118116973197, -11.330935967659958], [25.752309604604726, -11.784965101776356], [26.55308759939961, -11.924439792532125], [27.164419793412456, -11.608748467661071], [27.38879886242378, -12.132747491100663], [28.15510867687998, -12.272480564017894], [28.52356163912102, -12.698604424696679], [28.934285922976834, -13.248958428605132], [29.699613885219485, -13.257226657771827], [29.616001417771223, -12.178894545137307], [29.341547885869087, -12.36074391037241], [28.642417433392346, -11.971568698782312], [28.372253045370421, -11.793646742401389], [28.496069777141763, -10.789883721564044], [28.673681674928922, -9.605924981324931], [28.449871046672818, -9.164918308146083], [28.734866570762495, -8.526559340044576], [29.002912225060467, -8.40703175215347], [30.34608605319081, -8.238256524288216], [30.740015496551781, -8.340007419470913], [31.157751336950042, -8.594578747317362], [31.55634809746649, -8.76204884199864], [32.191864861791963, -8.930358981973276], [32.759375441221316, -9.230599053589058]]] } },\n            { \"type\": \"Feature\", \"properties\": { \"admin\": \"Zimbabwe\", \"name\": \"Zimbabwe\", \"continent\": \"Africa\" }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [[[31.191409132621278, -22.251509698172395], [30.659865350067083, -22.151567478119912], [30.322883335091767, -22.271611830333931], [29.839036899542965, -22.102216485281172], [29.432188348109033, -22.091312758067584], [28.794656202924209, -21.639454034107445], [28.02137007010861, -21.485975030200578], [27.727227817503252, -20.851801853114711], [27.724747348753247, -20.499058526290387], [27.296504754350501, -20.391519870690995], [26.164790887158478, -19.293085625894935], [25.850391473094724, -18.714412937090533], [25.649163445750155, -18.536025892818987], [25.264225701608005, -17.736539808831413], [26.381935255648919, -17.846042168857892], [26.706773309035633, -17.961228936436477], [27.044427117630729, -17.938026218337427], [27.598243442502753, -17.290830580314005], [28.467906121542676, -16.468400160388843], [28.825868768028492, -16.389748630440611], [28.947463413211256, -16.043051446194436], [29.51683434420314, -15.644677829656386], [30.274255812305103, -15.507786960515208], [30.338954705534537, -15.880839125230242], [31.173063999157673, -15.860943698797868], [31.636498243951188, -16.071990248277881], [31.852040643040592, -16.319417006091374], [32.328238966610222, -16.392074069893749], [32.847638787575839, -16.713398125884613], [32.849860874164385, -17.979057305577175], [32.654885695127142, -18.672089939043492], [32.611994256324884, -19.419382826416268], [32.772707960752619, -19.715592136313294], [32.659743279762573, -20.30429005298231], [32.508693068173436, -20.395292250248303], [32.244988234188007, -21.116488539313689], [31.191409132621278, -22.251509698172395]]] } }\n        ]\n    }\n"
  },
  {
    "path": "src/Presentations/Windows/Resources/Styles/Colors.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<?xaml-comp compile=\"true\" ?>\n<ResourceDictionary xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\" xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\">\n\n    <Color x:Key=\"Primary\">#512BD4</Color>\n    <Color x:Key=\"Secondary\">#DFD8F7</Color>\n    <Color x:Key=\"Tertiary\">#2B0B98</Color>\n    <Color x:Key=\"White\">White</Color>\n    <Color x:Key=\"Black\">Black</Color>\n    <Color x:Key=\"Gray100\">#E1E1E1</Color>\n    <Color x:Key=\"Gray200\">#C8C8C8</Color>\n    <Color x:Key=\"Gray300\">#ACACAC</Color>\n    <Color x:Key=\"Gray400\">#919191</Color>\n    <Color x:Key=\"Gray500\">#6E6E6E</Color>\n    <Color x:Key=\"Gray600\">#404040</Color>\n    <Color x:Key=\"Gray900\">#212121</Color>\n    <Color x:Key=\"Gray950\">#141414</Color>\n    <SolidColorBrush x:Key=\"PrimaryBrush\" Color=\"{StaticResource Primary}\" />\n    <SolidColorBrush x:Key=\"SecondaryBrush\" Color=\"{StaticResource Secondary}\" />\n    <SolidColorBrush x:Key=\"TertiaryBrush\" Color=\"{StaticResource Tertiary}\" />\n    <SolidColorBrush x:Key=\"WhiteBrush\" Color=\"{StaticResource White}\" />\n    <SolidColorBrush x:Key=\"BlackBrush\" Color=\"{StaticResource Black}\" />\n    <SolidColorBrush x:Key=\"Gray100Brush\" Color=\"{StaticResource Gray100}\" />\n    <SolidColorBrush x:Key=\"Gray200Brush\" Color=\"{StaticResource Gray200}\" />\n    <SolidColorBrush x:Key=\"Gray300Brush\" Color=\"{StaticResource Gray300}\" />\n    <SolidColorBrush x:Key=\"Gray400Brush\" Color=\"{StaticResource Gray400}\" />\n    <SolidColorBrush x:Key=\"Gray500Brush\" Color=\"{StaticResource Gray500}\" />\n    <SolidColorBrush x:Key=\"Gray600Brush\" Color=\"{StaticResource Gray600}\" />\n    <SolidColorBrush x:Key=\"Gray900Brush\" Color=\"{StaticResource Gray900}\" />\n    <SolidColorBrush x:Key=\"Gray950Brush\" Color=\"{StaticResource Gray950}\" />\n\n    <Color x:Key=\"Yellow100Accent\">#F7B548</Color>\n    <Color x:Key=\"Yellow200Accent\">#FFD590</Color>\n    <Color x:Key=\"Yellow300Accent\">#FFE5B9</Color>\n    <Color x:Key=\"Cyan100Accent\">#28C2D1</Color>\n    <Color x:Key=\"Cyan200Accent\">#7BDDEF</Color>\n    <Color x:Key=\"Cyan300Accent\">#C3F2F4</Color>\n    <Color x:Key=\"Blue100Accent\">#3E8EED</Color>\n    <Color x:Key=\"Blue200Accent\">#72ACF1</Color>\n    <Color x:Key=\"Blue300Accent\">#A7CBF6</Color>\n\n</ResourceDictionary>"
  },
  {
    "path": "src/Presentations/Windows/Resources/Styles/Styles.xaml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<?xaml-comp compile=\"true\" ?>\n<ResourceDictionary xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\" xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\">\n\n    <Style TargetType=\"ActivityIndicator\">\n        <Setter Property=\"Color\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}\" />\n    </Style>\n\n    <Style TargetType=\"IndicatorView\">\n        <Setter Property=\"IndicatorColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}\" />\n        <Setter Property=\"SelectedIndicatorColor\" Value=\"{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray100}}\" />\n    </Style>\n\n    <Style TargetType=\"Border\">\n        <Setter Property=\"Stroke\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}\" />\n        <Setter Property=\"StrokeShape\" Value=\"Rectangle\" />\n        <Setter Property=\"StrokeThickness\" Value=\"1\" />\n    </Style>\n\n    <Style TargetType=\"BoxView\">\n        <Setter Property=\"Color\" Value=\"{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}\" />\n    </Style>\n\n    <Style TargetType=\"Button\">\n        <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Primary}}\" />\n        <Setter Property=\"BackgroundColor\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}\" />\n        <Setter Property=\"FontFamily\" Value=\"OpenSansRegular\" />\n        <Setter Property=\"FontSize\" Value=\"14\" />\n        <Setter Property=\"CornerRadius\" Value=\"8\" />\n        <Setter Property=\"Padding\" Value=\"14,10\" />\n        <Setter Property=\"MinimumHeightRequest\" Value=\"44\" />\n        <Setter Property=\"MinimumWidthRequest\" Value=\"44\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}\" />\n                            <Setter Property=\"BackgroundColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"CheckBox\">\n        <Setter Property=\"Color\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}\" />\n        <Setter Property=\"MinimumHeightRequest\" Value=\"44\" />\n        <Setter Property=\"MinimumWidthRequest\" Value=\"44\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"Color\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"DatePicker\">\n        <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}\" />\n        <Setter Property=\"BackgroundColor\" Value=\"Transparent\" />\n        <Setter Property=\"FontFamily\" Value=\"OpenSansRegular\" />\n        <Setter Property=\"FontSize\" Value=\"14\" />\n        <Setter Property=\"MinimumHeightRequest\" Value=\"44\" />\n        <Setter Property=\"MinimumWidthRequest\" Value=\"44\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"Editor\">\n        <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}\" />\n        <Setter Property=\"BackgroundColor\" Value=\"Transparent\" />\n        <Setter Property=\"FontFamily\" Value=\"OpenSansRegular\" />\n        <Setter Property=\"FontSize\" Value=\"14\" />\n        <Setter Property=\"PlaceholderColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}\" />\n        <Setter Property=\"MinimumHeightRequest\" Value=\"44\" />\n        <Setter Property=\"MinimumWidthRequest\" Value=\"44\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"Entry\">\n        <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}\" />\n        <Setter Property=\"BackgroundColor\" Value=\"Transparent\" />\n        <Setter Property=\"FontFamily\" Value=\"OpenSansRegular\" />\n        <Setter Property=\"FontSize\" Value=\"14\" />\n        <Setter Property=\"PlaceholderColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}\" />\n        <Setter Property=\"MinimumHeightRequest\" Value=\"44\" />\n        <Setter Property=\"MinimumWidthRequest\" Value=\"44\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"Frame\">\n        <Setter Property=\"HasShadow\" Value=\"False\" />\n        <Setter Property=\"BorderColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}\" />\n        <Setter Property=\"CornerRadius\" Value=\"8\" />\n    </Style>\n\n    <Style TargetType=\"ImageButton\">\n        <Setter Property=\"Opacity\" Value=\"1\" />\n        <Setter Property=\"BorderColor\" Value=\"Transparent\" />\n        <Setter Property=\"BorderWidth\" Value=\"0\" />\n        <Setter Property=\"CornerRadius\" Value=\"0\" />\n        <Setter Property=\"MinimumHeightRequest\" Value=\"44\" />\n        <Setter Property=\"MinimumWidthRequest\" Value=\"44\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"Opacity\" Value=\"0.5\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"Label\">\n        <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}\" />\n        <Setter Property=\"BackgroundColor\" Value=\"Transparent\" />\n        <Setter Property=\"FontFamily\" Value=\"OpenSansRegular\" />\n        <Setter Property=\"FontSize\" Value=\"14\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"ListView\">\n        <Setter Property=\"SeparatorColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}\" />\n        <Setter Property=\"RefreshControlColor\" Value=\"{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}\" />\n    </Style>\n\n    <Style TargetType=\"Picker\">\n        <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}\" />\n        <Setter Property=\"TitleColor\" Value=\"{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}\" />\n        <Setter Property=\"BackgroundColor\" Value=\"Transparent\" />\n        <Setter Property=\"FontFamily\" Value=\"OpenSansRegular\" />\n        <Setter Property=\"FontSize\" Value=\"14\" />\n        <Setter Property=\"MinimumHeightRequest\" Value=\"44\" />\n        <Setter Property=\"MinimumWidthRequest\" Value=\"44\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                            <Setter Property=\"TitleColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"ProgressBar\">\n        <Setter Property=\"ProgressColor\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"ProgressColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"RadioButton\">\n        <Setter Property=\"BackgroundColor\" Value=\"Transparent\" />\n        <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}\" />\n        <Setter Property=\"FontFamily\" Value=\"OpenSansRegular\" />\n        <Setter Property=\"FontSize\" Value=\"14\" />\n        <Setter Property=\"MinimumHeightRequest\" Value=\"44\" />\n        <Setter Property=\"MinimumWidthRequest\" Value=\"44\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"RefreshView\">\n        <Setter Property=\"RefreshColor\" Value=\"{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}\" />\n    </Style>\n\n    <Style TargetType=\"SearchBar\">\n        <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}\" />\n        <Setter Property=\"PlaceholderColor\" Value=\"{StaticResource Gray500}\" />\n        <Setter Property=\"CancelButtonColor\" Value=\"{StaticResource Gray500}\" />\n        <Setter Property=\"BackgroundColor\" Value=\"Transparent\" />\n        <Setter Property=\"FontFamily\" Value=\"OpenSansRegular\" />\n        <Setter Property=\"FontSize\" Value=\"14\" />\n        <Setter Property=\"MinimumHeightRequest\" Value=\"44\" />\n        <Setter Property=\"MinimumWidthRequest\" Value=\"44\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                            <Setter Property=\"PlaceholderColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"SearchHandler\">\n        <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}\" />\n        <Setter Property=\"PlaceholderColor\" Value=\"{StaticResource Gray500}\" />\n        <Setter Property=\"BackgroundColor\" Value=\"Transparent\" />\n        <Setter Property=\"FontFamily\" Value=\"OpenSansRegular\" />\n        <Setter Property=\"FontSize\" Value=\"14\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                            <Setter Property=\"PlaceholderColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"Shadow\">\n        <Setter Property=\"Radius\" Value=\"15\" />\n        <Setter Property=\"Opacity\" Value=\"0.5\" />\n        <Setter Property=\"Brush\" Value=\"{AppThemeBinding Light={StaticResource White}, Dark={StaticResource White}}\" />\n        <Setter Property=\"Offset\" Value=\"10,10\" />\n    </Style>\n\n    <Style TargetType=\"Slider\">\n        <Setter Property=\"MinimumTrackColor\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}\" />\n        <Setter Property=\"MaximumTrackColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray600}}\" />\n        <Setter Property=\"ThumbColor\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"MinimumTrackColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                            <Setter Property=\"MaximumTrackColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                            <Setter Property=\"ThumbColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"SwipeItem\">\n        <Setter Property=\"BackgroundColor\" Value=\"{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}\" />\n    </Style>\n\n    <Style TargetType=\"Switch\">\n        <Setter Property=\"OnColor\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}\" />\n        <Setter Property=\"ThumbColor\" Value=\"{StaticResource White}\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"OnColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                            <Setter Property=\"ThumbColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                    <VisualState x:Name=\"On\">\n                        <VisualState.Setters>\n                            <Setter Property=\"OnColor\" Value=\"{AppThemeBinding Light={StaticResource Secondary}, Dark={StaticResource Gray200}}\" />\n                            <Setter Property=\"ThumbColor\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                    <VisualState x:Name=\"Off\">\n                        <VisualState.Setters>\n                            <Setter Property=\"ThumbColor\" Value=\"{AppThemeBinding Light={StaticResource Gray400}, Dark={StaticResource Gray500}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style TargetType=\"TimePicker\">\n        <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}\" />\n        <Setter Property=\"BackgroundColor\" Value=\"Transparent\" />\n        <Setter Property=\"FontFamily\" Value=\"OpenSansRegular\" />\n        <Setter Property=\"FontSize\" Value=\"14\" />\n        <Setter Property=\"MinimumHeightRequest\" Value=\"44\" />\n        <Setter Property=\"MinimumWidthRequest\" Value=\"44\" />\n        <Setter Property=\"VisualStateManager.VisualStateGroups\">\n            <VisualStateGroupList>\n                <VisualStateGroup x:Name=\"CommonStates\">\n                    <VisualState x:Name=\"Normal\" />\n                    <VisualState x:Name=\"Disabled\">\n                        <VisualState.Setters>\n                            <Setter Property=\"TextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}\" />\n                        </VisualState.Setters>\n                    </VisualState>\n                </VisualStateGroup>\n            </VisualStateGroupList>\n        </Setter>\n    </Style>\n\n    <Style ApplyToDerivedTypes=\"True\" TargetType=\"Page\">\n        <Setter Property=\"Padding\" Value=\"0\" />\n        <Setter Property=\"BackgroundColor\" Value=\"{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}\" />\n    </Style>\n\n    <Style ApplyToDerivedTypes=\"True\" TargetType=\"Shell\">\n        <Setter Property=\"Shell.BackgroundColor\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource Gray950}}\" />\n        <Setter Property=\"Shell.ForegroundColor\" Value=\"{OnPlatform WinUI={StaticResource Primary}, Default={StaticResource White}}\" />\n        <Setter Property=\"Shell.TitleColor\" Value=\"{AppThemeBinding Light={StaticResource White}, Dark={StaticResource White}}\" />\n        <Setter Property=\"Shell.DisabledColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}\" />\n        <Setter Property=\"Shell.UnselectedColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray200}}\" />\n        <Setter Property=\"Shell.NavBarHasShadow\" Value=\"False\" />\n        <Setter Property=\"Shell.TabBarBackgroundColor\" Value=\"{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}\" />\n        <Setter Property=\"Shell.TabBarForegroundColor\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}\" />\n        <Setter Property=\"Shell.TabBarTitleColor\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}\" />\n        <Setter Property=\"Shell.TabBarUnselectedColor\" Value=\"{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}\" />\n    </Style>\n\n    <Style TargetType=\"NavigationPage\">\n        <Setter Property=\"BarBackgroundColor\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource Gray950}}\" />\n        <Setter Property=\"BarTextColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}\" />\n        <Setter Property=\"IconColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}\" />\n    </Style>\n\n    <Style TargetType=\"TabbedPage\">\n        <Setter Property=\"BarBackgroundColor\" Value=\"{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Gray950}}\" />\n        <Setter Property=\"BarTextColor\" Value=\"{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}\" />\n        <Setter Property=\"UnselectedTabColor\" Value=\"{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}\" />\n        <Setter Property=\"SelectedTabColor\" Value=\"{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}\" />\n    </Style>\n\n</ResourceDictionary>\n"
  },
  {
    "path": "src/Presentations/Windows/Web.config",
    "content": "﻿<?xml version=\"1.0\"?>\n<configuration>\n  <!--\n    For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.\n\n    The following attributes can be set on the <httpRuntime> tag.\n      <system.Web>\n        <httpRuntime targetFramework=\"4.8\" />\n      </system.Web>\n  -->\n  <system.web>\n    <compilation debug=\"false\" targetFramework=\"4.8\"/>\n    <pages controlRenderingCompatibilityVersion=\"4.0\"/>\n  </system.web>\n</configuration>"
  },
  {
    "path": "src/Presentations/Windows/Windows.sln",
    "content": "﻿\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio Version 17\nVisualStudioVersion = 17.0.31903.59\nMinimumVisualStudioVersion = 10.0.40219.1\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"MAUIsland\", \"MAUIsland.csproj\", \"{F8ECE424-9BAF-4084-974B-6AB4961A7895}\"\nEndProject\nGlobal\n\tGlobalSection(SolutionConfigurationPlatforms) = preSolution\n\t\tDebug|Any CPU = Debug|Any CPU\n\t\tRelease|Any CPU = Release|Any CPU\n\tEndGlobalSection\n\tGlobalSection(ProjectConfigurationPlatforms) = postSolution\n\t\t{F8ECE424-9BAF-4084-974B-6AB4961A7895}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{F8ECE424-9BAF-4084-974B-6AB4961A7895}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{F8ECE424-9BAF-4084-974B-6AB4961A7895}.Debug|Any CPU.Deploy.0 = Debug|Any CPU\n\t\t{F8ECE424-9BAF-4084-974B-6AB4961A7895}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{F8ECE424-9BAF-4084-974B-6AB4961A7895}.Release|Any CPU.Build.0 = Release|Any CPU\n\tEndGlobalSection\n\tGlobalSection(SolutionProperties) = preSolution\n\t\tHideSolutionNode = FALSE\n\tEndGlobalSection\n\tGlobalSection(ExtensibilityGlobals) = postSolution\n\t\tSolutionGuid = {F2894C7A-51A0-426D-85FD-67FB429AF4C9}\n\tEndGlobalSection\nEndGlobal\n"
  },
  {
    "path": "src/Presentations/Windows/wwwroot/css/app.css",
    "content": "﻿html, body {\n    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;\n}\n\na, .btn-link {\n    color: #006bb7;\n}\n\n.btn-primary {\n    color: #fff;\n    background-color: #1b6ec2;\n    border-color: #1861ac;\n}\n\n.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {\n    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;\n}\n\n.content {\n    padding-top: 1.1rem;\n}\n\nh1:focus {\n    outline: none;\n}\n\n.valid.modified:not([type=checkbox]) {\n    outline: 1px solid #26b050;\n}\n\n.invalid {\n    outline: 1px solid #e50000;\n}\n\n.validation-message {\n    color: #e50000;\n}\n\n#blazor-error-ui {\n    background: lightyellow;\n    bottom: 0;\n    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);\n    display: none;\n    left: 0;\n    padding: 0.6rem 1.25rem 0.7rem 1.25rem;\n    position: fixed;\n    width: 100%;\n    z-index: 1000;\n}\n\n    #blazor-error-ui .dismiss {\n        cursor: pointer;\n        position: absolute;\n        right: 0.75rem;\n        top: 0.5rem;\n    }\n\n.blazor-error-boundary {\n    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;\n    padding: 1rem 1rem 1rem 3.7rem;\n    color: white;\n}\n\n    .blazor-error-boundary::after {\n        content: \"An error has occurred.\"\n    }\n\n.status-bar-safe-area {\n    display: none;\n}\n\n@supports (-webkit-touch-callout: none) {\n    .status-bar-safe-area {\n        display: flex;\n        position: sticky;\n        top: 0;\n        height: env(safe-area-inset-top);\n        background-color: #f7f7f7;\n        width: 100%;\n        z-index: 1;\n    }\n\n    .flex-column, .navbar-brand {\n        padding-left: env(safe-area-inset-left);\n    }\n}\n"
  },
  {
    "path": "src/Presentations/Windows/wwwroot/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover\" />\n    <title>MAUIsland</title>\n    <base href=\"/\" />\n    <link rel=\"stylesheet\" href=\"css/bootstrap/bootstrap.min.css\" />\n    <link rel=\"stylesheet\" href=\"css/app.css\" />\n    <link rel=\"stylesheet\" href=\"MAUIsland.styles.css\" />\n    <link rel=\"icon\" type=\"image/png\" href=\"favicon.png\" />\n</head>\n\n<body>\n\n    <div class=\"status-bar-safe-area\"></div>\n\n    <div id=\"app\">Loading...</div>          \n\n    <div id=\"blazor-error-ui\">\n        An unhandled error has occurred.\n        <a href=\"\" class=\"reload\">Reload</a>\n        <a class=\"dismiss\">🗙</a>\n    </div>\n\n    <script src=\"_framework/blazor.webview.js\" autostart=\"false\"></script>\n\n</body>\n\n</html>"
  }
]